@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&family=Noto+Sans+Devanagari:wght@500;600&display=swap');

:root {
  --bg: #fffdf7;
  --surface: #fff8e8;
  --surface-white: #fffefa;
  --text: #1d252c;
  --muted: #6a6a65;
  --navy: #102a43;
  --gold: #c69a3b;
  --saffron: #d98c10;
  --maroon: #7d2535;
  --sage: #66785f;
  --border: #dfd6c3;
  --radius-sm: 4px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 55px rgba(31, 40, 45, .09);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
:focus-visible { outline: 3px solid rgba(217, 140, 16, .45); outline-offset: 3px; }
::selection { color: #fff; background: var(--maroon); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(790px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 108px 0; }
.section-sm { padding: 76px 0; }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: end; margin-bottom: 54px; }
.section-head > p { max-width: 600px; margin: 0; color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--maroon); font-size: .75rem; font-weight: 700; letter-spacing: .17em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 1px; background: var(--gold); content: ''; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-family: 'Cormorant Garamond', serif; line-height: .99; text-wrap: balance; }
h1 { font-size: clamp(3.25rem, 6vw, 6.5rem); font-weight: 600; letter-spacing: -.045em; }
h2 { font-size: clamp(2.35rem, 4.2vw, 4.5rem); font-weight: 600; letter-spacing: -.035em; }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.25rem); font-weight: 600; }
h4 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.8; }
.gold-text { color: var(--saffron); font-style: italic; }
.devanagari { font-family: 'Noto Sans Devanagari', sans-serif; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: var(--radius-sm); padding: 12px 20px; cursor: pointer; font-size: .86rem; font-weight: 700; letter-spacing: .02em; transition: transform .25s, background-color .25s, border-color .25s, color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: #fff; background: var(--maroon); }
.btn-primary:hover { background: #641b29; }
.btn-secondary { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-secondary:hover { color: #fff; background: var(--navy); }
.btn-light { color: var(--navy); background: #fffdf7; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--maroon); font-size: .86rem; font-weight: 700; }
.text-link svg { width: 17px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; color: #fff; background: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

/* Header */
.micro-bar { position: relative; z-index: 102; color: rgba(255,255,255,.82); background: var(--navy); font-size: .75rem; letter-spacing: .04em; }
.micro-bar .container { display: flex; min-height: 32px; align-items: center; justify-content: space-between; }
.micro-call { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 600; }
.micro-call svg { width: 14px; }
.site-header { position: relative; z-index: 100; border-bottom: 1px solid rgba(16,42,67,.12); background: rgba(255,253,247,.96); transition: box-shadow .25s; }
.site-header.is-scrolled { position: sticky; top: 0; box-shadow: 0 10px 32px rgba(16,42,67,.08); }
.nav-wrap { display: flex; min-height: 86px; align-items: center; gap: 42px; }
.brand { display: inline-grid; line-height: 1; }
.brand-name { color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700; letter-spacing: -.025em; }
.brand-tag { margin-top: 7px; color: var(--muted); font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.brand-mark { display: flex; align-items: center; gap: 12px; }
.brand-sun { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid var(--gold); border-radius: 50%; }
.brand-sun::before, .brand-sun::after { position: absolute; inset: 6px; border: 1px solid var(--gold); transform: rotate(45deg); content: ''; }
.brand-sun::after { inset: 11px; border-radius: 50%; background: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a:not(.btn) { position: relative; padding: 30px 0; color: #35424c; font-size: .82rem; font-weight: 600; }
.site-nav a:not(.btn)::after { position: absolute; right: 0; bottom: 22px; left: 0; height: 1px; background: var(--maroon); transform: scaleX(0); transform-origin: right; transition: transform .25s; content: ''; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.site-nav a.active { color: var(--maroon); }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--border); background: transparent; cursor: pointer; }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 20px; height: 1.5px; background: var(--navy); transition: .25s; content: ''; }
.menu-icon::before { transform: translateY(-6px); }
.menu-icon::after { transform: translateY(4.5px); }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateY(-1.5px) rotate(-45deg); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 78px 0 58px; background: linear-gradient(90deg, var(--bg) 0 58%, var(--surface) 58% 100%); }
.hero::before { position: absolute; top: -260px; right: -190px; width: 660px; height: 660px; border: 1px solid rgba(198,154,59,.16); border-radius: 50%; box-shadow: 0 0 0 55px rgba(198,154,59,.025), 0 0 0 110px rgba(198,154,59,.018); content: ''; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .82fr; align-items: center; gap: 84px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { max-width: 620px; margin: 26px 0 30px; color: #4e565c; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-call { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--navy); font-size: .86rem; font-weight: 700; }
.hero-call svg { width: 17px; color: var(--maroon); }
.hero-visual { position: relative; min-height: 585px; }
.portrait-frame { position: absolute; inset: 22px 34px 8px 42px; overflow: hidden; border: 1px solid rgba(198,154,59,.8); border-radius: 48% 48% 10px 10px / 34% 34% 10px 10px; background: #eadcc1; box-shadow: var(--shadow-soft); }
.portrait-frame::after { position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.6); border-radius: inherit; pointer-events: none; content: ''; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.zodiac-ring { position: absolute; inset: -1px -16px auto auto; width: 184px; height: 184px; border: 1px solid rgba(198,154,59,.55); border-radius: 50%; animation: rotate 36s linear infinite; }
.zodiac-ring::before, .zodiac-ring::after { position: absolute; border: 1px solid rgba(198,154,59,.35); border-radius: 50%; content: ''; }
.zodiac-ring::before { inset: 13px; }
.zodiac-ring::after { inset: 31px; border-style: dashed; }
.zodiac-ring span { position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translate(-50%,-50%) translateY(-91px); box-shadow: 0 182px var(--gold), 91px 91px var(--gold), -91px 91px var(--gold); }
@keyframes rotate { to { transform: rotate(360deg); } }
.orbit-label { position: absolute; z-index: 4; padding: 9px 13px; border-left: 2px solid var(--gold); color: var(--navy); background: rgba(255,253,247,.93); box-shadow: 0 8px 24px rgba(16,42,67,.08); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; }
.label-one { top: 16%; left: -10px; }
.label-two { top: 43%; right: -35px; }
.label-three { bottom: 18%; left: 8px; }
.label-four { right: -13px; bottom: 4%; }
.quick-concerns { position: relative; z-index: 5; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fffefa; }
.concern-inner { display: grid; grid-template-columns: auto 1fr; min-height: 90px; align-items: center; gap: 34px; }
.concern-title { color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-weight: 700; white-space: nowrap; }
.concern-list { display: flex; overflow-x: auto; scrollbar-width: none; }
.concern-list::-webkit-scrollbar { display: none; }
.concern-list span { display: inline-flex; align-items: center; white-space: nowrap; color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: .035em; }
.concern-list span + span::before { width: 4px; height: 4px; margin: 0 16px; border-radius: 50%; background: var(--gold); content: ''; }

/* Shared sections */
.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 88px; align-items: start; }
.intro-copy > p { color: var(--muted); }
.ornament-quote { position: relative; margin: 32px 0; padding: 25px 30px 25px 36px; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); color: var(--maroon); font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 600; line-height: 1.25; }
.ornament-quote::before { position: absolute; top: 50%; left: -7px; width: 13px; height: 13px; border: 1px solid var(--gold); background: var(--bg); transform: translateY(-50%) rotate(45deg); content: ''; }
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 32px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.trust-item { min-height: 110px; padding: 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-item strong { display: block; color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; }
.trust-item span { color: var(--muted); font-size: .78rem; }
.services-preview { overflow: hidden; background: var(--surface); }
.service-editorial { display: grid; grid-template-columns: 1.15fr 1.85fr; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.featured-service { position: relative; display: flex; min-height: 480px; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 46px; color: #fff; background: var(--navy); }
.featured-service::before { position: absolute; top: -90px; right: -80px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.025), 0 0 0 68px rgba(255,255,255,.018); content: ''; }
.featured-service .service-icon { width: 58px; height: 58px; margin-bottom: auto; color: #e5bd68; }
.featured-service h3, .featured-service p { position: relative; color: #fff; }
.featured-service p { max-width: 430px; color: rgba(255,255,255,.7); }
.featured-service .text-link { color: #efd48f; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); }
.service-tile { position: relative; min-height: 215px; padding: 34px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.48); transition: background-color .25s; }
.service-tile:nth-child(even) { border-right: 0; }
.service-tile:nth-last-child(-n+2) { border-bottom: 0; }
.service-tile:hover { background: #fffdf7; }
.service-icon { width: 29px; height: 29px; margin-bottom: 21px; color: var(--maroon); }
.service-tile h3 { margin-bottom: 8px; font-size: 1.45rem; }
.service-tile p { margin: 0 0 14px; color: var(--muted); font-size: .85rem; line-height: 1.6; }
.relationship { overflow: hidden; background: #fbf1ef; }
.relationship-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 90px; }
.relationship-copy h2 { max-width: 780px; }
.relationship-copy > p:not(.eyebrow) { max-width: 690px; margin: 25px 0 28px; color: var(--muted); }
.line-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0 0 34px; padding: 0; list-style: none; }
.line-list li { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(125,37,53,.16); color: var(--navy); font-size: .88rem; font-weight: 600; }
.line-list li:nth-child(odd) { margin-right: 28px; }
.line-list svg { width: 16px; color: var(--maroon); }
.heart-orbit { position: relative; width: min(340px, 90vw); aspect-ratio: 1; margin-inline: auto; border: 1px solid rgba(125,37,53,.28); border-radius: 50%; }
.heart-orbit::before, .heart-orbit::after { position: absolute; border: 1px solid rgba(125,37,53,.18); border-radius: 50%; content: ''; }
.heart-orbit::before { inset: 27px; }
.heart-orbit::after { inset: 65px; }
.heart-orbit svg { position: absolute; inset: 50% auto auto 50%; width: 80px; height: 80px; color: var(--maroon); transform: translate(-50%,-50%); }
.heart-orbit span { position: absolute; padding: 7px 10px; color: var(--maroon); background: #fbf1ef; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
.heart-orbit span:nth-of-type(1) { top: 10px; left: 50%; transform: translateX(-50%); }
.heart-orbit span:nth-of-type(2) { top: 50%; right: -18px; transform: translateY(-50%); }
.heart-orbit span:nth-of-type(3) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.career-section { background: var(--bg); }
.consult-tabs { display: grid; grid-template-columns: 310px 1fr; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tab-list { display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.tab-button { display: grid; grid-template-columns: 42px 1fr; min-height: 96px; align-items: center; border: 0; border-bottom: 1px solid var(--border); padding: 20px 26px; color: var(--muted); background: transparent; cursor: pointer; text-align: left; transition: background .25s, color .25s; }
.tab-button:last-child { border-bottom: 0; }
.tab-button span:first-child { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.tab-button span:last-child { font-weight: 700; }
.tab-button.is-active { color: #fff; background: var(--navy); }
.tab-panel { min-height: 350px; padding: 50px 58px; }
.tab-panel h3 { margin-bottom: 16px; }
.tab-panel > p { max-width: 700px; color: var(--muted); }
.tick-list { margin: 28px 0 34px; padding: 0; list-style: none; }
.tick-list li { display: flex; align-items: center; gap: 10px; margin: 12px 0; }
.tick-list svg { width: 16px; color: var(--sage); }
.traditional { overflow: hidden; color: #fff; background: var(--navy); }
.traditional::before { position: absolute; top: 50%; right: -200px; width: 650px; height: 650px; border: 1px solid rgba(198,154,59,.18); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 55px rgba(198,154,59,.03), 0 0 0 110px rgba(198,154,59,.02); content: ''; }
.traditional-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.mandala-mark { position: relative; width: 320px; aspect-ratio: 1; margin: auto; border: 1px solid rgba(229,189,104,.5); border-radius: 50%; }
.mandala-mark::before, .mandala-mark::after { position: absolute; inset: 37px; border: 1px dashed rgba(229,189,104,.4); transform: rotate(45deg); content: ''; }
.mandala-mark::after { inset: 88px; border-style: solid; border-radius: 50%; box-shadow: 0 0 45px rgba(198,154,59,.2); }
.mandala-mark svg { position: absolute; top: 50%; left: 50%; width: 68px; height: 68px; color: #e5bd68; transform: translate(-50%,-50%); }
.traditional h2, .traditional h3 { color: #fff; }
.traditional .eyebrow { color: #efd48f; }
.traditional-copy > p:not(.eyebrow) { max-width: 740px; color: rgba(255,255,255,.72); }
.belief-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 34px; }
.belief-list span { padding: 7px 12px; border: 1px solid rgba(255,255,255,.2); font-size: .77rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; }
.step { position: relative; padding: 35px 28px 0 0; border-top: 1px solid var(--gold); }
.step::before { position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border: 2px solid var(--bg); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 1px var(--gold); content: ''; }
.step-number { display: block; margin-bottom: 20px; color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
.step h3 { margin-bottom: 8px; font-size: 1.42rem; }
.step p { color: var(--muted); font-size: .83rem; }
.why-strip { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.why-points { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.why-point { padding: 27px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-point svg { width: 24px; color: var(--maroon); }
.why-point strong { display: block; margin: 13px 0 4px; color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; }
.why-point span { color: var(--muted); font-size: .8rem; }
.cta-band { position: relative; overflow: hidden; padding: 86px 0; color: #fff; background: var(--maroon); }
.cta-band::before { position: absolute; top: 50%; right: 2%; width: 410px; height: 410px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 84px rgba(255,255,255,.018); content: ''; }
.cta-inner { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 45px; }
.cta-band h2 { color: #fff; }
.cta-band p { margin: 12px 0 0; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.cta-band .btn-secondary { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-band .btn-secondary:hover { color: var(--maroon); background: #fff; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-intro p { max-width: 350px; margin-top: 22px; color: var(--muted); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger { display: flex; width: 100%; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; border: 0; padding: 18px 0; color: var(--navy); background: transparent; cursor: pointer; font-weight: 600; text-align: left; }
.accordion-trigger::after { flex: 0 0 auto; color: var(--maroon); font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; content: '+'; }
.accordion-trigger[aria-expanded="true"]::after { content: '−'; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { margin: 0; padding: 0 36px 22px 0; color: var(--muted); font-size: .9rem; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: 90px 0 78px; border-bottom: 1px solid var(--border); background: var(--surface); }
.page-hero::after { position: absolute; top: -220px; right: -100px; width: 540px; height: 540px; border: 1px solid rgba(198,154,59,.2); border-radius: 50%; box-shadow: 0 0 0 50px rgba(198,154,59,.025), 0 0 0 100px rgba(198,154,59,.018); content: ''; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 920px; font-size: clamp(3rem, 5.6vw, 5.7rem); }
.page-hero .lead { max-width: 720px; margin: 25px 0 0; color: var(--muted); }
.breadcrumb { display: flex; gap: 9px; margin-bottom: 28px; color: var(--muted); font-size: .75rem; }
.breadcrumb a { color: var(--maroon); font-weight: 600; }
.about-profile { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 88px; }
.about-portrait { position: relative; }
.about-portrait::before { position: absolute; inset: -18px 22px 18px -18px; z-index: -1; border: 1px solid var(--gold); content: ''; }
.about-portrait img { width: 100%; max-height: 620px; object-fit: cover; object-position: center 15%; }
.about-copy p { color: var(--muted); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.approach-item { min-height: 275px; padding: 32px 26px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.approach-item .number { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.approach-item h3 { margin: 58px 0 12px; }
.approach-item p { color: var(--muted); font-size: .84rem; }
.values-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.values-note { padding: 45px; border: 1px solid var(--border); background: var(--surface); }
.values-note h3 { margin-bottom: 16px; }
.values-note p { color: var(--muted); }
.service-detail { display: grid; grid-template-columns: 80px .95fr 1.05fr; gap: 42px; padding: 62px 0; border-bottom: 1px solid var(--border); }
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border-bottom: 0; }
.service-number { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.detail-heading .service-icon { width: 34px; height: 34px; }
.detail-heading h2 { margin-bottom: 16px; font-size: clamp(2.2rem, 3.3vw, 3.5rem); }
.detail-heading p { color: var(--muted); }
.detail-discuss { padding-left: 42px; border-left: 1px solid var(--border); }
.detail-discuss h3 { margin-bottom: 18px; font-size: 1.35rem; }
.detail-discuss .tick-list { margin: 0 0 26px; }
.legal-note { margin-top: 18px; padding: 15px 18px; border-left: 2px solid var(--gold); color: var(--muted); background: var(--surface); font-size: .78rem; }
.guidance-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; }
.guidance-intro p { color: var(--muted); }
.article-layout { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.article-card { position: relative; min-height: 280px; padding: 32px; border-top: 2px solid var(--gold); background: #fffefa; box-shadow: 0 12px 35px rgba(16,42,67,.055); }
.article-card:nth-child(1), .article-card:nth-child(4) { grid-column: span 7; }
.article-card:nth-child(2), .article-card:nth-child(3) { grid-column: span 5; }
.article-card:nth-child(5), .article-card:nth-child(6) { grid-column: span 6; }
.article-card .article-no { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.article-card h3 { margin: 48px 0 14px; }
.article-card p { color: var(--muted); font-size: .86rem; }
.prepare-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; }
.prepare-list { margin: 0; padding: 0; counter-reset: prep; list-style: none; }
.prepare-list li { position: relative; padding: 20px 20px 20px 63px; border-bottom: 1px solid var(--border); color: var(--navy); font-weight: 600; }
.prepare-list li::before { position: absolute; top: 17px; left: 0; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--maroon); font-family: 'Cormorant Garamond', serif; counter-increment: prep; content: counter(prep, decimal-leading-zero); }
.disclaimer-box { padding: 38px; border: 1px solid var(--border); background: var(--surface); }
.disclaimer-box h3 { margin-bottom: 14px; }
.disclaimer-box p { color: var(--muted); font-size: .86rem; }
.contact-section { background: linear-gradient(90deg, var(--bg) 0 50%, var(--surface) 50% 100%); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.contact-details h2 { margin-bottom: 22px; }
.contact-details > p { max-width: 440px; color: var(--muted); }
.contact-lines { margin: 38px 0; border-top: 1px solid var(--border); }
.contact-line { display: flex; align-items: center; gap: 18px; padding: 21px 0; border-bottom: 1px solid var(--border); }
.contact-line svg { width: 25px; color: var(--maroon); }
.contact-line small { display: block; color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.contact-line strong { color: var(--navy); font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; }
.contact-form-wrap { padding: 48px; border-top: 3px solid var(--gold); background: #fffefa; box-shadow: var(--shadow-soft); }
.contact-form-wrap h2 { margin-bottom: 10px; font-size: 2.6rem; }
.contact-form-wrap > p { margin-bottom: 28px; color: var(--muted); font-size: .86rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label, .fieldset-label { color: var(--navy); font-size: .78rem; font-weight: 700; }
.required { color: var(--maroon); }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; border: 1px solid var(--border); border-radius: 0; padding: 11px 13px; color: var(--text); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,154,59,.12); }
.radio-row { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-choice { margin: 0; border: 0; padding: 0; }
.radio-choice { display: flex; min-height: 46px; align-items: center; gap: 9px; border: 1px solid var(--border); padding: 9px 14px; cursor: pointer; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0; color: var(--muted); font-size: .79rem; }
.checkbox-field input { width: 17px; height: 17px; margin-top: 4px; accent-color: var(--maroon); }
.form-submit { width: 100%; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--maroon); font-size: .78rem; }

/* Footer and floating actions */
.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.72); background: #0b2033; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .85fr 1fr; gap: 60px; }
.footer-brand .brand-name { color: #fff; font-size: 1.8rem; }
.footer-brand .brand-tag { color: rgba(255,255,255,.55); }
.footer-brand p { max-width: 330px; margin-top: 22px; font-size: .82rem; }
.footer-title { margin-bottom: 20px; color: #efd48f; font-family: 'Inter', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; font-size: .82rem; }
.footer-links a:hover { color: #fff; }
.footer-contact a { display: block; margin-bottom: 8px; color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; }
.footer-contact .btn { margin-top: 15px; color: var(--navy); font-family: 'Inter', sans-serif; font-size: .78rem; }
.footer-disclaimer { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .68rem; line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; color: rgba(255,255,255,.45); font-size: .68rem; }
.floating-whatsapp { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: inline-flex; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 50%; color: #fff; background: #167c49; box-shadow: 0 12px 30px rgba(22,124,73,.28); transition: transform .25s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.floating-whatsapp svg { width: 26px; }
.mobile-cta { display: none; }
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
