/* ============================================================
   Great Body Clinic — modern wellness aesthetic
   Palette: cream / sage / terracotta / ink
   ============================================================ */

:root {
  --cream: #efe3d2;
  --cream-soft: #f7eddc;
  --cream-pale: #faf6ed;
  --sage: #87977f;
  --sage-soft: #b3bfa9;
  --sage-pale: #dfe4d8;
  --terracotta: #c4856b;
  --terracotta-soft: #d9a187;
  --terracotta-dark: #a8694f;
  --ink: #2c2a26;
  --ink-soft: #524d45;
  --ink-mute: #8a8378;
  --line: rgba(44, 42, 38, 0.12);
  --line-soft: rgba(44, 42, 38, 0.06);

  --shadow-card: 0 1px 2px rgba(44,42,38,.04), 0 12px 28px -10px rgba(44,42,38,.10);
  --shadow-lift: 0 2px 4px rgba(44,42,38,.05), 0 24px 48px -14px rgba(44,42,38,.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 44px;

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
h2 em, h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(100% - var(--gutter)*2, var(--container)); margin: 0 auto; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 1px 2px rgba(168,105,79,.2), 0 8px 20px -6px rgba(168,105,79,.45);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(168,105,79,.25), 0 14px 28px -8px rgba(168,105,79,.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--cream-pale); border-color: var(--ink); }
.btn-link {
  background: transparent;
  color: var(--ink-soft);
  padding: 14px 0;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 6px;
}
.btn-link:hover { color: var(--terracotta); text-decoration-color: currentColor; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header[data-state="scrolled"] {
  background: rgba(247, 237, 220, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  color: var(--terracotta);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.brand-sub { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; }

.site-nav {
  display: flex; align-items: center; gap: 32px;
}
.site-nav a:not(.btn) {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; transition: transform .2s var(--ease), opacity .2s var(--ease); }

@media (max-width: 880px) {
  .site-nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column;
    background: var(--cream-soft);
    padding: 30px var(--gutter);
    gap: 18px;
    align-items: flex-start;
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    box-shadow: 0 14px 30px -16px rgba(44,42,38,.18);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a:not(.btn) { font-size: 22px; font-family: var(--font-display); color: var(--ink); }
  .nav-toggle { display: flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO — split layout with editorial image card
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(217, 161, 135, .25) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(179, 191, 169, .28) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.16 0 0 0 0 0.15 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: .55;
  pointer-events: none;
}
.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--terracotta-soft) 0%, transparent 70%);
  top: -180px; right: -120px;
}
.blob-2 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  bottom: -240px; left: -180px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}

.hero-content { position: relative; }
.hero-title {
  font-size: clamp(48px, 8.5vw, 104px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.028em;
  margin: 18px 0 28px;
  font-variation-settings: "opsz" 144;
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-meta {
  display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex; flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-meta span {
  font-size: 12px; color: var(--ink-mute);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
@media (max-width: 920px) { .hero-visual { justify-self: center; } }

.hero-visual-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50% 50% 44% 56% / 56% 44% 56% 44%;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(44,42,38,.04),
    0 40px 80px -30px rgba(44,42,38,.45),
    0 0 0 1px rgba(44,42,38,.04);
  isolation: isolate;
  animation: heroMorph 24s ease-in-out infinite;
}
.hero-visual-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.02);
}
@keyframes heroMorph {
  0%, 100% { border-radius: 50% 50% 44% 56% / 56% 44% 56% 44%; }
  33%      { border-radius: 56% 44% 56% 44% / 50% 56% 44% 50%; }
  66%      { border-radius: 44% 56% 50% 50% / 44% 50% 50% 56%; }
}

.hero-badge {
  position: absolute;
  bottom: 8%; left: -5%;
  width: 124px; height: 124px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream-pale);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lift);
  animation: badgeSpin 26s linear infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.hero-badge-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  fill: var(--terracotta-soft);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}
.hero-badge-core {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--terracotta-soft);
  animation: badgeSpin 26s linear infinite reverse;
}

.hero-quote {
  position: absolute;
  top: -8%; right: -8%;
  max-width: 240px;
  background: var(--cream-pale);
  padding: 18px 22px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  transform: rotate(2.5deg);
}
.hero-quote p {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 6px;
}
.hero-quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 920px) {
  .hero-badge { width: 100px; height: 100px; }
  .hero-badge-core { font-size: 18px; }
  .hero-quote { max-width: 210px; right: -4%; top: -6%; }
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1px solid var(--ink-mute);
  border-radius: 999px;
  display: flex; justify-content: center;
  z-index: 3;
}
.hero-scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--ink-soft);
  margin-top: 7px;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   SECTIONS — generic
   ============================================================ */
.section {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.section-head {
  max-width: 740px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2,
.grid-2 h2 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: 620px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.grid-2.reverse > div:first-child { order: 0; }
@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2.reverse > div:first-child { order: 2; }
}

/* ============================================================
   SECTION — OM
   ============================================================ */
.section-om {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.om-text .lead {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 18px 0 18px;
}
.om-text > h2 { margin-bottom: 0; }

.om-points {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.om-point {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.om-point svg {
  width: 28px; height: 28px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}
.om-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.om-point span {
  font-size: 15px;
  color: var(--ink-soft);
}

.om-image {
  position: relative;
}
.om-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.om-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.om-image:hover .om-image-frame img { transform: scale(1.04); }
.om-image-pill {
  position: absolute;
  bottom: 22px; left: 22px;
  background: var(--cream-pale);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  display: inline-flex; align-items: center; gap: 10px;
}
.om-image-pill::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ============================================================
   BEHANDLINGAR
   ============================================================ */
.section-behandlingar {
  background: var(--cream);
  position: relative;
}
.section-behandlingar::before {
  content: "";
  position: absolute; top: 80px; right: -150px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--sage-pale) 0%, transparent 70%);
  filter: blur(50px);
  opacity: .6;
  z-index: 0;
  pointer-events: none;
}
.section-behandlingar > .container { position: relative; z-index: 1; }

.treatment-group {
  margin-bottom: 64px;
}
.treatment-group:last-of-type { margin-bottom: 0; }
.group-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 8px;
}
.group-title span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sage);
  letter-spacing: .15em;
  font-weight: 500;
}
.group-desc {
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 28px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}

.card {
  background: var(--cream-pale);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line);
}
.card header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.card-duration {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}
.card-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}
.card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.card-warm {
  background: linear-gradient(135deg, var(--cream-pale) 0%, var(--cream-soft) 100%);
}
.card-feature {
  background: linear-gradient(135deg, #fbf3e6 0%, #f4e3cd 100%);
  border-color: rgba(196, 133, 107, .25);
}
.card-feature .card-price { color: var(--terracotta-dark); }
.card-flag {
  position: absolute;
  top: 14px; right: -32px;
  background: var(--terracotta);
  color: #fff;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(35deg);
  font-weight: 600;
}

.booking-band {
  margin-top: 80px;
  background: var(--ink);
  color: var(--cream-pale);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.booking-band h3 {
  color: var(--cream-pale);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  font-family: var(--font-display);
  margin: 8px 0 6px;
  line-height: 1.2;
}
.booking-band p { color: rgba(247, 237, 220, .7); font-size: 15px; }
.booking-band .eyebrow { color: var(--terracotta-soft); }
.booking-band .eyebrow::before { background: currentColor; }
.booking-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
}
.booking-band .btn-ghost {
  color: var(--cream-pale);
  border-color: rgba(247,237,220,.25);
}
.booking-band .btn-ghost:hover {
  background: rgba(247,237,220,.08);
  border-color: var(--cream-pale);
}
.booking-band .btn-link {
  color: rgba(247,237,220,.7);
  text-decoration-color: rgba(247,237,220,.2);
}
.booking-band .btn-link:hover { color: var(--terracotta-soft); }

@media (max-width: 720px) {
  .booking-band { grid-template-columns: 1fr; }
  .booking-actions { justify-content: flex-start; }
}

/* ============================================================
   ATMOSPHERE
   ============================================================ */
.atmosphere {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  isolation: isolate;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.atmosphere-image {
  position: absolute; inset: 0; z-index: -1;
}
.atmosphere-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  filter: saturate(.95) brightness(.78);
}
.atmosphere-image::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(44,42,38,.78) 0%, rgba(44,42,38,.35) 50%, rgba(44,42,38,.1) 100%),
    linear-gradient(180deg, transparent 0%, rgba(44,42,38,.20) 100%);
}
.atmosphere-quote {
  max-width: 720px;
  color: var(--cream-pale);
}
.atmosphere-quote blockquote {
  margin: 0;
}
.atmosphere-quote p {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.25;
  font-style: italic;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.atmosphere-quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
}

/* ============================================================
   BESÖKET
   ============================================================ */
.section-besoket {
  background: var(--cream-soft);
}
.visit-image {
  position: relative;
}
.visit-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
}
.visit-steps {
  display: flex; flex-direction: column; gap: 28px;
  margin: 30px 0;
}
.visit-steps li {
  display: flex; gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.visit-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.step-no {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--terracotta);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  min-width: 50px;
  line-height: 1;
}
.visit-steps h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  margin-bottom: 6px;
}
.visit-steps p { font-size: 15.5px; color: var(--ink-soft); }
.visit-extras {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 18px 22px;
  background: var(--cream-pale);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
}
.visit-extras strong { color: var(--ink); margin-right: 6px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.section-kontakt {
  background: var(--cream);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--cream-pale);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-soft);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  margin-bottom: 24px;
}
.contact-list {
  display: flex; flex-direction: column; gap: 22px;
  margin-bottom: 32px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  padding-top: 2px;
}
.contact-list a, .contact-list span {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.45;
}
.contact-list a:hover { color: var(--terracotta); }
.contact-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line-soft);
  background: var(--cream-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247,237,220,.75);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) auto;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,237,220,.08);
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand { display: flex; gap: 14px; align-items: center; color: var(--cream-pale); }
.footer-brand .brand-mark { color: var(--terracotta-soft); }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 22px; color: var(--cream-pale); }
.footer-brand .brand-sub { font-size: 11px; color: rgba(247,237,220,.5); letter-spacing: .14em; text-transform: uppercase; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(247,237,220,.7);
}
.footer-col a { color: rgba(247,237,220,.85); }
.footer-col a:hover { color: var(--cream-pale); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid rgba(247,237,220,.18);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.social-row a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.footer-base {
  padding: 22px 0 30px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(247,237,220,.5);
}
.footer-sign a { color: var(--terracotta-soft); }
.footer-sign a:hover { color: var(--cream-pale); }

/* ============================================================
   REVEAL ANIMATION — only when JS has marked the doc as ready
   ============================================================ */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal:not(.is-visible) { opacity: 1; transform: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { padding-top: 110px; }
  .hero-meta { gap: 22px; }
  .hero-meta strong { font-size: 24px; }
  .om-image-pill { bottom: 14px; left: 14px; }
}
