/* ==========================================================================
   Cake Workshop — Southampton
   Classic patisserie warmth. Playfair Display + Karla. Cream / dusty rose / chocolate / gold.
   ========================================================================== */

:root {
  --ink: #3E2620;
  --brown: #5B3A2E;
  --brown-deep: #2E1B15;
  --rose: #D78F9C;
  --rose-deep: #B96579;
  --gold: #C9A25E;
  --gold-deep: #A9803F;
  --cream: #FAF3EA;
  --cream-2: #F3E6D6;
  --white: #FFFFFF;
  --rule: rgba(91, 58, 46, 0.15);
  --rule-dark: rgba(201, 162, 94, 0.3);
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: hidden; }
body {
  margin: 0;
  min-height: 100dvh;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--brown);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--brown);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 4px;
  font-weight: 600;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- Focus states ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

/* ---- Eyebrow / small labels ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--light { color: var(--gold); }
.eyebrow--light::before { background: var(--rose); }

.italic-accent { font-style: italic; font-weight: 500; color: var(--rose-deep); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
}
.btn--primary { background: var(--brown); color: var(--cream); }
.btn--primary:hover { background: var(--brown-deep); }
.btn--outline { border-color: var(--brown); color: var(--brown); }
.btn--outline:hover { border-color: var(--rose-deep); color: var(--rose-deep); background: rgba(215,143,156,0.08); }
.btn--outline-light { border-color: rgba(250,243,234,0.5); color: var(--cream); }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { min-height: 54px; padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform 200ms var(--ease), background-color 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease); }
  .btn:hover { transform: translateY(-2px); }
  .btn:active { transform: translateY(0) scale(0.98); }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brown);
}
.brand .mark { width: 42px; height: 42px; color: var(--rose-deep); flex-shrink: 0; }
.brand small { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.15rem; }

.main-nav { display: flex; align-items: center; gap: 2.1rem; }
.main-nav ul { display: flex; gap: 2.1rem; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brown);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--rose-deep); border-color: var(--rose); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9rem; color: var(--brown); }
.header-phone svg { width: 18px; height: 18px; color: var(--rose-deep); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 76px 0 0 0; background: var(--cream); flex-direction: column; align-items: stretch; padding: 2rem var(--gutter); gap: 2rem; transform: translateX(100%); visibility: hidden; overflow-y: auto; z-index: 90; }
  .main-nav ul { flex-direction: column; gap: 1.5rem; }
  .main-nav a { font-size: 1.2rem; }
  .main-nav.open { transform: translateX(0); visibility: visible; }
  @media (prefers-reduced-motion: no-preference) {
    .main-nav { transition: transform 320ms var(--ease); }
  }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
}
@media (max-width: 480px) {
  .brand { font-size: 1rem; gap: 0.5rem; }
  .brand .mark { width: 34px; height: 34px; }
  .site-header .container { gap: 0.75rem; padding-inline: 1rem; min-height: 72px; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 90dvh;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 6rem var(--gutter) 5rem;
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  color: var(--brown);
}
.hero-copy .lede {
  max-width: 36ch;
  font-size: 1.15rem;
  color: var(--ink);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin-top: 0.6rem; }
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--brown); }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }

.hero-media { position: relative; overflow: hidden; background: var(--cream-2); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250,243,234,0.5), rgba(250,243,234,0) 22%);
}

.hero-badge {
  position: absolute;
  left: var(--gutter);
  bottom: 2.25rem;
  z-index: 3;
  width: 118px;
  height: 118px;
  filter: drop-shadow(0 6px 14px rgba(46, 27, 21, 0.22));
}

/* Hero load-in animation */
.hero-el { opacity: 1; transform: none; }
.js .hero-el { opacity: 0; transform: translateY(18px); }
.js .hero-loaded .hero-el { opacity: 1; transform: none; }
.hero-el:nth-child(1) { transition-delay: 0ms; }
.hero-el:nth-child(2) { transition-delay: 80ms; }
.hero-el:nth-child(3) { transition-delay: 160ms; }
.hero-el:nth-child(4) { transition-delay: 240ms; }
.hero-el:nth-child(5) { transition-delay: 300ms; }
@media (prefers-reduced-motion: no-preference) {
  .js .hero-el { transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 52vh; order: -1; }
  .hero-media::after { background: linear-gradient(180deg, rgba(250,243,234,0) 60%, rgba(250,243,234,0.5) 100%); }
  .hero-copy { padding: 3rem var(--gutter) 3.5rem; }
  .hero-badge { width: 92px; height: 92px; left: 1rem; bottom: -46px; }
}

/* ---- Scalloped divider ---- */
.scallop { display: block; width: 100%; height: 22px; margin: 0; }
.scallop--cream { color: var(--cream); }
.scallop--cream2 { color: var(--cream-2); }
.scallop--brown { color: var(--brown-deep); }
.scallop--flip { transform: scaleY(-1); }

/* ---- Sections / reveal ---- */
section { padding: 6rem 0; }
.section-head { max-width: 46rem; margin-bottom: 3.25rem; display: flex; flex-direction: column; gap: 1rem; }
.section-head.center { margin-inline: auto; text-align: center; align-items: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
.section-head p { color: var(--ink); font-size: 1.05rem; max-width: 42ch; }
.section-head.center p { max-width: 44ch; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
}

.rule { border: 0; height: 1px; background: var(--rule); margin: 0; }

/* ---- Trio: what we do ---- */
.trio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.trio-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.trio-card .icon-wrap {
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--rose-deep);
}
.trio-card .icon-wrap svg { width: 30px; height: 30px; }
.trio-card h3 { font-size: 1.35rem; }
.trio-card p { color: var(--ink); font-size: 0.96rem; }
.trio-card .card-link { margin-top: auto; font-weight: 700; font-size: 0.88rem; color: var(--rose-deep); display: inline-flex; align-items: center; gap: 0.4rem; }
@media (prefers-reduced-motion: no-preference) {
  .trio-card { transition: transform 220ms var(--ease), box-shadow 220ms var(--ease); }
}
.trio-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -20px rgba(46,27,21,0.3); }

@media (max-width: 900px) {
  .trio-grid { grid-template-columns: 1fr; }
}

/* ---- Heritage strip (dark) ---- */
.heritage-strip { background: var(--brown-deep); color: var(--cream); position: relative; }
.heritage-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.heritage-figure { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.heritage-figure .big { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(4rem, 9vw, 7rem); color: var(--gold); line-height: 1; }
.heritage-figure .label { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); font-weight: 700; }
.heritage-copy p { color: rgba(250,243,234,0.82); font-size: 1.08rem; max-width: 50ch; }
.heritage-copy p + p { margin-top: 1rem; }
.heritage-stats { display: flex; flex-wrap: wrap; gap: clamp(1.75rem, 4vw, 3rem); margin-top: 2rem; }
.heritage-stats dt { font-family: var(--font-display); font-size: 1.75rem; color: var(--gold); }
.heritage-stats dd { margin: 0.2rem 0 0; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(250,243,234,0.7); }

@media (max-width: 900px) {
  .heritage-inner { grid-template-columns: 1fr; }
}

/* ---- Gallery band ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 0.85rem; }
.gallery-grid a, .gallery-grid .g-item { display: block; overflow: hidden; background: var(--cream-2); position: relative; border-radius: 14px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .gallery-grid img { transition: transform 300ms var(--ease); }
}
.gallery-grid a:hover img { transform: scale(1.02); }
.gallery-grid .tall { grid-row: span 2; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}

/* ---- Reviews ---- */
.reviews-band { background: var(--cream-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gutter); }
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.review-card .stars { color: var(--gold-deep); font-size: 1rem; letter-spacing: 0.15em; }
.review-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--brown); }
.review-card cite { font-style: normal; font-size: 0.85rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 0.5rem; }
.review-card .flag { color: var(--rose-deep); border: 1px dashed var(--rose-deep); padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; }
.reviews-note { margin-top: 2.5rem; text-align: center; max-width: 42rem; margin-inline: auto; color: var(--ink); font-size: 0.95rem; }
.reviews-note a { color: var(--rose-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 780px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---- Find us / hours ---- */
.find-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: stretch; }
.find-us-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 2.5rem;
}
.find-us-card h3 { font-size: 1.3rem; margin-bottom: 1.25rem; }
.info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.info-list .row { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .icon { width: 1.4rem; height: 1.4rem; color: var(--rose-deep); flex-shrink: 0; margin-top: 0.15rem; }
.info-list h4 { font-size: 0.98rem; margin-bottom: 0.2rem; color: var(--brown); }
.info-list p, .info-list a { color: var(--ink); font-size: 0.94rem; }
.info-list a { font-weight: 700; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.25rem; }
.hours-table td { padding: 0.35rem 0; font-size: 0.92rem; color: var(--ink); border-bottom: 1px dashed var(--rule); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.flag-inline { color: var(--rose-deep); border: 1px dashed var(--rose-deep); padding: 0.15rem 0.55rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700; }

.map-placeholder {
  border-radius: 20px;
  border: 1px dashed var(--gold-deep);
  background: repeating-linear-gradient(135deg, var(--cream-2), var(--cream-2) 10px, var(--cream) 10px, var(--cream) 20px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem;
  text-align: center;
  color: var(--brown);
}
.map-placeholder svg { width: 44px; height: 44px; color: var(--rose-deep); }
.map-placeholder strong { font-family: var(--font-display); font-size: 1.15rem; }
.map-placeholder span { font-size: 0.85rem; color: var(--ink); }

@media (max-width: 860px) {
  .find-us-grid { grid-template-columns: 1fr; }
}

/* ---- Page hero (interior pages, website only) ---- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,27,21,0.15) 0%, rgba(46,27,21,0.72) 100%);
  z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; padding-bottom: 3.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.page-hero-inner h1 { color: var(--cream); font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero-inner .eyebrow { color: var(--gold); }
.page-hero-inner .eyebrow::before { background: var(--rose); }
.page-hero-inner p.lede { color: rgba(250,243,234,0.88); max-width: 46ch; font-size: 1.05rem; }

/* ---- Feature grid (two-col image + text, cakes/about pages) ---- */
.feature-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature-grid.reverse { grid-template-columns: 1.05fr 0.95fr; }
.feature-grid.reverse .feature-media { order: 2; }
.feature-media { border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; background: var(--cream-2); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy .pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.feature-copy .pill-list li { background: var(--cream-2); color: var(--brown); font-size: 0.85rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 999px; }
.feature-copy p { color: var(--ink); font-size: 1.03rem; }
.feature-copy p + p { margin-top: 1rem; }

@media (max-width: 900px) {
  .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; }
  .feature-grid.reverse .feature-media { order: 0; }
  .feature-media { aspect-ratio: 16/10; }
}

.section--alt { background: var(--cream-2); }

/* ---- Classes / workshop invitation styling ---- */
.invite-card {
  position: relative;
  background: var(--white);
  border-radius: 26px;
  padding: clamp(2rem, 5vw, 3.75rem);
  border: 1.5px solid var(--gold);
  outline: 1px solid var(--rule);
  outline-offset: -10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.invite-card .corner { position: absolute; width: 26px; height: 26px; color: var(--gold); }
.invite-card .corner--tl { top: 14px; left: 14px; }
.invite-card .corner--tr { top: 14px; right: 14px; transform: scaleX(-1); }
.invite-card .corner--bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.invite-card .corner--br { bottom: 14px; right: 14px; transform: scale(-1); }
.invite-card .eyebrow { justify-content: center; }
.invite-card h2, .invite-card h3 { max-width: 32ch; }
.invite-card .invite-rule { width: 3.5rem; height: 2px; background: var(--rose); }
.invite-card p { max-width: 44ch; color: var(--ink); }

.class-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); margin-top: 3.25rem; }
.class-type-card { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.75rem; border-radius: 18px; background: var(--cream-2); }
.class-type-card .icon-wrap { width: 48px; height: 48px; border-radius: 999px; background: var(--white); color: var(--rose-deep); display: inline-flex; align-items: center; justify-content: center; }
.class-type-card .icon-wrap svg { width: 24px; height: 24px; }
.class-type-card h4 { font-size: 1.1rem; color: var(--brown); }
.class-type-card p { font-size: 0.92rem; color: var(--ink); }

@media (max-width: 900px) { .class-types-grid { grid-template-columns: 1fr; } }

.booking-strip {
  background: var(--brown-deep);
  color: var(--cream);
  border-radius: 26px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.booking-strip h3 { color: var(--cream); font-size: 1.6rem; max-width: 26ch; }
.booking-strip p { color: rgba(250,243,234,0.82); margin-top: 0.5rem; max-width: 34ch; }
.booking-strip .booking-cta { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }

/* ---- Stat row (about page) ---- */
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.75rem, 4vw, 3.25rem); margin-top: 2.25rem; }
.stat dt { font-family: var(--font-display); font-size: 2.1rem; color: var(--rose-deep); font-style: italic; }
.stat dd { margin: 0.2rem 0 0; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }

/* ---- Timeline (about page) ---- */
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid var(--rule); }
.timeline-item:first-child { border-top: none; }
.timeline-item .year { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--rose-deep); }
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.94rem; color: var(--ink); }

@media (max-width: 560px) {
  .timeline-item { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--rule); border-radius: 20px; padding: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-card .icon-wrap { width: 52px; height: 52px; border-radius: 999px; background: var(--cream-2); color: var(--rose-deep); display: inline-flex; align-items: center; justify-content: center; }
.contact-card .icon-wrap svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1.2rem; }
.contact-card p { color: var(--ink); font-size: 0.95rem; }

@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- CTA band ---- */
.cta-band { background: var(--brown-deep); color: var(--cream); text-align: center; }
.cta-band-inner { max-width: 42rem; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 2.85rem); }
.cta-band p { color: rgba(250,243,234,0.82); font-size: 1.05rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 0.4rem; }

/* ---- Footer ---- */
.site-footer { background: var(--brown-deep); color: rgba(250,243,234,0.85); padding: 3.75rem 0 2.5rem; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); }
.footer-brand .mark { width: 32px; height: 32px; color: var(--gold); }
.footer-meta { color: rgba(250,243,234,0.68); font-size: 0.88rem; max-width: 28rem; line-height: 1.85; margin-top: 1rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { font-size: 0.92rem; color: rgba(250,243,234,0.78); }
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.92rem; }
.footer-contact a { color: rgba(250,243,234,0.78); font-weight: 600; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.footer-social .icon-link { color: rgba(250,243,234,0.78); }
.footer-social .icon-link:hover { color: var(--gold); }
.icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(250,243,234,0.25);
}
.icon-link svg { width: 19px; height: 19px; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,243,234,0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(250,243,234,0.55);
  letter-spacing: 0.02em;
}

/* ---- Call FAB (mobile) ---- */
.call-fab {
  display: none;
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(46,27,21,0.5);
}
.call-fab svg { width: 26px; height: 26px; }
@media (prefers-reduced-motion: no-preference) {
  .call-fab { transition: transform 200ms var(--ease); }
  .call-fab:active { transform: scale(0.94); }
}
@media (max-width: 720px) {
  .call-fab { display: inline-flex; }
}

/* ---- utility ---- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

@media (min-width: 901px) {
  .hero-copy { max-width: 620px; }
}
