/* ============================================================
   SILVA PROPERTY ADVISOR — stylesheet
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --bg:       #0F1115;   /* Deep Charcoal Black — main bg */
  --bg-alt:   #15171C;   /* Warm Black — section alt bg */
  --bg-card:  #1A1D23;   /* Card background */
  --bg-light: #F7F5F1;   /* Off-White — light section bg */
  --gold:     #C8A96B;   /* Elegant Gold */
  --gold-h:   #D6B97A;   /* Champagne Gold — hover */
  --gold-d:   #9A7F4A;   /* Dark Gold */
  --gold-f:   rgba(200, 169, 107, 0.08);
  --ivory:    #F5F1E8;   /* Soft Ivory — main text */
  --sub:      #B8B2A7;   /* Muted Warm Gray — sub text */
  --muted:    #7A7470;   /* Muted text */
  --border:   #3A342B;   /* Luxury Thin Border */
  --border-l: rgba(58, 52, 43, 0.5);
  --on-light: #1A1A1A;   /* Text on light bg */
  --on-sub:   #5A5650;   /* Sub text on light bg */
  --f-head:   'Playfair Display', Georgia, serif;
  --f-body:   'Inter', system-ui, sans-serif;
  --f-jp-h:   'Noto Serif JP', serif;
  --f-jp-b:   'Noto Sans JP', sans-serif;
  --pad:      clamp(20px, 5vw, 72px);
  --max:      1240px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --t1: .18s; --t2: .4s; --t3: .8s;
  --z-nav: 100;

  /* Spacing */
  --s1: 8px;  --s2: 16px; --s3: 28px; --s4: 48px;
  --s5: 72px; --s6: 112px; --s7: 160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.locked { overflow: hidden; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── Typography helpers ── */
.eyebrow {
  font-family: var(--f-body);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; flex: 0 0 32px; height: 1px;
  background: var(--gold); opacity: .5;
}
.eyebrow--center { justify-content: center; }
.eyebrow--no-lines::before, .eyebrow--no-lines::after { display: none; }

h2.title {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; letter-spacing: .02em;
  line-height: 1.2; color: var(--ivory);
  margin-bottom: var(--s3);
}
h2.title em   { font-style: italic; color: var(--gold); }
h2.title--dark   { color: var(--on-light); }
h2.title--center { text-align: center; }


/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px;
  font-family: var(--f-body); font-size: .72rem;
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  transition: all var(--t2) var(--ease);
  cursor: pointer; position: relative; overflow: hidden;
}
.btn i { transition: transform var(--t2) var(--ease); font-style: normal; }
.btn:hover i { transform: translateX(5px); }

.btn--gold { background: var(--gold); color: #111; font-weight: 600; }
.btn--gold:hover { background: var(--gold-h); }

.btn--outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover { background: var(--gold); color: #111; }

.btn--outline-ivory { border: 1px solid rgba(245,241,232,.35); color: var(--ivory); background: transparent; }
.btn--outline-ivory:hover { border-color: var(--gold); color: var(--gold); }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto;
  z-index: var(--z-nav);
  background: linear-gradient(to bottom, rgba(15,17,21,.7) 0%, transparent 100%);
  transition: background var(--t3) var(--ease), box-shadow var(--t3) var(--ease);
}
.nav.scrolled {
  background: rgba(15,17,21,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner { display: flex; align-items: center; height: 72px; gap: 16px; }

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 60px; width: auto; display: block; }
.logo__img--footer { height: 88px; }

/* Nav links */
.nav__links { display: flex; align-items: center; gap: var(--s3); margin-left: auto; }
.nav__a {
  font-family: var(--f-body); font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory); opacity: .75;
  transition: opacity var(--t1), color var(--t1); position: relative;
}
.nav__a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.nav__a:hover { opacity: 1; color: var(--gold-h); }
.nav__a:hover::after { transform: scaleX(1); }

/* Action buttons */
.nav__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav__wa, .nav__zoom {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px;
  font-family: var(--f-body); font-size: .62rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  transition: all var(--t1); white-space: nowrap; cursor: pointer;
}
.nav__wa svg, .nav__zoom svg { width: 13px; height: 13px; flex-shrink: 0; }
.nav__wa { border: 1px solid rgba(200,169,107,.4); color: var(--sub); background: transparent; }
.nav__wa:hover { border-color: var(--gold); color: var(--gold); }
.nav__zoom { background: var(--gold); color: #111; font-weight: 600; border: none; }
.nav__zoom:hover { background: var(--gold-h); }

/* Hamburger */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; flex-shrink: 0; }
.nav__burger span { display: block; width: 22px; height: 1px; background: var(--gold); transition: transform var(--t2) var(--ease), opacity var(--t1); }
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile-only CTAs in drawer */
.nav__mobile-actions { display: none; flex-direction: column; gap: 10px; padding: 20px 0 0; }
.nav__mobile-actions .nav__wa,
.nav__mobile-actions .nav__zoom { justify-content: center; padding: 12px 20px; font-size: .78rem; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero__img {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(10,11,14,.82) 35%, rgba(10,11,14,.35) 65%, rgba(10,11,14,.15) 100%),
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(200,140,60,.08) 0%, transparent 55%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .035; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
.hero__line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .4; z-index: 1;
}
.hero__inner { position: relative; z-index: 1; padding: 140px 0 80px; }
.hero__content { max-width: 640px; }

.hero__eyebrow {
  font-family: var(--f-body); font-size: .6rem; font-weight: 500;
  letter-spacing: .32em; color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px; opacity: 0;
  animation: fadeUp 1s var(--ease) .3s forwards;
}
.hero__h1 {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 700; line-height: 1.15; letter-spacing: .01em;
  color: var(--ivory); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s var(--ease) .5s forwards;
}
.hero__h1 em { font-style: italic; color: var(--gold); }
.hero__tagline {
  font-family: var(--f-head); font-style: italic;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: var(--gold); letter-spacing: .04em; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s var(--ease) .65s forwards;
}
.hero__body {
  font-family: var(--f-body); font-size: clamp(.82rem, 1vw, .92rem);
  font-weight: 300; line-height: 1.85; color: var(--sub);
  margin-bottom: 10px; max-width: 540px;
  opacity: 0; animation: fadeUp 1s var(--ease) .8s forwards;
}
.hero__jp {
  font-family: var(--f-jp-b); font-size: .7rem;
  color: rgba(200,169,107,.7); letter-spacing: .1em;
  border-left: 2px solid rgba(200,169,107,.4); padding-left: 12px;
  margin-bottom: 36px; display: inline-block;
  opacity: 0; animation: fadeUp 1s var(--ease) .9s forwards;
}
.hero__btns {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; animation: fadeUp 1s var(--ease) 1.05s forwards;
}

/* Scroll hint */
.scroll-hint { position: absolute; right: var(--pad); bottom: 90px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.scroll-hint__bar { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
.scroll-hint__txt { font-size: .54rem; letter-spacing: .28em; color: var(--gold); writing-mode: vertical-rl; opacity: .5; }


/* ============================================================
   STRENGTHS
   ============================================================ */
.strengths {
  padding: var(--s7) 0; background: var(--bg-alt); position: relative;
}
.strengths::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.strengths__head { text-align: center; margin-bottom: var(--s5); }
.strengths__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.s-card {
  padding: 36px 28px; border: 1px solid var(--border);
  background: var(--bg-card); position: relative;
  transition: border-color var(--t2), transform var(--t2) var(--ease);
}
.s-card:hover { border-color: rgba(200,169,107,.45); transform: translateY(-5px); }
.s-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold-d), var(--gold), var(--gold-h));
  opacity: 0; transition: opacity var(--t2);
}
.s-card:hover::before { opacity: 1; }
.s-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--gold);
}
.s-card__icon svg { width: 42px; height: 42px; }
.s-card__title { font-family: var(--f-head); font-size: 1.05rem; font-weight: 600; color: var(--ivory); margin-bottom: 6px; line-height: 1.35; }
.s-card__sub    { font-family: var(--f-body); font-size: .62rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; display: block; }
.s-card__desc   { font-size: .82rem; font-weight: 300; line-height: 1.8; color: var(--sub); }


/* ============================================================
   HOW IT WORKS (Light section)
   ============================================================ */
.how { padding: var(--s7) 0; background: var(--bg-light); }
.how__head { text-align: center; margin-bottom: var(--s5); }

.how__steps {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr;
  align-items: start; gap: 0;
}
.how__arrow { display: flex; align-items: flex-start; justify-content: center; padding-top: 52px; color: #9A7F4A; font-size: 1.1rem; opacity: .7; }

.step { text-align: center; }
.step__visual {
  width: 100%; aspect-ratio: 4/3;
  background: #1A1D23;
  border: 1px solid #2A2E36;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.step__visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,14,.15) 0%, rgba(10,11,14,.5) 100%);
  z-index: 1;
}
.step__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  transition: transform .6s ease;
}
.step:hover .step__photo { transform: scale(1.04); }
.step__badge {
  position: absolute; top: 10px; left: 10px;
  width: 28px; height: 28px; background: var(--gold); color: #111;
  font-family: var(--f-head); font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.step__visual svg { display: none; }
.step__title { font-family: var(--f-head); font-size: 1rem; font-weight: 600; color: var(--on-light); margin: 16px 0 8px; line-height: 1.3; }
.step__desc  { font-size: .8rem; font-weight: 400; line-height: 1.7; color: var(--on-sub); }


/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: var(--s7) 0; background: var(--bg); }
.pricing__head { text-align: center; margin-bottom: var(--s5); }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

.plan { padding: 44px 38px; border: 1px solid var(--border); background: var(--bg-alt); position: relative; }
.plan--feat {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200,169,107,.05) 0%, var(--bg-alt) 50%);
}
.plan--feat::before {
  content: 'RECOMMENDED'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-body); font-size: .55rem; font-weight: 600; letter-spacing: .28em;
  color: #111; background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--gold-h));
  padding: 4px 18px; white-space: nowrap;
}
.plan__tag   { font-family: var(--f-body); font-size: .6rem; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; display: block; }
.plan__title { font-family: var(--f-head); font-size: clamp(1.1rem,1.6vw,1.4rem); font-weight: 600; color: var(--ivory); line-height: 1.3; margin-bottom: 8px; }
.plan__for   { font-size: .78rem; font-weight: 300; color: var(--sub); letter-spacing: .04em; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }

.plan__list { margin-bottom: 30px; }
.plan__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .8rem; font-weight: 300; line-height: 1.65; color: var(--ivory);
  padding: 6px 0; border-bottom: 1px solid rgba(58,52,43,.35);
}
.plan__list li::before {
  content: ''; flex-shrink: 0; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold); margin-top: .52em; opacity: .85;
}
.plan .btn { width: 100%; justify-content: center; }


/* ============================================================
   TEAM
   ============================================================ */
.team {
  padding: var(--s7) 0; background: var(--bg-alt); position: relative;
}
.team::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.team__head { text-align: center; margin-bottom: var(--s5); }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 48px); }

.member {
  padding: 44px 38px; border: 1px solid var(--border);
  background: var(--bg-card); position: relative;
}
.member::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: .5;
}
.member__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-h), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 1.1rem; font-weight: 700;
  color: #111; margin-bottom: 22px; letter-spacing: .08em;
}
.member__role { font-family: var(--f-body); font-size: .58rem; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; display: block; }
.member__name { font-family: var(--f-head); font-size: 1.2rem; font-weight: 600; color: var(--ivory); margin-bottom: 14px; line-height: 1.3; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.badge {
  font-family: var(--f-body); font-size: .55rem; letter-spacing: .14em;
  color: var(--gold); border: 1px solid rgba(200,169,107,.3); padding: 3px 9px;
}
.member__desc { font-size: .83rem; font-weight: 300; line-height: 1.85; color: var(--sub); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--s7) 0; background: var(--bg); }
.contact__head { text-align: center; margin-bottom: var(--s5); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: start; }

.cform__title { font-family: var(--f-head); font-size: 1.2rem; font-weight: 600; color: var(--ivory); margin-bottom: var(--s3); }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-family: var(--f-body); font-size: .62rem; font-weight: 500; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--bg-alt);
  border: none; border-bottom: 1px solid var(--border);
  color: var(--ivory); padding: 11px 13px;
  font-family: var(--f-body); font-size: .83rem; letter-spacing: .03em;
  outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color var(--t2) var(--ease), background var(--t2);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold); background: rgba(200,169,107,.03);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); font-size: .8rem; }
.fg textarea { min-height: 110px; resize: vertical; line-height: 1.65; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--gold); pointer-events: none;
}
.fg select option { background: var(--bg-alt); color: var(--ivory); }
.cform__submit { margin-top: 22px; }
.cform__submit .btn { width: 100%; justify-content: center; }

.cal__title { font-family: var(--f-head); font-size: 1.2rem; font-weight: 600; color: var(--ivory); margin-bottom: 6px; }
.cal__sub   { font-size: .8rem; font-weight: 300; color: var(--sub); margin-bottom: 24px; }
.cal__box {
  border: 1px solid var(--border); background: var(--bg-alt);
  min-height: 400px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  padding: 36px 28px; text-align: center; position: relative; overflow: hidden;
}
.cal__box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold-d), var(--gold), var(--gold-h)); }
.cal__icon { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cal__icon svg { width: 20px; height: 20px; color: var(--gold); }
.cal__label { font-family: var(--f-body); font-size: .75rem; font-weight: 500; letter-spacing: .18em; color: var(--sub); text-transform: uppercase; }
.cal__note  { font-size: .7rem; color: var(--muted); line-height: 1.65; max-width: 240px; letter-spacing: .04em; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A0B0E; border-top: 1px solid var(--border); padding: var(--s5) 0 var(--s3); }
.footer__main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s4); margin-bottom: var(--s4); }
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p { font-size: .75rem; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer__disclaimer { font-size: .65rem; color: var(--muted); opacity: .6; margin-top: 10px; line-height: 1.6; }
.footer__col h4 { font-family: var(--f-body); font-size: .6rem; font-weight: 600; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.footer__col a { display: block; font-size: .75rem; font-weight: 300; color: var(--sub); margin-bottom: 8px; transition: color var(--t1); }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.soc { width: 32px; height: 32px; border: 1px solid rgba(58,52,43,.7); display: flex; align-items: center; justify-content: center; transition: border-color var(--t1), background var(--t1); }
.soc:hover { border-color: var(--gold); background: var(--gold-f); }
.soc svg { width: 13px; height: 13px; color: var(--sub); transition: color var(--t1); }
.soc:hover svg { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(58,52,43,.5); padding-top: var(--s2); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy  { font-size: .62rem; letter-spacing: .12em; color: var(--muted); opacity: .5; }
.footer__legal { font-size: .62rem; color: var(--muted); opacity: .4; }


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1) translateY(0); }
  50%       { opacity: .15; transform: scaleY(.5) translateY(8px); }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links { gap: var(--s3); }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__inner   { padding: 130px 0 70px; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__jp      { border-left: none; border-top: 2px solid rgba(200,169,107,.35); padding-left: 0; padding-top: 10px; display: block; text-align: center; }
  .hero__btns    { justify-content: center; }
  .strengths__grid { grid-template-columns: 1fr 1fr; }
  .how__steps    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .how__arrow    { display: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .team__grid    { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__main  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --s7: 88px; --s6: 72px; --s5: 56px; }

  /* Mobile nav drawer */
  .nav__links {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 84vw); height: 100dvh;
    background: rgba(10,11,14,.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 84px var(--s3) var(--s3);
    border-left: 1px solid var(--border);
    transition: right var(--t2) var(--ease); overflow-y: auto; margin-left: 0;
  }
  .nav__links.open { right: 0; }
  .nav__links li   { width: 100%; border-bottom: 1px solid rgba(58,52,43,.4); }
  .nav__a          { display: block; padding: 15px 0; font-size: .9rem; opacity: .9; }
  .nav__mobile-actions { display: flex; }
  .nav__actions { display: none; }
  .nav__burger  { display: flex; }

  /* Hero */
  .hero__inner { padding: 110px 0 60px; }
  .scroll-hint { display: none; }

  /* Cards */
  .s-card, .plan, .member { padding: 28px 22px; }
  .plan--feat::before { font-size: .5rem; padding: 3px 14px; }
  .cal__box { min-height: 300px; padding: 28px 20px; }
}

@media (max-width: 600px) {
  .strengths__grid { grid-template-columns: 1fr; }
  .how__steps      { grid-template-columns: 1fr; }
  .footer__main    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 2rem; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; padding: 13px 22px; }
  h2.title { font-size: 1.65rem; }
  .s-card, .plan, .member { padding: 24px 18px; }
}
