:root {
  --navy-950: #11183f;
  --navy-900: #182254;
  --navy-800: #202d68;
  --navy-700: #2d3d80;
  --gold-600: #b58a34;
  --gold-500: #caa052;
  --gold-400: #d8b56f;
  --gold-200: #eddbb6;
  --cream-100: #fbf8f1;
  --cream-200: #f4eee2;
  --cream-300: #ebe0cd;
  --ink: #20233a;
  --muted: #656879;
  --white: #ffffff;
  --line: rgba(24, 34, 84, .13);
  --shadow: 0 28px 70px rgba(23, 30, 70, .14);
  --shadow-soft: 0 16px 45px rgba(23, 30, 70, .1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.site-shell { overflow: clip; }
.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--cream-100); }
.section-tint { background: var(--cream-200); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 16px;
  transition: top .2s ease;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 241, .88);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 36px rgba(21, 28, 66, .07); }

.header-inner { min-height: 86px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 7px 20px rgba(24, 34, 84, .12); }
.brand span { display: flex; flex-direction: column; line-height: 1.22; }
.brand strong { color: var(--navy-800); font-family: var(--serif); font-size: 17px; font-weight: 600; }
.brand small { margin-top: 4px; color: var(--gold-600); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.main-nav a { position: relative; color: #52566d; font-size: 13px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold-500); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.main-nav a:hover { color: var(--navy-800); }

.menu-button { display: none; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--navy-800);
  border-radius: 999px;
  background: var(--navy-800);
  color: var(--white);
  cursor: pointer;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(32, 45, 104, .18);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.button:hover { transform: translateY(-2px); background: var(--navy-900); box-shadow: 0 18px 32px rgba(32, 45, 104, .24); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(202, 160, 82, .45); outline-offset: 4px; }
.button svg, .floating-whatsapp svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.button-small { min-height: 42px; padding: 9px 17px; font-size: 12px; }
.header-cta { margin-left: 4px; }
.button-ghost { border-color: rgba(32, 45, 104, .2); background: transparent; color: var(--navy-800); box-shadow: none; }
.button-ghost:hover { background: rgba(255, 255, 255, .7); }
.button-gold { border-color: var(--gold-500); background: var(--gold-500); color: var(--navy-950); box-shadow: 0 15px 32px rgba(202, 160, 82, .2); }
.button-gold:hover { background: var(--gold-400); }

.hero { position: relative; min-height: 720px; display: flex; align-items: center; padding: 76px 0 88px; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(rgba(32, 45, 104, .16) .7px, transparent .7px); background-size: 22px 22px; mask-image: linear-gradient(90deg, black, transparent 53%); }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.hero-orb-one { width: 360px; height: 360px; top: 5%; right: 5%; background: rgba(218, 181, 111, .16); }
.hero-orb-two { width: 260px; height: 260px; bottom: 2%; left: -110px; border: 1px solid rgba(202, 160, 82, .18); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.hero-copy { padding-top: 8px; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-700); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow i { width: 20px; height: 1px; background: var(--gold-500); }
.eyebrow-light { color: var(--gold-200); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-900); font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h1 { margin: 23px 0 24px; font-size: clamp(50px, 5.2vw, 77px); line-height: .99; }
h1 em, h2 em { color: var(--gold-600); font-weight: inherit; }
h2 { margin-bottom: 23px; font-size: clamp(39px, 4vw, 56px); line-height: 1.08; }
h3 { margin-bottom: 12px; font-size: 28px; line-height: 1.16; }

.hero-lead { max-width: 610px; margin-bottom: 30px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-lead strong, .section-copy strong { color: var(--navy-800); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 520px; margin: 42px 0 0; padding-top: 27px; border-top: 1px solid var(--line); }
.hero-stats div { position: relative; }
.hero-stats div + div { padding-left: 19px; border-left: 1px solid var(--line); }
.hero-stats dt { color: var(--navy-800); font-family: var(--serif); font-size: 30px; line-height: 1; }
.hero-stats dd { margin: 8px 0 0; color: #77798a; font-size: 9px; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }

.hero-visual { position: relative; padding: 14px 0 22px; }
.hero-image-wrap { position: relative; overflow: hidden; aspect-ratio: 1.18 / 1; border: 8px solid rgba(255, 255, 255, .78); border-radius: 48% 48% 28px 28px; background: var(--cream-200); box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(17, 24, 63, .12)); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-note { position: absolute; left: -34px; bottom: 0; display: flex; align-items: center; gap: 12px; width: min(310px, 70%); border: 1px solid rgba(32, 45, 104, .1); border-radius: 18px; background: rgba(255, 255, 255, .94); padding: 14px 17px; box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.note-symbol { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--cream-200); color: var(--gold-600); font-family: var(--serif); font-size: 23px; }
.hero-note span:last-child { display: flex; flex-direction: column; }
.hero-note strong { color: var(--navy-800); font-family: var(--serif); font-size: 15px; }
.hero-note small { color: var(--muted); font-size: 11px; }
.hero-seal { position: absolute; top: 6%; right: -25px; display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid rgba(255, 255, 255, .7); border-radius: 50%; background: var(--navy-800); color: var(--gold-300, #e3c88f); font-family: var(--serif); font-size: 32px; box-shadow: 0 16px 32px rgba(24, 34, 84, .22); }

.trust-bar { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .66); }
.trust-list { display: flex; align-items: center; justify-content: center; gap: 34px; min-height: 72px; }
.trust-list > span { display: flex; align-items: center; gap: 8px; color: #595d71; font-size: 12px; font-weight: 600; white-space: nowrap; }
.check-icon { display: inline-grid; flex: 0 0 19px; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: rgba(202, 160, 82, .17); color: var(--gold-600); font-size: 11px; font-weight: 900; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; align-items: center; }
.about-visual { position: relative; padding: 20px 25px 28px 18px; }
.about-visual::before { content: ""; position: absolute; inset: 0 52px 0 0; border: 1px solid rgba(202, 160, 82, .34); border-radius: 220px 220px 28px 28px; transform: rotate(-3deg); }
.about-image-frame { position: relative; z-index: 1; overflow: hidden; aspect-ratio: .74 / 1; border-radius: 220px 220px 26px 26px; box-shadow: var(--shadow); }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-logo { position: absolute; z-index: 2; top: 42px; right: -20px; width: 125px; height: 125px; border: 6px solid var(--cream-100); border-radius: 50%; box-shadow: var(--shadow-soft); }
.about-caption { position: absolute; z-index: 3; right: -20px; bottom: 58px; display: flex; flex-direction: column; width: 235px; border-radius: 15px; background: var(--navy-800); color: var(--white); padding: 14px 18px; box-shadow: var(--shadow-soft); }
.about-caption span { color: var(--gold-400); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.about-caption strong { margin-top: 2px; font-family: var(--serif); font-size: 14px; font-weight: 500; }

.section-copy { max-width: 620px; }
.section-copy h2 { margin-top: 17px; }
.section-copy p { color: var(--muted); font-size: 16px; }
.feature-list { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: #3d4258; font-size: 14px; }
.feature-list .check-icon { margin-top: 3px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-800); font-size: 13px; font-weight: 800; }
.text-link span { color: var(--gold-600); font-size: 20px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.section-heading { max-width: 700px; }
.section-heading h2 { margin-top: 17px; }
.section-heading > p, .method-heading > p, .testimonial-heading > p, .faq-intro > p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 50px; }
.service-card { overflow: hidden; border: 1px solid rgba(32, 45, 104, .09); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .83); box-shadow: 0 14px 45px rgba(26, 34, 74, .07); transition: transform .35s ease, box-shadow .35s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.service-image { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(17, 24, 63, .28)); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-image > span { position: absolute; z-index: 2; right: 22px; bottom: 18px; color: rgba(255, 255, 255, .92); font-family: var(--serif); font-size: 40px; line-height: 1; }
.service-content { padding: 31px 34px 34px; }
.service-kicker { color: var(--gold-600); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.service-content h3 { margin-top: 7px; }
.service-content p { color: var(--muted); font-size: 14px; }
.service-content ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-content li { display: flex; align-items: center; gap: 7px; color: #4e5266; font-size: 11px; font-weight: 600; }
.service-content .check-icon { width: 17px; height: 17px; flex-basis: 17px; font-size: 9px; }

.method-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.method-heading h2 { max-width: 690px; margin: 17px 0 0; }
.method-heading > p { margin-bottom: 8px; }
.method-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 60px 0 0; padding: 0; list-style: none; }
.method-list::before { content: ""; position: absolute; top: 35px; left: 7%; right: 7%; height: 1px; background: linear-gradient(90deg, transparent, rgba(202, 160, 82, .65), transparent); }
.method-list li { position: relative; min-height: 270px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 255, 255, .56); padding: 29px 25px; transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.method-list li:hover { transform: translateY(-5px); border-color: rgba(202, 160, 82, .48); background: var(--white); }
.method-number { position: absolute; top: 22px; right: 22px; color: var(--gold-500); font-family: var(--serif); font-size: 13px; }
.method-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(202, 160, 82, .25); border-radius: 50%; background: var(--cream-200); color: var(--navy-700); font-family: var(--serif); font-size: 24px; }
.method-list h3 { margin-top: 30px; font-size: 23px; }
.method-list p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.office-band { position: relative; overflow: hidden; background: var(--navy-900); color: var(--white); padding: 92px 0; }
.office-band::after { content: ""; position: absolute; right: -160px; top: -180px; width: 460px; height: 460px; border: 1px solid rgba(216, 181, 111, .16); border-radius: 50%; }
.office-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: 80px; align-items: center; }
.office-photo { position: relative; overflow: hidden; aspect-ratio: 16 / 10; border: 6px solid rgba(255, 255, 255, .09); border-radius: 26px; box-shadow: 0 30px 65px rgba(5, 8, 30, .3); }
.office-photo img { width: 100%; height: 100%; object-fit: cover; }
.office-photo span { position: absolute; left: 20px; bottom: 18px; border-radius: 999px; background: rgba(17, 24, 63, .78); padding: 8px 13px; color: var(--gold-200); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(8px); }
.office-copy h2 { margin-top: 17px; color: var(--white); }
.office-copy p { max-width: 470px; margin-bottom: 30px; color: rgba(255, 255, 255, .7); }

.testimonial-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 70px; align-items: end; }
.testimonial-heading .eyebrow { grid-column: 1 / -1; }
.testimonial-heading h2 { margin: -8px 0 0; }
.testimonial-heading > p { margin-bottom: 7px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; margin-top: 50px; align-items: stretch; }
.testimonial-card { position: relative; display: flex; min-height: 350px; flex-direction: column; margin: 0; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 255, 255, .58); padding: 35px 30px 28px; }
.testimonial-card.featured { background: var(--navy-800); color: var(--white); transform: translateY(-12px); box-shadow: var(--shadow-soft); }
.quote-mark { color: var(--gold-500); font-family: var(--serif); font-size: 62px; line-height: .7; }
.testimonial-card blockquote { margin: 28px 0 30px; color: #505468; font-family: var(--serif); font-size: 17px; line-height: 1.65; }
.testimonial-card.featured blockquote { color: rgba(255, 255, 255, .85); }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 19px; border-top: 1px solid var(--line); }
.testimonial-card.featured figcaption { border-color: rgba(255, 255, 255, .12); }
.testimonial-card figcaption > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--cream-200); color: var(--navy-800); font-family: var(--serif); font-size: 12px; }
.testimonial-card figcaption div { display: flex; flex-direction: column; }
.testimonial-card figcaption strong { color: var(--navy-800); font-family: var(--serif); font-size: 14px; }
.testimonial-card.featured figcaption strong { color: var(--white); }
.testimonial-card figcaption small { color: #7a7d8d; font-size: 9px; }
.testimonial-card.featured figcaption small { color: rgba(255, 255, 255, .6); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro h2 { margin-top: 17px; }
.faq-intro .text-link { margin-top: 10px; }
.accordion { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, .75); }
.accordion details + details { border-top: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; padding: 23px 27px; color: var(--navy-800); font-family: var(--serif); font-size: 17px; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--cream-200); color: var(--gold-600); font-family: var(--sans); font-size: 19px; transition: transform .25s ease, background .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); background: var(--navy-800); color: var(--white); }
.accordion details p { margin: -5px 65px 0 27px; padding-bottom: 25px; color: var(--muted); font-size: 13px; }

.contact { background: var(--cream-100); }
.contact-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; overflow: hidden; border-radius: 36px; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); padding: 66px 70px; box-shadow: var(--shadow); }
.contact-card::before { content: ""; position: absolute; left: -110px; bottom: -160px; width: 330px; height: 330px; border: 1px solid rgba(202, 160, 82, .22); border-radius: 50%; }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { margin-top: 17px; color: var(--white); }
.contact-copy > p { color: rgba(255, 255, 255, .68); }
.contact-info { display: grid; gap: 14px; margin: 34px 0 0; padding: 0; list-style: none; }
.contact-info li { display: flex; align-items: center; gap: 12px; }
.contact-info li > span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(216, 181, 111, .22); border-radius: 50%; color: var(--gold-400); }
.contact-info div { display: flex; flex-direction: column; }
.contact-info small { color: rgba(255, 255, 255, .5); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-info strong, .contact-info a { color: var(--white); font-family: var(--serif); font-size: 14px; font-weight: 500; }
.contact-info a:hover { color: var(--gold-300, #e5c98e); }

.contact-form { position: relative; z-index: 1; display: grid; gap: 17px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 24px; background: rgba(255, 255, 255, .97); padding: 31px; box-shadow: 0 25px 50px rgba(7, 10, 35, .26); }
.form-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 4px; }
.form-heading > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--cream-200); color: var(--gold-600); font-family: var(--serif); font-size: 21px; }
.form-heading div { display: flex; flex-direction: column; }
.form-heading strong { color: var(--navy-800); font-family: var(--serif); font-size: 16px; }
.form-heading small { color: var(--muted); font-size: 10px; }
.contact-form label { display: grid; gap: 6px; }
.contact-form label > span { color: #55596e; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(32, 45, 104, .14); border-radius: 12px; outline: 0; background: var(--cream-100); padding: 12px 14px; color: var(--ink); font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(202, 160, 82, .12); }
.contact-form textarea { resize: vertical; }
.contact-form .button { width: 100%; margin-top: 2px; }
.form-note { margin: -4px 0 0; color: #8a8c98; font-size: 9px; text-align: center; }

.site-footer { border-top: 1px solid var(--line); background: var(--cream-100); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; min-height: 130px; align-items: center; }
.footer-brand img { width: 47px; height: 47px; }
.footer-brand strong { font-size: 15px; }
.footer-grid nav { display: flex; gap: 25px; }
.footer-grid nav a { color: #676a7a; font-size: 11px; font-weight: 600; }
.footer-grid nav a:hover { color: var(--navy-800); }
.footer-grid > p { margin: 0; color: #858794; font-size: 9px; text-align: right; }

.floating-whatsapp { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 48px; border-radius: 999px; background: #237b54; color: var(--white); padding: 11px 17px; font-size: 11px; font-weight: 800; box-shadow: 0 15px 32px rgba(17, 61, 40, .28); transition: transform .25s ease, background .25s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #1d6b49; }

.js-enabled .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .65, .2, 1); }
.js-enabled .reveal.is-visible { opacity: 1; transform: none; }
.js-enabled .reveal-delay { transition-delay: .12s; }
.js-enabled .reveal-delay-one { transition-delay: .08s; }
.js-enabled .reveal-delay-two { transition-delay: .16s; }
.js-enabled .reveal-delay-three { transition-delay: .24s; }

@media (max-width: 1080px) {
  .header-inner { gap: 20px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 12px; }
  .header-cta { display: none; }
  .hero-grid { gap: 42px; }
  .about-grid { gap: 70px; }
  .about-logo { right: 0; }
  .about-caption { right: -5px; }
  .method-list { grid-template-columns: repeat(2, 1fr); }
  .method-list::before { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 34px, 680px); }
  .section { padding: 84px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 8px; }
  .menu-button { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 255, 255, .65); }
  .menu-button span { display: block; width: 18px; height: 1.5px; background: var(--navy-800); transition: transform .25s ease, opacity .25s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 76px 0 auto; display: grid; gap: 0; max-height: 0; overflow: hidden; border-bottom: 1px solid transparent; background: rgba(251, 248, 241, .98); opacity: 0; transform: translateY(-10px); transition: max-height .35s ease, opacity .25s ease, transform .25s ease; }
  .main-nav.is-open { max-height: 420px; border-color: var(--line); opacity: 1; transform: none; box-shadow: 0 18px 35px rgba(21, 28, 66, .1); }
  .main-nav a { padding: 16px 28px; border-top: 1px solid var(--line); font-size: 14px; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; padding: 64px 0 76px; }
  .hero-grid, .about-grid, .office-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin-inline: auto; }
  .hero-visual { width: min(100%, 620px); margin-inline: auto; }
  .hero-note { left: 3%; }
  .trust-list { flex-wrap: wrap; gap: 11px 22px; min-height: 90px; padding-block: 15px; }
  .about-grid { gap: 72px; }
  .about-visual { width: min(100%, 510px); margin-inline: auto; }
  .about-caption { right: 5px; }
  .service-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .service-grid { width: min(100%, 650px); margin-inline: auto; margin-top: 45px; }
  .method-heading, .testimonial-heading { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-heading .eyebrow { grid-column: auto; }
  .testimonial-heading h2 { margin-top: 8px; }
  .testimonial-card.featured { transform: none; }
  .testimonial-grid { width: min(100%, 620px); margin-inline: auto; margin-top: 42px; }
  .office-grid { gap: 44px; }
  .office-photo { order: 2; }
  .faq-grid { gap: 42px; }
  .contact-card { gap: 50px; padding: 54px 45px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; gap: 20px; padding: 34px 0; text-align: center; }
  .footer-grid > p { text-align: center; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(100% - 28px, 520px); }
  .section { padding: 72px 0; }
  .brand strong { font-size: 13px; }
  .brand small { letter-spacing: .1em; }
  h1 { font-size: clamp(43px, 13vw, 60px); }
  h2 { font-size: clamp(35px, 10vw, 46px); }
  .hero { padding-top: 49px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-stats { gap: 10px; }
  .hero-stats div + div { padding-left: 10px; }
  .hero-stats dt { font-size: 25px; }
  .hero-stats dd { font-size: 8px; }
  .hero-image-wrap { aspect-ratio: .92 / 1; border-radius: 180px 180px 22px 22px; }
  .hero-image-wrap img { object-position: 64% center; }
  .hero-note { left: 2%; bottom: -5px; width: 82%; }
  .hero-seal { top: 2%; right: -7px; width: 58px; height: 58px; font-size: 26px; }
  .trust-list { justify-content: flex-start; }
  .trust-list > span { width: calc(50% - 11px); white-space: normal; }
  .about-visual { padding-inline: 7px 22px; }
  .about-logo { top: 34px; width: 98px; height: 98px; }
  .about-caption { right: 3px; bottom: 47px; width: 205px; }
  .service-content { padding: 27px 24px 29px; }
  .method-list { grid-template-columns: 1fr; }
  .method-list li { min-height: 230px; }
  .office-band { padding: 72px 0; }
  .office-photo { aspect-ratio: 1.16 / 1; }
  .testimonial-card { min-height: 320px; padding-inline: 25px; }
  .accordion summary { padding: 20px; font-size: 16px; }
  .accordion details p { margin-right: 50px; margin-left: 20px; }
  .contact { padding-inline: 8px; }
  .contact-card { width: 100%; border-radius: 28px; padding: 45px 20px; }
  .contact-form { padding: 25px 20px; }
  .footer-grid nav { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
}

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