/* v4 components: header, hero, trust strip, services grid, steps band, office, FAQ, final CTA, footer, page header. */

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--line); }
.header-in { display: flex; align-items: center; gap: var(--s-16); min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: var(--s-12); text-decoration: none; color: var(--navy); font-weight: 700; font-size: var(--t-18); letter-spacing: -.01em; }
.brand img { width: 40px; height: 40px; }
.nav { display: none; align-items: center; gap: var(--s-24); margin-left: auto; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: var(--t-16); padding: var(--s-8) 0; border-bottom: 2px solid transparent; transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.nav a:hover, .nav a.active { color: var(--navy); border-bottom-color: var(--gold); }
.header-tools { display: flex; align-items: center; gap: var(--s-12); margin-left: auto; }
.nav + .header-tools { margin-left: 0; }
.lang { min-height: 44px; min-width: 44px; padding: 0 var(--s-12); border: 1px solid var(--line); border-radius: var(--r); font-weight: 700; font-size: var(--t-14); color: var(--navy); transition: border-color var(--dur) var(--ease); }
.lang:hover { border-color: var(--navy); }
.menu-btn { display: inline-flex; align-items: center; gap: var(--s-8); min-height: 44px; min-width: 44px; padding: 0 var(--s-12); border-radius: var(--r); font-weight: 700; color: var(--navy); }
.menu-btn .icon { width: 22px; height: 22px; color: var(--navy); }
.header-cta { display: none; }
@media (min-width: 900px) { .nav { display: flex; } .menu-btn { display: none; } .header-cta { display: inline-flex; } }
.drawer { display: none; background: var(--white); border-bottom: 1px solid var(--line); }
.drawer.open { display: block; }
.drawer a { display: block; padding: var(--s-16) 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 700; color: var(--navy); font-size: var(--t-18); }
.drawer .drawer-cta { margin: var(--s-16) 0 var(--s-24); }

/* ---------- hero: full-width photo, navy panel behind the text only ---------- */
.hero { position: relative; isolation: isolate; min-height: 560px; display: flex; align-items: center; background: var(--navy); }
.hero-photo { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-in { padding: var(--s-48) 0; }
@media (min-width: 768px) { .hero { min-height: 640px; } .hero-in { padding: var(--s-80) 0; } }
.hero-panel { max-width: 600px; padding: var(--s-32); border-radius: var(--r); background: rgba(15, 39, 66, .90); color: var(--white); box-shadow: var(--shadow); }
@media (min-width: 768px) { .hero-panel { padding: var(--s-40); } }
.hero-panel h1 { color: var(--white); }
.hero-panel .lead { margin-top: var(--s-16); color: rgba(255, 255, 255, .86); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-16) var(--s-24); margin-top: var(--s-24); }
.hero-tel { color: var(--white); font-size: var(--t-18); font-weight: 700; text-decoration: none; }
.hero-tel:hover { text-decoration: underline; text-underline-offset: 4px; }
.hero-addr { margin-top: var(--s-16); font-size: var(--t-14); color: rgba(255, 255, 255, .78); }

/* ---------- trust strip ---------- */
.trust { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-item { display: flex; gap: var(--s-12); align-items: flex-start; padding: var(--s-24) var(--s-16) var(--s-24) 0; }
.trust-item strong { display: block; color: var(--navy); font-size: var(--t-16); }
.trust-item span { display: block; color: var(--muted); font-size: var(--t-14); margin-top: 2px; }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } .trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: var(--s-24); } }
@media (max-width: 899px) { .trust-item:nth-child(even) { border-left: 1px solid var(--line); padding-left: var(--s-16); } .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* ---------- services: photo-led grid ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-32); }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc { display: flex; flex-direction: column; }
.svc-photo { aspect-ratio: 3 / 2; width: 100%; height: auto; object-fit: cover; border-radius: var(--r); background: var(--paper-2); }
.svc h3 { margin-top: var(--s-16); }
.svc .sub { color: var(--muted); font-size: var(--t-14); margin-top: 2px; }
.svc p { margin-top: var(--s-8); color: var(--ink); }
.svc ul { margin-top: var(--s-12); color: var(--muted); font-size: var(--t-14); display: grid; gap: var(--s-4); padding-left: var(--s-16); list-style: disc; }
.svc-link { margin-top: var(--s-12); display: inline-flex; align-items: center; gap: var(--s-8); font-weight: 700; color: var(--navy); text-decoration: none; }
.svc-link .icon { width: 18px; height: 18px; color: var(--gold); transition: transform var(--dur) var(--ease); }
.svc-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.svc-link:hover .icon { transform: translateX(4px); }
.pricing-line { margin-top: var(--s-32); color: var(--muted); font-size: var(--t-14); }

/* ---------- how it works: calm band ---------- */
.steps-band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: 1fr; gap: var(--s-24); margin-top: var(--s-32); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-32); } }
.step { display: flex; gap: var(--s-16); align-items: flex-start; }
.step-n { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--navy-900); font-weight: 700; font-size: var(--t-16); }
.step h3 { font-size: var(--t-18); }
.step p { margin-top: var(--s-4); color: var(--muted); }

/* ---------- the office ---------- */
.office { display: grid; grid-template-columns: 1fr; gap: var(--s-32); align-items: center; }
@media (min-width: 900px) { .office { grid-template-columns: 1.1fr 1fr; gap: var(--s-64); } }
.office-photo { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
.office-rows { margin-top: var(--s-24); display: grid; gap: var(--s-16); }
.office-row { display: flex; gap: var(--s-12); align-items: flex-start; }
.office-row .icon { width: 24px; height: 24px; margin-top: 2px; }
.office-row a { color: var(--navy); font-weight: 600; text-decoration: none; }
.office-row a:hover { text-decoration: underline; text-underline-offset: 4px; }
.office-row span { color: var(--muted); }
.office-actions { display: flex; flex-wrap: wrap; gap: var(--s-12); margin-top: var(--s-24); }
.team-list { margin-top: var(--s-32); padding-top: var(--s-24); border-top: 1px solid var(--line); }
.team-list h3 { font-size: var(--t-18); margin-bottom: var(--s-12); }
.team-list li { display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-12); padding: var(--s-8) 0; border-bottom: 1px solid var(--line); }
.team-list li strong { color: var(--navy); }
.team-list li span { color: var(--muted); font-size: var(--t-14); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--s-16); padding: var(--s-16) 0; cursor: pointer; font-weight: 700; color: var(--navy); font-size: var(--t-18); min-height: var(--tap); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .icon { width: 20px; height: 20px; color: var(--gold); transition: transform var(--dur) var(--ease); }
.qa[open] summary .icon { transform: rotate(45deg); }
.qa .answer { padding: 0 0 var(--s-16); color: var(--ink); max-width: 44em; }

/* ---------- final booking area ---------- */
.final { background: var(--gold-tint); border-top: 1px solid var(--line); }
.final-in { text-align: center; max-width: 640px; margin-inline: auto; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--s-16) var(--s-24); margin-top: var(--s-24); }
.final .tel-link { font-size: var(--t-20); color: var(--navy); }

/* ---------- footer ---------- */
.site-footer { padding: var(--s-48) 0 var(--s-24); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-32); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: var(--s-40); } }
.footer-brand { display: flex; align-items: center; gap: var(--s-12); font-weight: 700; font-size: var(--t-18); margin-bottom: var(--s-12); }
.footer-brand img { width: 40px; height: 40px; }
.site-footer h4 { color: var(--white); font-size: var(--t-14); letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--s-12); }
.site-footer li { padding: var(--s-4) 0; }
.site-footer a { color: rgba(255, 255, 255, .84); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.site-footer p { color: rgba(255, 255, 255, .78); font-size: var(--t-14); line-height: 1.6; }
.footer-bottom { margin-top: var(--s-32); padding-top: var(--s-16); border-top: 1px solid rgba(255, 255, 255, .16); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-12); font-size: var(--t-14); color: rgba(255, 255, 255, .7); }
.lang-words { display: inline-flex; align-items: center; gap: var(--s-8); }
.lang-words button { color: rgba(255, 255, 255, .7); font-weight: 600; min-height: 44px; padding: 0 var(--s-4); }
.lang-words button[aria-pressed="true"] { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- inner page header ---------- */
.page-head { padding: var(--s-40) 0; }
@media (min-width: 768px) { .page-head { padding: var(--s-64) 0; } }
.page-head .lead { margin-top: var(--s-12); max-width: 36em; }
.page-end { padding: var(--s-32) 0 var(--s-64); }
.back { display: inline-flex; gap: var(--s-8); align-items: center; color: var(--navy); font-weight: 600; text-decoration: none; margin-top: var(--s-24); }
.back:hover { text-decoration: underline; text-underline-offset: 4px; }
.story { display: grid; gap: var(--s-16); max-width: 44em; font-size: var(--fs-lead); line-height: 1.55; color: var(--ink); }
