/*
  Shy's Bite — image-first redesign (v2)
  Palette: ink #0A0A0A / cream #F4F1EA, amber #E2913F (dark), copper #A85F26 (light)
  Type: Cormorant Garamond (display), Allura (script accent), Jost (UI/body)
  Rhythm: dark hero -> cream about -> dark journey -> cream services -> dark gallery
          -> cream areas+faq -> dark contact + footer
*/

/* ---------- Tokens ---------- */
:root {
  --ink: #0A0A0A;
  --ink-raised: #141414;
  --cream: #F4F1EA;
  --cream-raised: #EFEBE1;
  --cream-line: #DED7C9;
  --amber: #E2913F;
  --amber-light: #F5C888;
  --copper: #A85F26;
  --on-dark: #EDEAE4;
  --on-dark-soft: #B9B3AA;
  --on-light: #1A1A18;
  --on-light-soft: #6B665F;
  --muted: #8A8A85;

  --font-display: 'Cormorant Garamond', serif;
  --font-script: 'Allura', cursive;
  --font-body: 'Jost', sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --focus-ring: 0 0 0 3px rgba(226, 145, 63, .55);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-light); }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--copper); color: var(--ink); }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 2px; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--amber); color: var(--ink);
  padding: .75rem 1.25rem; font-weight: 600;
  transition: top .22s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Layout ---------- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section-dark { background: var(--ink); color: var(--on-dark); }
.section-light { background: var(--cream); color: var(--on-light); }
.section-pad { padding: clamp(80px, 12vw, 164px) 0; }
.text-center { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  display: block;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--amber);
}
.section-light .eyebrow { color: var(--copper); }
.heading {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: .12em; text-transform: uppercase;
  color: #F3EFE8;
}
.section-light .heading { color: var(--on-light); }
.script { font-family: var(--font-script); font-size: clamp(22px, 2.2vw, 30px); color: #7A6A54; line-height: 1.3; }
.rule { width: 52px; height: 1px; background: var(--amber); margin: 24px 0 0; }
.section-light .rule { background: var(--copper); }
.rule--center { margin-left: auto; margin-right: auto; }
.body-copy { max-width: 58ch; font-weight: 300; font-size: 15.5px; line-height: 1.85; color: var(--on-dark-soft); }
.section-light .body-copy { color: var(--on-light-soft); }
.lede { font-size: clamp(16px, 1.1vw, 19px); font-weight: 300; color: var(--on-dark-soft); line-height: 1.75; max-width: 34ch; }
.section-light .lede { color: var(--on-light-soft); }

/* ---------- Buttons (rectangular, flat fill, invert on hover) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 46px; padding: 14px 40px;
  border-radius: 2px; border: 1px solid transparent;
  font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-solid { border-color: var(--amber); background: var(--amber); color: #140D06; }
.btn-solid:hover { background: transparent; color: var(--amber); }
.btn-ghost { padding: 14px 34px; font-weight: 500; border-color: rgba(237,234,228,.28); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.section-light .btn-solid { border-color: var(--copper); background: var(--copper); color: #FDF6EC; }
.section-light .btn-solid:hover { background: transparent; color: var(--copper); }
.section-light .btn-ghost { border-color: #C2B9A8; color: var(--on-light); }
.section-light .btn-ghost:hover { border-color: var(--copper); color: var(--copper); }
.btn .arrow { font-size: 12px; letter-spacing: 0; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto; z-index: 500;
  padding: 18px 0; background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .48s var(--ease), border-color .48s var(--ease), padding .48s var(--ease);
}
.navbar.is-scrolled {
  background: rgba(10,10,10,.93);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom-color: rgba(226,145,63,.28);
  padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; color: var(--on-dark); font-family: var(--font-display); font-size: clamp(20px, 1.1vw + 12px, 26px); white-space: nowrap; }
.brand img { height: clamp(46px, 3vw + 26px, 60px); width: auto; }
.brand-script { font-family: var(--font-script); color: var(--amber); font-size: 1.22em; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 30px); min-width: 0; }
.nav-links a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 10px 0;
  color: var(--on-dark); font-size: clamp(11px, .45vw + 8px, 13px);
  letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav-links a:hover { color: var(--amber); }
.nav-right { display: flex; align-items: center; gap: clamp(10px, 1.5vw, 22px); flex-shrink: 0; }
.nav-cta { min-height: 44px; padding: 13px 30px; }
.lang-toggle { display: flex; align-items: center; gap: 4px; font-size: 12px; letter-spacing: .08em; color: var(--muted); }
.lang-toggle button { min-height: 40px; padding: 8px 6px; color: var(--muted); }
.lang-toggle button[aria-pressed="true"] { color: var(--amber); font-weight: 600; }
.lang-toggle button:hover { color: var(--on-dark); }
.hamburger { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(226,145,63,.45); border-radius: 2px; color: var(--amber); font-size: 17px; }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 600; display: none; flex-direction: column; overflow: hidden; background: var(--ink); }
.mobile-menu.is-open { display: flex; }
.mobile-menu-inner {
  position: relative; z-index: 1; flex: 1; min-height: 0; overflow-y: auto;
  display: flex; flex-direction: column; align-items: center;
  justify-content: safe center; gap: 18px;
  padding: 84px var(--gutter) 36px;
}
.mobile-menu-glow { position: absolute; left: -20%; top: 10%; width: 70vw; height: 70vw; max-height: 70vh; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(226,145,63,.16) 0%, transparent 68%); }
.mobile-menu a:not(.btn) { font-family: var(--font-display); font-size: 30px; letter-spacing: .04em; color: #F3EFE8; }
.mobile-menu-close { position: absolute; top: 18px; right: var(--gutter); z-index: 2; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--amber); font-size: 22px; }
.mobile-lang { display: flex; gap: 18px; font-size: 13px; letter-spacing: .12em; color: var(--muted); }
.mobile-lang button[aria-pressed="true"] { color: var(--amber); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--ink); display: flex; align-items: stretch; }
.hero-glow {
  position: absolute; left: -6%; top: 14%; z-index: 0; pointer-events: none;
  width: 40vw; height: 40vw; max-width: 560px; max-height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(226,145,63,.16) 0%, rgba(226,145,63,.04) 46%, transparent 70%);
  filter: blur(16px);
  animation: ember 20s ease-in-out infinite;
}
@keyframes ember { 0%, 100% { transform: none; } 50% { transform: translate(18px, -24px) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .hero-glow { animation: none; } }
.hero-grid {
  position: relative; z-index: 2; width: 100%; max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: stretch; min-height: 100svh;
}
.hero-photo { position: relative; height: 100svh; min-height: 640px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,10,.85) 0%, transparent 26%, transparent 58%, rgba(10,10,10,.95) 100%),
    linear-gradient(0deg, rgba(10,10,10,.98) 0%, transparent 34%),
    linear-gradient(180deg, rgba(10,10,10,.7) 0%, transparent 22%);
}
.hero-copy {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; min-height: 100svh;
  padding: clamp(104px,15vh,150px) clamp(20px,5vw,80px) clamp(64px,9vh,130px) clamp(24px,3vw,56px);
}
.hero-hairline { width: 56px; height: 1px; margin-top: auto; margin-bottom: 26px; background: linear-gradient(90deg, var(--amber), rgba(226,145,63,0)); }
.hero-copy .eyebrow { letter-spacing: .34em; margin-bottom: 18px; }
.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(46px, 6.2vw, 104px); line-height: .98; letter-spacing: -.01em;
  margin-bottom: 22px; text-wrap: balance;
}
.hero-title span { display: block; color: #F3EFE8; }
.hero-title .is-italic { font-style: italic; }
.hero-title .is-amber {
  background: linear-gradient(180deg, var(--amber-light) 0%, var(--amber) 58%, var(--copper) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--amber);
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title .is-amber { -webkit-text-fill-color: currentColor; color: var(--amber); }
}
.hero-copy .lede { margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; z-index: 5; color: var(--amber); font-size: 15px; opacity: .75; animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; transform: translateX(-50%); } }

/* ---------- Split (about) ---------- */
.split { display: grid; gap: clamp(40px, 6vw, 88px); grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; }
.split .heading { margin-bottom: 0; }
.split .eyebrow { margin-bottom: 26px; }
.split .rule { margin: 28px 0 32px; }
.split .body-copy + .body-copy { margin-top: 20px; }
.split .btn { margin-top: 36px; }
.media-frame { position: relative; overflow: hidden; background: var(--cream-raised); aspect-ratio: 5 / 4; transition: transform .9s var(--ease); }
.section-dark .media-frame { background: var(--ink-raised); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame:hover { transform: scale(1.02); }

/* ---------- Journey (full-bleed photo) ---------- */
.photo-band { position: relative; overflow: hidden; display: flex; align-items: center; padding: clamp(80px,12vw,160px) 0; min-height: 88vh; }
.photo-band__media { position: absolute; inset: -12% 0; z-index: 0; }
.photo-band__media img { width: 100%; height: 100%; object-fit: cover; }
.photo-band__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.78) 42%, rgba(10,10,10,.35) 72%, rgba(10,10,10,.6) 100%);
}
.photo-band .container { position: relative; z-index: 2; }
.journey-inner { max-width: 640px; }
.journey-inner blockquote {
  margin: 30px 0; padding-left: clamp(16px, 2.5vw, 30px);
  border-left: 1px solid var(--amber);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(23px, 2.5vw, 34px); line-height: 1.45; color: #F3EFE8;
}
.journey-inner .body-copy { max-width: 62ch; color: #C4BEB4; }
.journey-inner .body-copy + .body-copy { margin-top: 18px; }
.signature { margin-top: 28px; font-family: var(--font-script); font-size: 34px; color: var(--amber); }

/* ---------- Services ---------- */
.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: clamp(44px, 6vw, 80px); }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .rule { margin: 24px 0 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); }
.service-card { position: relative; background: transparent; }
.service-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream-raised); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__body { padding: 26px 2px 0; }
.service-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 15px; letter-spacing: .22em; text-transform: uppercase; color: var(--on-light); }
.service-card .hair { width: 28px; height: 1px; background: #C9BFAE; margin: 16px 0; }
.service-card p { margin-bottom: 18px; font-size: 14.5px; font-weight: 300; line-height: 1.8; color: var(--on-light-soft); }
.service-card ul { display: flex; flex-direction: column; gap: 9px; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--on-light-soft); }
.service-card li { display: flex; align-items: center; gap: 12px; }
.service-card li::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }
.value-row {
  margin-top: clamp(52px, 7vw, 86px); padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--cream-line);
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 3.5vw, 52px);
}
.value-row span { display: flex; align-items: center; gap: 10px; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--on-light-soft); }
.value-row i { color: var(--copper); font-size: 11px; }

/* ---------- Gallery mosaic ---------- */
.gallery { padding: clamp(40px,6vw,80px) 0 clamp(80px,12vw,150px); }
.gallery-mosaic {
  padding: 0 clamp(12px, 2.5vw, 32px);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(120px, 13vw, 190px); gap: clamp(8px, 1vw, 14px);
}
.gallery-item { position: relative; overflow: hidden; background: var(--ink-raised); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item--feature { grid-column: span 2; grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item figcaption {
  position: absolute; right: 12px; bottom: 12px; pointer-events: none;
  padding: 7px 12px; background: rgba(10,10,10,.6);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  font-family: var(--font-display); font-size: 10.5px;
  letter-spacing: .24em; text-transform: uppercase; color: #F3EFE8;
}
.gallery-item--feature figcaption { right: 14px; bottom: 14px; padding: 8px 14px; font-size: 11.5px; letter-spacing: .26em; }

/* ---------- Areas (hairline row) ---------- */
.areas-row {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  background: var(--cream-line);
  border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line);
}
.area { background: var(--cream); padding: clamp(28px,3.5vw,44px) 18px; text-align: center; transition: background .32s var(--ease); }
.area:hover { background: var(--cream-raised); }
.area svg { width: 28px; height: 28px; margin: 0 auto 18px; display: block; color: var(--copper); }
.area span { font-family: var(--font-display); font-size: 14px; letter-spacing: .22em; text-transform: uppercase; color: var(--on-light); }
.areas-note { text-align: center; margin: clamp(28px,4vw,40px) auto 0; max-width: 58ch; font-size: 14.5px; font-weight: 300; line-height: 1.8; color: var(--on-light-soft); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(20px,3vw,40px) 0 clamp(80px,12vw,150px); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px,5vw,72px); align-items: start; }
.faq-aside { position: sticky; top: 120px; }
.faq-aside .heading { margin-bottom: 30px; line-height: 1.16; }
.faq-aside .media-frame { aspect-ratio: 4 / 3; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; font-family: var(--font-display); font-size: 19px; color: var(--on-light);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--copper); font-size: 12px; flex-shrink: 0; }
.faq-answer { padding: 0 0 26px; max-width: 66ch; font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--on-light-soft); }

/* ---------- Contact ---------- */
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(36px,5vw,72px); }
.contact-info .lede { margin-top: 22px; max-width: 36ch; color: var(--on-dark-soft); }
.contact-lines { margin-top: 32px; display: flex; flex-direction: column; }
.contact-line { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(226,145,63,.15); color: var(--on-dark); overflow-wrap: anywhere; }
.contact-line:hover { color: var(--amber); }
.contact-line i { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--amber); border-radius: 50%; color: var(--amber); flex-shrink: 0; }
.contact-form {
  background: rgba(20,20,20,.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.06); border-radius: 2px;
  padding: clamp(24px,3.5vw,44px);
}
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.form-field .req { color: var(--amber); margin-left: .2rem; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--ink); border: 1px solid rgba(255,255,255,.12); border-radius: 2px;
  padding: 14px 16px; color: var(--on-dark); font-size: 16px; min-height: 50px;
  transition: border-color .22s var(--ease);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input[type="date"] { color-scheme: dark; }
.form-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(70%) sepia(50%) saturate(500%) brightness(1.1); cursor: pointer; }
.form-field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.form-field input[type="number"]::-webkit-outer-spin-button,
.form-field input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: rgba(226,145,63,.4); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--amber); box-shadow: var(--focus-ring); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E2913F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px;
  padding-right: 2.5rem;
}
.form-field[data-invalid="true"] input,
.form-field[data-invalid="true"] select,
.form-field[data-invalid="true"] textarea { border-color: #C9633B; }
.field-error { font-size: .8rem; color: #E08A67; min-height: 1.1em; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-submit-row { margin-top: 26px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-status { font-size: 14px; color: var(--muted); }
.form-status[data-tone="error"] { color: #E08A67; }
.form-status[data-tone="success"] { color: var(--amber); }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success i { font-size: 2.5rem; color: var(--amber); margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: .75rem; }
.spinner-icon { animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner-icon { animation: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); border-top: 1px solid rgba(226,145,63,.15); padding: clamp(52px,7vw,80px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin-top: 16px; max-width: 32ch; font-size: 15px; font-weight: 300; color: var(--muted); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(226,145,63,.3); border-radius: 50%; color: var(--amber); }
.footer-social a:hover { background: rgba(226,145,63,.12); }
.footer-col h4 { margin-bottom: 16px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); }
.footer-col ul { display: flex; flex-direction: column; gap: 4px; }
.footer-col a, .footer-col address, .footer-col span { display: inline-block; padding: 6px 0; font-size: 15px; font-style: normal; color: var(--muted); overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--amber); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ---------- WhatsApp ---------- */
.whatsapp-float {
  position: fixed; right: clamp(16px,4vw,28px); bottom: clamp(16px,4vw,28px); z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-raised); border: 1px solid var(--amber); color: var(--amber); font-size: 24px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.7);
  transition: transform .22s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--ink-raised); border: 1px solid rgba(226,145,63,.3);
  padding: .5rem .9rem; font-size: .8rem; color: var(--on-dark);
  opacity: 0; pointer-events: none; transition: opacity .22s var(--ease);
}
@media (hover: hover) { .whatsapp-float:hover .tooltip { opacity: 1; } }

/* ---------- Reveal + parallax ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Legal pages ---------- */
.legal-hero { padding: clamp(112px,14vw,144px) 0 clamp(32px,5vw,48px); }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { margin-bottom: 1rem; color: var(--on-dark); font-weight: 300; }
.legal-content ul { padding-left: 1.25rem; list-style: disc; }
.legal-updated { margin-bottom: 2.5rem; font-size: .85rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1279px) {
  .split, .faq-grid, .contact-grid { gap: clamp(32px, 4vw, 56px); }
}
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: inline-flex; }

  .hero { display: block; min-height: 0; --heroPhotoH: max(430px, min(72svh, 600px)); }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { height: var(--heroPhotoH); min-height: 0; }
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(10,10,10,.72) 0%, transparent 26%, transparent 52%, rgba(10,10,10,.96) 100%);
  }
  .hero-copy { display: block; min-height: 0; padding: 0 clamp(20px,5vw,48px) clamp(56px,9vw,80px); margin-top: -34px; }
  .hero-glow, .scroll-cue { display: none; }

  .split, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .split > .media-frame { order: -1; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .areas-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(130px, 22vw, 200px); }
  .gallery-item, .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .gallery-item--feature { grid-column: span 2; grid-row: span 2; }
  .photo-band { min-height: 0; }
  .photo-band__scrim { background: linear-gradient(180deg, rgba(10,10,10,.9) 0%, rgba(10,10,10,.82) 50%, rgba(10,10,10,.94) 100%); }
  .faq-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-card__media { aspect-ratio: 16 / 10; }
  .form-grid { grid-template-columns: 1fr; }
  .areas-row { grid-template-columns: 1fr; gap: 0; background: transparent; border: none; }
  .area { display: flex; align-items: center; justify-content: flex-start; gap: 16px; text-align: left; padding: 20px 4px; border-bottom: 1px solid var(--cream-line); }
  .area:last-child { border-bottom: none; }
  .area svg { margin: 0; width: 22px; height: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: clamp(38px, 11vw, 56px); }
  .journey-inner blockquote { font-size: clamp(20px, 5.4vw, 26px); }
  .mobile-menu a:not(.btn) { font-size: 25px; }
}
@media (max-width: 520px) {
  .gallery-mosaic { grid-auto-rows: clamp(120px, 30vw, 170px); }
  .faq-item summary { font-size: 17px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}
