/* =========================================================
   Coni Garden – Corporate Website
   Design inspired by: facebook.com/tiemhoa.conigarden
   Palette: White · Cream · Blush · Sage · Burgundy
   ========================================================= */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand colours (from Coni Garden FB page) */
  --rose:          #a8362e;   /* deep burgundy-rose */
  --rose-dark:     #7a1f1a;
  --rose-mid:      #c8736b;
  --rose-light:    #e8c0bc;
  --blush:         #f2e0de;   /* hero bg tint */
  --cream:         #fdf8f5;   /* body bg */
  --cream-dark:    #f5ede7;
  --petal:         #ebc0c6;   /* accent pink */
  --sage:          #b8c9a8;   /* accent green */
  --sage-dark:     #7a9e6b;
  --maroon:        #4a1f1a;   /* headline text */
  --text:          #3a2420;
  --text-mid:      #6b5450;
  --text-muted:    #9a8480;
  --border:        #e8ddd7;
  --white:         #ffffff;

  /* Typography */
  --serif-en:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --serif-jp:  'Noto Serif JP', Georgia, serif;
  --sans:      'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(74,31,26,.08);
  --sh-md:  0 4px 20px rgba(74,31,26,.12);
  --sh-lg:  0 8px 40px rgba(74,31,26,.16);
  --sh-xl:  0 16px 60px rgba(74,31,26,.20);

  /* Transitions */
  --tr:     all .3s ease;
  --tr-s:   all .6s ease;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { color: var(--rose); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--rose-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif-jp);
  line-height: 1.3;
  color: var(--maroon);
}

/* ─── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: var(--sp-2xl) 0; }

.section-header { text-align: center; margin-bottom: var(--sp-xl); }

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--sp-xs);
  font-family: var(--sans);
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: var(--sp-sm);
}

.section-desc {
  font-size: .95rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: var(--sp-sm) auto 0;
  line-height: 1.9;
}

/* Decorative rule */
.section-deco {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--petal));
  margin: 0 auto;
  border-radius: var(--r-full);
}
.section-deco.light {
  background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.2));
}
.section-header.light .section-eyebrow { color: rgba(255,255,255,.8); }
.section-header.light .section-title   { color: var(--white); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-rose {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-color: var(--rose);
  box-shadow: 0 4px 16px rgba(122,31,26,.28);
}
.btn-rose:hover {
  background: linear-gradient(135deg, var(--rose-dark), #5c1410);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(122,31,26,.38);
}

.btn-ghost {
  background: transparent;
  color: var(--rose);
  border-color: var(--petal);
}
.btn-ghost:hover {
  background: var(--blush);
  border-color: var(--rose);
  color: var(--rose-dark);
  transform: translateY(-2px);
}

.btn-sm   { padding: .55rem 1.5rem; font-size: .85rem; }
.btn-compact { padding: .55rem 1.2rem; min-width: auto; max-width: fit-content; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .9rem 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,208,204,.4);
  box-shadow: 0 1px 12px rgba(74,31,26,.06);
  transition: var(--tr);
}

.navbar.scrolled {
  padding: .65rem 0;
  box-shadow: 0 2px 20px rgba(74,31,26,.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  padding: 4px 8px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.nav-logo:hover .nav-logo-wrap {
  transform: scale(1.04);
  opacity: 0.9;
}
.nav-logo-img {
  height: 70px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.logo-emblem  { font-size: 1.4rem; }
.logo-accent  { color: var(--rose); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-link {
  padding: .45rem .95rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--r-full);
  transition: var(--tr);
}
.nav-link:hover, .nav-link.active {
  color: var(--rose);
  background: var(--blush);
}

.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: .45rem 1.2rem;
}
.nav-cta:hover {
  background: var(--rose-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(122,31,26,.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--maroon);
  border-radius: var(--r-full);
  transition: var(--tr);
}

/* ─── HERO ───────────────────────────────────────────────── */
/* ── Hero (fullbg version) ──────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--fullbg {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}

/* Background image fills the whole header */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  animation: heroBgZoom 12s ease-out forwards;
}
@keyframes heroBgZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1);    }
}

/* ═══════════════════════════════════════════════════════
   HERO MESSAGE SECTION
   ═══════════════════════════════════════════════════════ */
.hero-message-section {
  padding: var(--sp-xl) 0;
  background: linear-gradient(180deg, 
    rgba(248,242,240,0.3) 0%, 
    rgba(248,242,240,0.6) 50%,
    rgba(248,242,240,0.8) 100%
  );
}

.hero-message-block {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-md) var(--sp-lg);
}

.hero-message-text {
  font-size: clamp(1.1rem, 2.3vw, 1.25rem);
  color: var(--text);
  line-height: 1.95;
  margin-bottom: var(--sp-lg);
  font-weight: 500;
}

.hero-message-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(90,53,69,.55);
  z-index: 5;
}
.scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--rose-light), transparent);
  animation: scrollBlink 2s infinite;
}
@keyframes scrollBlink {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1;  }
}

/* Fade-in animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .8s ease forwards;
}
.delay-1 { animation-delay: .18s; }
.delay-2 { animation-delay: .36s; }
.delay-3 { animation-delay: .54s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .hero--fullbg {
    justify-content: center;
    min-height: 92vh;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.75) 55%,
      rgba(255,255,255,0.92) 100%
    );
  }
  .hero-content--overlay {
    justify-content: center;
    padding: var(--sp-xl) var(--sp-md) var(--sp-xl);
  }
  .hero-text-block {
    text-align: center;
    max-width: 90%;
  }
  .hero-rule { margin: var(--sp-sm) auto; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-brand-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section { background: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about-lead {
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: var(--sp-lg);
}
.about-lead strong { color: var(--rose); }
.about-lead em     { color: var(--rose); font-style: normal; font-weight: 600; }

/* Company info table */
.company-table {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ct-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--sp-sm);
  align-items: start;
  padding: .65rem var(--sp-sm);
  background: var(--cream);
  border-radius: var(--r-md);
  border-left: 3px solid var(--rose-light);
  transition: var(--tr);
}
.ct-row:hover { border-left-color: var(--rose); box-shadow: var(--sh-sm); }

.ct-row dt {
  font-size: .8rem;
  font-weight: 700;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.ct-row dd {
  font-size: .9rem;
  color: var(--text);
}
.ct-row dd a { color: var(--text); }
.ct-row dd a:hover { color: var(--rose); }

/* Image side */
.about-visual { position: relative; }

/* 従来の単一画像フレーム */
.about-img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
}
.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-frame:hover img { transform: scale(1.03); }

.img-overlay-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(74,31,26,.7), transparent);
  color: var(--white);
  padding: var(--sp-md) var(--sp-sm);
  font-size: .82rem;
  text-align: center;
}

/* コラージュレイアウト（7枚の花写真） */
.about-img-collage {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.65rem;
  min-height: 600px;
}
.collage-featured {
  grid-column: span 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
  height: 220px;
}
.collage-featured--large {
  grid-column: span 3;
}
.collage-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-featured:hover img {
  transform: scale(1.04);
}
.collage-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.65rem;
}
.collage-grid--medium {
  height: 180px;
}
.collage-grid--small {
  height: 140px;
}
.collage-item {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: relative;
}
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-item:hover img {
  transform: scale(1.08);
}

.about-year-badge {
  position: absolute;
  top: -18px; right: -18px;
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  z-index: 2;
  color: var(--white);
}
.year-num  { font-size: 1.15rem; font-weight: 700; line-height: 1; }
.year-label { font-size: .65rem; opacity: .85; }

/* ─── VISION ─────────────────────────────────────────────── */
.vision-section {
  position: relative;
  background: linear-gradient(135deg, rgba(42,20,16,0.95) 0%, rgba(90,32,24,0.92) 55%, rgba(139,42,34,0.90) 100%);
  color: var(--white);
  overflow: hidden;
}

/* 背景画像 */
.vision-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  overflow: hidden;
}
.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.2);
}

/* 装飾花画像 */
.vision-deco-flower {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  pointer-events: none;
}
.vision-deco-flower.animate-in {
  opacity: 0.25;
  animation: floatFlower 8s ease-in-out infinite;
}
.vision-deco-flower--1 {
  top: 8%; right: 6%;
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}
.vision-deco-flower--2 {
  bottom: 12%; left: 4%;
  width: 160px;
  height: 160px;
  animation-delay: 2s;
}
.vision-deco-flower--3 {
  top: 50%; right: -40px;
  width: 140px;
  height: 140px;
  animation-delay: 4s;
}
.vision-deco-flower img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  filter: blur(0.5px);
}

@keyframes floatFlower {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-12px) rotate(3deg); }
  50%      { transform: translateY(-8px) rotate(-2deg); }
  75%      { transform: translateY(-14px) rotate(2deg); }
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,192,198,.24), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.vision-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,201,168,.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.vision-container { position: relative; z-index: 2; }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.vision-card {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}
.vision-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.vision-card:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.vc-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--rose), var(--rose-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  font-size: 1.5rem;
  color: var(--white);
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vision-card.animate-in .vc-icon {
  transform: scale(1);
}
.vc-title {
  font-family: var(--serif-en);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--sp-sm);
}
.vc-body  { font-size: .92rem; color: rgba(255,255,255,.82); line-height: 1.85; }
.vc-body strong { color: var(--rose-light); }

/* ─── SERVICES ───────────────────────────────────────────── */
.services-section { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.svc-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}

.svc-card--wide {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: 1fr 2fr;
}

.svc-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.svc-card--wide .svc-img { height: 280px; }

.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-num {
  position: absolute;
  top: .9rem; left: .9rem;
  width: 38px; height: 38px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.svc-body {
  padding: var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.svc-title {
  font-size: 1.08rem;
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.svc-title i { color: var(--rose); font-size: .95rem; }

.svc-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.85;
  flex: 1;
}
.svc-desc strong { color: var(--rose); }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.svc-list li {
  font-size: .82rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.svc-list li i { color: var(--sage-dark); font-size: .75rem; }

/* ─── STRENGTHS ──────────────────────────────────────────── */
.strengths-section { background: var(--white); }

.strengths-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.str-item {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
  padding: var(--sp-lg);
  background: var(--cream);
  border-radius: var(--r-xl);
  transition: var(--tr);
}
.str-item:hover {
  box-shadow: var(--sh-md);
  transform: translateX(6px);
}

.str-icon-wrap {
  position: relative;
  flex-shrink: 0;
}
.str-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--rose), var(--rose-mid));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(168,54,46,.28);
}
.str-num {
  position: absolute;
  top: -7px; right: -7px;
  width: 22px; height: 22px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700;
}

.str-text h3 {
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: .65rem;
}
.str-text p       { font-size: .92rem; color: var(--text-mid); line-height: 1.85; }
.str-text strong  { color: var(--rose); }

/* ─── STATS BAND ─────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose), var(--rose-mid));
  padding: var(--sp-xl) 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.stat-item { text-align: center; color: var(--white); }
.stat-num  { font-family: var(--serif-jp); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: .35rem; }
.stat-lbl  { font-size: .82rem; opacity: .82; }

.stat-sep { color: rgba(255,255,255,.45); font-size: 1.1rem; }

/* ─── FOUNDER ────────────────────────────────────────────── */
.founder-section { background: var(--cream-dark); }

.founder-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--sh-lg);
}

.founder-quote-wrap { position: relative; }

.quote-mark {
  font-size: 5.5rem;
  font-family: Georgia, serif;
  color: var(--rose-light);
  line-height: .45;
  margin-bottom: var(--sp-sm);
  opacity: .6;
}


/* ── Nav new badge ───────────────────────────────────── */
.nav-link--new {
  position: relative;
}
.nav-link--new::after {
  content: 'NEW';
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #a8362e, #c0737a);
  color: #fff;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  line-height: 1.4;
}

/* =========================================================
   VASE SERVICE SECTION — 枯れない花瓶サービス
   ========================================================= */

/* ── Section wrapper ─────────────────────────────────── */
.vase-section {
  background: linear-gradient(180deg, #fdf8f5 0%, #fef5f0 50%, #fdf8f5 100%);
  position: relative;
  overflow: hidden;
}
.vase-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,180,185,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Lead (visual + intro text) ─────────────────────── */
.vase-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

/* Image collage */
.vase-lead-visual {
  position: relative;
}
.vase-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  border-radius: 20px;
  overflow: hidden;
}
.vase-col-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}
.vase-col-sub1,
.vase-col-sub2 {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 12px;
}

/* Floating badge on image */
.vase-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a8362e, #c0737a);
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(168,54,46,0.35);
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.vase-badge i { font-size: 1rem; }
.vase-badge small {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 0.25rem;
}

/* Intro text panel */
.vase-lead-text {
  padding-left: 1rem;
}
.vase-catchcopy {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.5;
  color: #7a2030;
  margin-bottom: 1.4rem;
}
.vase-catchcopy em {
  font-style: italic;
  color: #a8362e;
  font-size: 1.15em;
}
.vase-intro {
  font-size: 0.95rem;
  color: #5a3040;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.vase-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.vase-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #4a2030;
  font-weight: 500;
}
.vase-points li i {
  color: #c0737a;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Scene cards ─────────────────────────────────────── */
.vase-scenes {
  margin-bottom: 5rem;
}
.vase-scenes-title,
.vase-plans-title,
.vase-flow-title,
.vase-notes-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #7a2030;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.vase-scenes-title::after,
.vase-plans-title::after,
.vase-flow-title::after,
.vase-notes-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #c0737a, #a8362e);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.vase-scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.scene-card {
  background: #fff;
  border: 1px solid #f0dfe2;
  border-radius: 16px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.scene-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(160,80,100,0.14);
}
.scene-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdf0f2, #ffe8ec);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.scene-icon i {
  font-size: 1.3rem;
  color: #c0737a;
}
.scene-card h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4a2030;
  margin-bottom: 0.5rem;
}
.scene-card p {
  font-size: 0.8rem;
  color: #7a5060;
  line-height: 1.65;
  margin: 0;
}

/* ── Plans ────────────────────────────────────────────── */
.vase-plans {
  margin-bottom: 5rem;
}
.vase-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.plan-card {
  background: #fff;
  border: 1.5px solid #f0dfe2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(160,80,100,0.15);
}
.plan-card--featured {
  border-color: #c0737a;
  box-shadow: 0 8px 32px rgba(168,54,46,0.18);
  transform: translateY(-8px);
}
.plan-card--featured:hover {
  transform: translateY(-14px);
}

.plan-badge-rec {
  position: absolute;
  top: -1px;
  right: 1.2rem;
  background: linear-gradient(135deg, #a8362e, #c0737a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(168,54,46,0.3);
}

.plan-header {
  padding: 1.5rem 1.4rem 1rem;
  text-align: center;
}
.plan-header--light   { background: linear-gradient(135deg, #fdf8f5, #fef0f0); }
.plan-header--featured { background: linear-gradient(135deg, #7a2030, #a8362e); }
.plan-header--premium { background: linear-gradient(135deg, #2e2030, #5a2040); }

.plan-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.plan-header--light   .plan-tag { color: #c0737a; }
.plan-header--featured .plan-tag,
.plan-header--premium .plan-tag { color: rgba(255,255,255,0.7); }

.plan-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}
.plan-header--light   .plan-name { color: #4a2030; }
.plan-header--featured .plan-name,
.plan-header--premium .plan-name { color: #fff; }

.plan-sub {
  font-size: 0.78rem;
  margin: 0;
}
.plan-header--light   .plan-sub { color: #9a6070; }
.plan-header--featured .plan-sub,
.plan-header--premium .plan-sub { color: rgba(255,255,255,0.75); }

.plan-price {
  text-align: center;
  padding: 1.2rem 1rem 0.8rem;
  border-bottom: 1px solid #f5e8ea;
}
.plan-price-num {
  font-size: 2rem;
  font-weight: 800;
  color: #a8362e;
  font-family: 'Noto Serif JP', serif;
}
.plan-price-unit {
  font-size: 0.82rem;
  color: #9a6070;
}

.plan-features {
  list-style: none;
  padding: 1.2rem 1.4rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: #4a2030;
}
.plan-features li i.fa-check { color: #c0737a; }
.plan-features li i.fa-times { color: #ccc; }
.plan-feat--muted { color: #bbb !important; }

.plan-cta {
  display: block;
  text-align: center;
  margin: 0 1.4rem 1.4rem;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  background: #fdf0f2;
  border: 1.5px solid #e8c5cc;
  color: #a8362e;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.plan-cta:hover {
  background: #ffe0e5;
  transform: translateY(-1px);
}
.plan-cta--featured {
  background: linear-gradient(135deg, #c0737a, #a8362e);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(168,54,46,0.3);
}
.plan-cta--featured:hover {
  background: linear-gradient(135deg, #d08090, #c0373e);
}

.vase-plans-note {
  font-size: 0.8rem;
  color: #9a7080;
  text-align: center;
  line-height: 1.8;
}
.vase-plans-note i { color: #c0737a; margin-right: 0.3rem; }

/* ── Flow steps ─────────────────────────────────────── */
.vase-flow {
  margin-bottom: 5rem;
}
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f0dfe2;
  position: relative;
  transition: box-shadow 0.25s;
}
.flow-step:hover {
  box-shadow: 0 8px 24px rgba(160,80,100,0.12);
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  color: #d4a0aa;
  font-size: 1.1rem;
  flex-shrink: 0;
  align-self: center;
  margin-top: -1.5rem;
}
.flow-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c0737a, #a8362e);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdf0f2, #ffe8ec);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem auto 0.8rem;
}
.flow-icon i {
  font-size: 1.2rem;
  color: #c0737a;
}
.flow-step h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #4a2030;
  margin: 0 0 0.45rem;
}
.flow-step p {
  font-size: 0.76rem;
  color: #7a5060;
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ────────────────────────────────────────────── */
.vase-notes {
  margin-bottom: 4rem;
}
.vase-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.faq-item {
  background: #fff;
  border: 1.5px solid #f0dfe2;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: #c0737a;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #4a2030;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  transition: background 0.2s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: #c0737a;
  margin-left: auto;
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover { background: #fdf5f6; }
.faq-item summary i { color: #c0737a; flex-shrink: 0; }
.faq-item > p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  font-size: 0.82rem;
  color: #6a4050;
  line-height: 1.75;
  border-top: 1px solid #f5e8ea;
}

/* ── CTA Banner ──────────────────────────────────────── */
.vase-cta-banner {
  background: linear-gradient(135deg, #7a2030 0%, #a8362e 60%, #c0737a 100%);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.vase-cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.vase-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.vcta-ornament {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.vase-cta-banner h3 {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.vase-cta-banner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.vcta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative; z-index: 1;
}
.btn-fb-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-fb-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .vase-scenes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vase-plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .plan-card--featured { transform: none; }
}

@media (max-width: 860px) {
  .vase-lead {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vase-lead-text { padding-left: 0; }
  .vase-col-main { height: 260px; }
  .vase-col-sub1, .vase-col-sub2 { height: 124px; }

  .vase-plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 1.25rem;
  }
  .plan-card--featured { transform: none; }

  .flow-steps { gap: 1rem; }
  .flow-arrow { display: none; }
  .flow-step { min-width: 140px; }
}

@media (max-width: 640px) {
  .vase-scenes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .vase-faq-grid {
    grid-template-columns: 1fr;
  }
  .vase-badge { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }
  .flow-step { max-width: 100%; width: 100%; }
}


.founder-quote {
  font-family: var(--serif-jp);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text);
  line-height: 1.95;
  margin-bottom: var(--sp-md);
}

.founder-cite {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-style: normal;
  font-size: .88rem;
  margin-bottom: var(--sp-md);
}
.founder-cite strong { font-size: .98rem; color: var(--maroon); }
.founder-cite span   { color: var(--text-muted); }

.founder-fb {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: #1877f2;
  font-weight: 500;
}
.founder-fb:hover { color: #0d5eb8; }

/* Photo side */
.founder-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: relative;
}
.founder-photo img {
  width: 100%; height: 360px;
  object-fit: cover;
  transition: transform .6s ease;
}
.founder-photo:hover img { transform: scale(1.04); }

.founder-photo-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(74,31,26,.75), transparent);
  color: var(--white);
  padding: var(--sp-md) var(--sp-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.founder-photo-badge span:first-child {
  font-family: var(--serif-en);
  font-size: 1.05rem;
  font-weight: 700;
}
.founder-photo-badge span:last-child { font-size: .75rem; opacity: .8; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.ci-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--rose), var(--rose-mid));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
  flex-shrink: 0;
}
.ci-detail {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.ci-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ci-val {
  font-size: .92rem;
  color: var(--text);
  word-break: break-all;
}
.ci-val:hover { color: var(--rose); }
.ci-val.small { font-size: .82rem; line-height: 1.65; color: var(--text); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.fg {
  display: flex;
  flex-direction: column;
  gap: .38rem;
}
.fg label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--rose); }

.fg input,
.fg select,
.fg textarea {
  padding: .72rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--tr);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(168,54,46,.12);
}
.fg input.error,
.fg textarea.error { border-color: #e53e3e; }

.err {
  font-size: .78rem;
  color: #e53e3e;
  min-height: 1.2em;
}
.form-ok {
  padding: var(--sp-sm);
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  border-radius: var(--r-md);
  color: #276749;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: #1a0808; color: rgba(255,255,255,.7); }

.footer-inner { padding: var(--sp-2xl) 0 var(--sp-xl); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-xl);
}

.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: var(--sp-sm);
}
.footer-logo-img {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}
.footer-tagline {
  font-size: .82rem;
  font-style: italic;
  color: var(--rose-light);
  margin-bottom: var(--sp-sm);
}
.footer-mission {
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-sm);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  border-radius: 50%;
  transition: var(--tr);
}
.footer-social a:hover {
  background: #1877f2;
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: var(--sp-sm);
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-col a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer-col a:hover { color: var(--rose-light); }

.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .82rem;
}
.footer-col li i {
  color: var(--rose-light);
  width: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: var(--sp-sm) 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .45rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }

/* ─── BACK TO TOP ────────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--sh-md);
  transition: var(--tr);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.btt.visible { opacity: 1; visibility: visible; }
.btt:hover   { background: var(--rose-dark); transform: translateY(-3px); box-shadow: var(--sh-lg); }

/* ─── SCROLL REVEAL ANIMATION ────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos="fade-right"]   { transform: translateX(-28px); }
[data-aos].aos-animate    { opacity: 1; transform: translate(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Hero */
  /* Hero fullbg — tablet */
  .hero--fullbg { min-height: 75vh; }
  .hero-bg img { object-position: center 20%; }
  .hero-scroll-cue { display: none; }
  
  /* Hero message section */
  .hero-message-section {
    padding: var(--sp-lg) 0;
  }
  .hero-message-block {
    max-width: 520px;
    padding: var(--sp-sm) var(--sp-md);
  }
  .hero-message-text {
    font-size: clamp(1.05rem, 2.2vw, 1.15rem);
    margin-bottom: var(--sp-md);
    line-height: 1.9;
  }
  .hero-message-actions {
    gap: var(--sp-sm);
  }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .about-visual { order: -1; }
  .about-img-frame img { height: 360px; }

  /* Vision */
  .vision-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card--wide { grid-column: 1 / -1; }

  /* Stats */
  .stats-row { gap: var(--sp-md); }
  .stat-sep  { display: none; }

  /* Founder */
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo img { height: 320px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
}

@media (max-width: 768px) {
  :root {
    --sp-xl:  3rem;
    --sp-2xl: 4rem;
  }

  /* Hero fullbg — mobile */
  .hero--fullbg { min-height: 65vh; }
  .hero-bg img { object-position: center 15%; }
  
  /* Hero message section */
  .hero-message-section {
    padding: var(--sp-md) 0;
  }
  .hero-message-block {
    max-width: 100%;
    padding: 0 var(--sp-md);
  }
  .hero-message-text {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: var(--sp-md);
  }
  .hero-message-actions {
    gap: var(--sp-sm);
    flex-direction: column;
    align-items: center;
  }
  .hero-message-actions .btn {
    min-width: 240px;
  }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem var(--sp-md) var(--sp-md);
    gap: .2rem;
    box-shadow: -4px 0 28px rgba(0,0,0,.14);
    transition: right .3s ease;
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-link {
    color: var(--text) !important;
    padding: .72rem 1rem;
    font-size: 1rem;
    border-radius: var(--r-md);
  }
  .nav-link:hover {
    background: var(--blush) !important;
    color: var(--rose) !important;
  }
  .nav-cta { margin-top: .5rem; text-align: center; justify-content: center; }

  /* Company table */
  .ct-row { grid-template-columns: 1fr; gap: .2rem; }

  /* About collage — tablet/mobile */
  .about-img-collage {
    grid-template-columns: repeat(3, 1fr);
    min-height: auto;
    gap: 0.5rem;
  }
  .collage-featured {
    grid-column: span 1;
    height: 160px;
  }
  .collage-featured--large {
    grid-column: span 3;
    height: 180px;
  }
  .collage-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .collage-grid--medium {
    height: auto;
  }
  .collage-grid--medium .collage-item {
    height: 120px;
  }
  .collage-grid--small {
    height: auto;
  }
  .collage-grid--small .collage-item {
    height: 100px;
  }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card--wide { grid-template-columns: 1fr !important; }
  .svc-card--wide .svc-img { height: 220px; }

  /* Strengths */
  .str-item { flex-direction: column; gap: var(--sp-sm); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-md); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .about-year-badge { top: -10px; right: -10px; width: 72px; height: 72px; }
  .year-num { font-size: 1rem; }

  /* About collage — very small screens */
  .about-img-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  .collage-featured {
    grid-column: span 2;
    height: 140px;
  }
  .collage-featured--large {
    grid-column: span 2;
    height: 160px;
  }
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  .collage-grid--medium .collage-item {
    height: 100px;
  }
  .collage-grid--small .collage-item {
    height: 90px;
  }

  .stats-row { flex-direction: column; gap: var(--sp-md); }
  .stat-sep  { display: none; }

}
