/* ============================================================
   FOUND & FORMED — DESIGN SYSTEM + STYLESHEET
   ============================================================
   Fonts:    Cormorant Garamond (display/body serif)
             Caveat (script/handwritten accents)
             DM Sans (UI labels, captions)
   Colors:   --olive    #8e8151  primary accent / CTAs
             --brown    #5c4a45  text / headings
             --blue     #a5bbc6  secondary accent
             --parch    #dddad1  borders / soft surfaces
             --cream    #f5f2eb  page canvas
             --cream-2  #ede9e0  section contrast
             --white    #faf9f6  card surfaces
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
details > summary { cursor: pointer; list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --olive:        #8e8151;
  --olive-light:  #b0a472;
  --olive-dark:   #6b6038;
  --brown:        #5c4a45;
  --brown-light:  #7a6560;
  --blue:         #a5bbc6;
  --blue-light:   #c8d8e0;
  --parch:        #dddad1;
  --parch-light:  #eceae3;
  --cream:        #f5f2eb;
  --cream-2:      #ede9e0;
  --white:        #faf9f6;

  /* Text */
  --text-primary:   #3a2e2b;
  --text-secondary: #6b5e59;
  --text-muted:     #9a8e89;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-script: 'Caveat', cursive;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  /* Spacing Scale (8px base) */
  --space-1:  0.5rem;   /*  8px */
  --space-2:  1rem;     /* 16px */
  --space-3:  1.5rem;   /* 24px */
  --space-4:  2rem;     /* 32px */
  --space-5:  3rem;     /* 48px */
  --space-6:  4rem;     /* 64px */
  --space-7:  6rem;     /* 96px */
  --space-8:  8rem;     /* 128px */

  /* Borders */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --border:     1px solid var(--parch);
  --border-soft: 1px solid var(--parch-light);

  /* Transitions */
  --ease: 0.25s ease;
  --ease-slow: 0.4s ease;

  /* Container */
  --container: 1140px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
}

/* ── BASE TYPOGRAPHY ────────────────────────────────────── */
body {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 400; }

p { margin-bottom: var(--space-2); }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }
strong { font-weight: 500; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── SECTION LABELS ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--space-2);
}

.section-heading {
  margin-bottom: var(--space-3);
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: var(--space-5);
}

.text-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--olive);
  border-bottom: 1px solid var(--olive-light);
  padding-bottom: 1px;
  transition: color var(--ease), border-color var(--ease);
}
.text-link:hover { color: var(--olive-dark); border-color: var(--olive-dark); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--olive);
  color: var(--white);
  border: 1.5px solid var(--olive);
}
.btn-primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); }

.btn-ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--parch);
}
.btn-ghost:hover { border-color: var(--olive); color: var(--olive); }

.btn-outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}
.btn-outline:hover { background: var(--olive); color: var(--white); }

.btn-full { width: 100%; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

/* ── MOSAIC BORDER PATTERN ──────────────────────────────── */
.mosaic-border {
  height: 14px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--blue)      0px,  var(--blue)      14px,
    var(--parch)     14px, var(--parch)     28px,
    var(--olive)     28px, var(--olive)     42px,
    var(--cream-2)   42px, var(--cream-2)   56px,
    var(--brown)     56px, var(--brown)     70px,
    var(--parch)     70px, var(--parch)     84px
  );
  background-size: 84px 14px;
  opacity: 0.65;
}

.mosaic-border--top    { margin-bottom: var(--space-6); }
.mosaic-border--section { margin-block: var(--space-6); }
.mosaic-border--footer  { margin-bottom: var(--space-4); }

/* ── FORMS ──────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-2);
}
.form-group label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: lowercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6875rem 0.875rem;
  color: var(--text-primary);
  transition: border-color var(--ease);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--olive); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a8e89' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.5rem; }

.form-title {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: var(--space-3);
}
.form-note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-1);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-5) var(--space-3);
}
.form-success.visible { display: block; }
.form-success p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: var(--space-1);
}

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-item {
  border-bottom: var(--border-soft);
  padding-block: var(--space-2);
}
.faq-item summary {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--olive);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-top: var(--space-1);
  padding-left: 0;
}

/* ── LOGO ───────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--olive);
}
.logo-amp {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--blue);
  font-style: italic;
  margin-inline: 1px;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: var(--border-soft);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(92,74,69,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  height: 68px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--olive);
  transition: width var(--ease);
}
.main-nav a:hover { color: var(--olive); }
.main-nav a:hover::after { width: 100%; }

.btn-nav-cta { padding: 0.5rem 1.25rem; font-size: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--brown);
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 68px; right: 0;
  width: min(320px, 85vw);
  height: calc(100vh - 68px);
  background: var(--white);
  border-left: var(--border);
  padding: var(--space-5) var(--space-4);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 99;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--space-3); }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brown);
  display: block;
  padding-bottom: var(--space-2);
  border-bottom: var(--border-soft);
}
.mobile-nav a:hover { color: var(--olive); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,46,43,0.25);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-slow);
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background-color: var(--cream);
  padding-bottom: var(--space-8);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  padding-top: var(--space-7);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: var(--space-2);
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: var(--space-3);
}
.hero-headline em { color: var(--olive); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: var(--space-4);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* Hero image stack */
.hero-image-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-2);
}
.hero-img {
  border-radius: var(--radius-lg);
  background-color: var(--parch);
  background-size: cover;
  background-position: center;
}
.hero-img--back {
  width: 88%;
  aspect-ratio: 4/3;
  background-color: var(--blue-light);
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(142,129,81,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(165,187,198,0.2) 0%, transparent 50%);
}
.hero-img--front {
  width: 68%;
  aspect-ratio: 3/4;
  background-color: var(--parch);
  position: absolute;
  bottom: -2rem;
  left: 0;
  border: 4px solid var(--cream);
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(92,74,69,0.1) 0%, transparent 60%);
}

.hero-pillars {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: var(--space-2);
  width: 88%;
}
.hero-pillars span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--cream-2);
  border: var(--border-soft);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ── INTRO ──────────────────────────────────────────────── */
.intro {
  background: var(--cream-2);
  padding-block: var(--space-7);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-6);
  align-items: start;
}
.intro-deco {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--parch);
  line-height: 1;
  user-select: none;
}
.intro-content h2 { margin-bottom: var(--space-3); }
.intro-content p { color: var(--text-secondary); max-width: 580px; }
.intro-content .text-link { margin-top: var(--space-2); display: inline-block; }

/* ── OFFERINGS PREVIEW ──────────────────────────────────── */
.offerings-preview {
  padding-block: var(--space-3);
  background: var(--cream);
}
.offerings-preview .container { padding-block: var(--space-5); }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.offering-tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform var(--ease);
}
.offering-tile:hover { transform: scale(1.02); }
.offering-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,46,43,0.55) 0%, transparent 55%);
  z-index: 1;
  transition: opacity var(--ease);
}
.offering-tile:hover::before { opacity: 0.75; }

.offering-tile--watercolor { background-color: var(--blue-light); }
.offering-tile--clay        { background-color: #d9cec5; }
.offering-tile--pastels     { background-color: #c8d4be; }
.offering-tile--collage     { background-color: #d4cac0; }
.offering-tile--ink         { background-color: #bfcfd8; }
.offering-tile--charms      { background-color: #d5d0c0; }

.offering-tile-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-2) var(--space-2);
  width: 100%;
}
.offering-name {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--white);
  display: block;
}

.offerings-cta { text-align: center; }

/* ── GLIMPSE / PILLARS ──────────────────────────────────── */
.glimpse {
  background: var(--cream-2);
  padding-block: var(--space-7);
}
.glimpse-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-4);
}
.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.pillar { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.pillar-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
}
.pillar-img--rest       { background-color: #c8d8c8; }
.pillar-img--enjoy      { background-color: var(--blue-light); }
.pillar-img--create     { background-color: #d9cec5; }
.pillar-img--community  { background-color: #cfd4be; }

.pillar-word {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--olive);
}
.pillar-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--white);
  padding-block: var(--space-8);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.about-content .section-heading { margin-bottom: var(--space-4); }
.about-text { margin-bottom: var(--space-5); }
.about-text p { color: var(--text-secondary); margin-bottom: var(--space-2); }
.about-highlight { font-size: 1.15rem; color: var(--brown); margin-top: var(--space-2); }
.about-mission {
  background: var(--cream);
  border-left: 3px solid var(--olive);
  padding: var(--space-3) var(--space-3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-5);
}
.about-mission p { color: var(--text-secondary); font-size: 1.0rem; margin-bottom: var(--space-2); }

.about-portraits {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.portrait {
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center top;
}
.portrait--courtney {
  width: 85%;
  aspect-ratio: 3/4;
  background-color: #d9cec5;
  margin-left: auto;
  background-image: radial-gradient(ellipse at 50% 30%, rgba(92,74,69,0.12) 0%, transparent 60%);
}
.portrait--michael {
  width: 75%;
  aspect-ratio: 3/4;
  background-color: var(--parch);
  background-image: radial-gradient(ellipse at 50% 30%, rgba(92,74,69,0.08) 0%, transparent 60%);
}
.about-quote {
  position: absolute;
  bottom: 10%;
  right: -1.5rem;
  background: var(--olive);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  max-width: 200px;
}
.about-quote blockquote {
  font-family: var(--font-script);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--white);
}

/* ── MENU SECTION ───────────────────────────────────────── */
.menu-section {
  background: var(--cream-2);
  padding-bottom: var(--space-8);
}
.menu-header {
  padding-block: var(--space-5);
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.menu-header .section-intro { margin-inline: auto; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.menu-card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.menu-card:hover {
  border-color: var(--parch);
  box-shadow: 0 4px 24px rgba(92,74,69,0.07);
}
.menu-card--special { border-color: var(--blue); }
.menu-card--kids    { border-color: var(--parch); background: var(--cream); }

.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.menu-item-name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--brown);
  font-weight: 400;
}

.menu-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--cream-2);
  color: var(--olive);
  border: var(--border-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-tag--seasonal { background: var(--blue-light); color: #3a5a6a; border-color: var(--blue); }
.menu-tag--kids     { background: #e8ede0; color: #4a5e38; border-color: #c8d4be; }

.menu-includes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-includes li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1.1em;
  position: relative;
}
.menu-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  top: 0.3em;
  color: var(--olive);
}

.menu-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.menu-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: auto;
}
.menu-seasonal-note {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--olive);
}

.menu-bottom-cta {
  text-align: center;
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
}
.menu-bottom-cta h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-2);
}
.menu-bottom-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}
.menu-bottom-cta .cta-group { justify-content: center; }

/* ── BOOKING ────────────────────────────────────────────── */
.booking {
  background: var(--white);
  padding-block: var(--space-8);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
.booking-text .section-heading { margin-bottom: var(--space-3); }
.booking-text > p { color: var(--text-secondary); margin-bottom: var(--space-5); }
.booking-info { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-5); }
.info-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 6px;
}
.booking-info-item p { font-size: 0.9375rem; color: var(--text-secondary); margin-bottom: var(--space-1); }
.booking-info-item .text-link { font-size: 0.8rem; }
.booking-faq { border-top: var(--border-soft); padding-top: var(--space-3); }

.booking-form-wrap {
  position: sticky;
  top: 90px;
}
.booking-form {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

/* ── INSTAGRAM SECTION ──────────────────────────────────── */
.instagram-section {
  background: var(--cream);
  padding-block: var(--space-3);
}
.instagram-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: var(--space-6);
  align-items: center;
  padding-block: var(--space-3);
}
.instagram-text .section-heading { margin-bottom: var(--space-3); }
.instagram-text p { color: var(--text-secondary); margin-bottom: var(--space-4); }

.instagram-feed-placeholder { width: 100%; }
.ig-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: var(--space-2);
}
.ig-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--parch-light);
}
.ig-tile:nth-child(even)  { background: var(--blue-light); opacity: 0.7; }
.ig-tile:nth-child(3n)    { background: #d9cec5; opacity: 0.7; }
.ig-placeholder-note {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
  background: var(--cream-2);
  padding-block: var(--space-8);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.newsletter-text .section-heading { margin-bottom: var(--space-3); }
.newsletter-text p { color: var(--text-secondary); margin-bottom: var(--space-3); }
.newsletter-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-perks li {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.2em;
  position: relative;
}
.newsletter-perks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive);
}
.newsletter-form-wrap {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.newsletter-form { width: 100%; }

/* ── CONNECT ────────────────────────────────────────────── */
.connect {
  background: var(--olive);
  padding-block: var(--space-8);
}
.connect-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-7);
  align-items: start;
}
.connect-left .logo-script { color: var(--white); font-size: 2.2rem; }
.connect-left .logo-amp    { color: rgba(255,255,255,0.6); }
.connect-tagline {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-2);
  margin-bottom: var(--space-5);
  font-style: italic;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
}
.social-link:hover { color: var(--white); }
.social-link svg { flex-shrink: 0; }
.connect-site {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin: 0;
}

.connect-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.connect-form-wrap .form-title { color: var(--brown); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--cream-2);
  padding-top: var(--space-5);
  padding-bottom: var(--space-3);
  border-top: var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-bottom: var(--space-4);
}
.footer-logo {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0;
}
.footer-nav {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--olive); }
.footer-socials {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.footer-socials a {
  color: var(--text-muted);
  transition: color var(--ease);
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--olive); }
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: var(--space-3);
  border-top: var(--border-soft);
  margin-top: var(--space-3);
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: var(--space-6);
  }
  .hero-image-stack { align-items: flex-start; }
  .hero-img--back  { width: 100%; }
  .hero-img--front { width: 55%; bottom: -1.5rem; }

  .intro-inner { grid-template-columns: 1fr; }
  .intro-deco { font-size: 4rem; }

  .offerings-grid { grid-template-columns: repeat(2, 1fr); }

  .pillars-row { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; }
  .about-portraits { flex-direction: row; flex-wrap: wrap; }
  .portrait--courtney { width: 55%; margin-left: 0; }
  .portrait--michael  { width: 42%; }
  .about-quote { position: static; margin-top: var(--space-2); max-width: 100%; }

  .menu-grid { grid-template-columns: 1fr; }

  .booking-inner    { grid-template-columns: 1fr; }
  .booking-form-wrap { position: static; }

  .instagram-inner  { grid-template-columns: 1fr; }

  .newsletter-inner { grid-template-columns: 1fr; }

  .connect-inner { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { justify-content: center; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 540px) {
  :root { --space-7: 4rem; --space-8: 5rem; }

  .offerings-grid { grid-template-columns: 1fr; }
  .pillars-row    { grid-template-columns: 1fr 1fr; }

  .hero-img--front { display: none; }
  .hero-pillars { width: 100%; }

  .about-portraits { flex-direction: column; }
  .portrait--courtney,
  .portrait--michael { width: 100%; }

  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; }

  .menu-bottom-cta { padding: var(--space-4) var(--space-3); }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .site-header, .hamburger, .mobile-nav, .mobile-overlay { display: none; }
}

/* ── FORMSPREE AJAX ELEMENTS ────────────────────────────── */

/* Success banner — shown by Formspree after successful send */
[data-fs-success] {
  display: none; /* Formspree shows/hides this automatically */
  text-align: center;
  padding: var(--space-5) var(--space-3);
  font-family: var(--font-serif);
}
[data-fs-success] p {
  font-size: 1.1rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: var(--space-1);
}

/* Form-level error banner */
[data-fs-error]:not(:empty) {
  background: #fdf2f2;
  border: 1px solid #f0c4c4;
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  margin-bottom: var(--space-2);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #a32d2d;
}

/* Field-level error messages */
.fs-field-error {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #a32d2d;
  margin-top: 3px;
  display: block;
  min-height: 1em;
}

/* Invalid field highlight driven by Formspree aria-invalid */
[data-fs-field][aria-invalid="true"] {
  border-color: #a32d2d;
}

/* Submit button while Formspree is sending */
[data-fs-submit-btn]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ── POP-UP CALENDAR ────────────────────────────────────── */

.booking-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-6);
  padding-top: var(--space-7);
}
.booking-header .section-intro { margin-inline: auto; }

.cal-wrap {
  max-width: 520px;
  margin: 0 auto var(--space-6);
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.cal-month-label {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--brown);
  text-transform: lowercase;
}

.cal-nav {
  background: none;
  border: var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.cal-nav:hover {
  background: var(--cream-2);
  border-color: var(--olive);
  color: var(--olive);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-dow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 0 6px;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  gap: 2px;
}

.cal-cell--empty { background: none; }

.cal-cell--past .cal-day-num { opacity: 0.3; }

.cal-cell--event {
  background: var(--cream-2);
  border: 1.5px solid var(--parch);
  cursor: pointer;
  color: var(--brown);
  font-weight: 500;
  transition: background var(--ease), border-color var(--ease);
}
.cal-cell--event:hover {
  background: var(--parch-light);
  border-color: var(--olive);
}

.cal-cell--selected {
  background: var(--olive) !important;
  border-color: var(--olive) !important;
  color: var(--white) !important;
}
.cal-cell--selected .cal-event-dot { background: rgba(255,255,255,0.7); }

.cal-day-num { line-height: 1; }

.cal-event-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-2);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.cal-legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
}

/* ── EVENT DETAIL PANEL ─────────────────────────────────── */

.event-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
  padding-top: var(--space-5);
  border-top: var(--border);
  margin-top: var(--space-2);
}
.event-panel[hidden] { display: none; }

.event-detail-badge {
  display: inline-block;
  background: var(--olive);
  color: var(--white);
  font-family: var(--font-script);
  font-size: 1.1rem;
  padding: 4px 14px 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-2);
}

.event-detail-title {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--brown);
  font-weight: 400;
  margin-bottom: var(--space-3);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-4);
}
.event-meta li {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.meta-icon {
  color: var(--olive);
  font-size: 0.6rem;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.event-detail-note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-2);
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--parch);
}

/* ── BOOKING FORM (within event panel) ─────────────────── */

.booking-form-wrap {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  position: sticky;
  top: 90px;
}

.booking-form .form-title { margin-bottom: var(--space-3); }

/* ── STEP 2: SQUARE DEPOSIT ─────────────────────────────── */

.step2-inner {
  text-align: center;
  padding: var(--space-4) var(--space-2);
}

.step2-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eaf3e8;
  color: #3a6b38;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  border: 1.5px solid #c0ddb8;
}

.step2-heading {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: var(--space-2);
}

.step2-inner p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.btn-square {
  background: var(--brown);
  border-color: var(--brown);
  margin-bottom: var(--space-2);
}
.btn-square:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
}

.step2-reminder {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-2);
}
.step2-reminder a {
  color: var(--olive);
  border-bottom: 1px solid var(--olive-light);
}

/* ── NO EVENTS MESSAGE ──────────────────────────────────── */

.no-events-msg {
  text-align: center;
  padding: var(--space-5);
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  max-width: 520px;
  margin: 0 auto;
}
.no-events-msg p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
}
.no-events-msg a {
  color: var(--olive);
  border-bottom: 1px solid var(--olive-light);
}

/* ── RESPONSIVE: BOOKING / CALENDAR ─────────────────────── */

@media (max-width: 900px) {
  .event-panel {
    grid-template-columns: 1fr;
  }
  .booking-form-wrap {
    position: static;
  }
}

/* ── BOOKING: 3-STEP FLOW ───────────────────────────────── */

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto var(--space-6);
  max-width: 420px;
}
.bstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bstep-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--parch);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.bstep-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--ease);
}
.bstep--active .bstep-num   { background: var(--olive); border-color: var(--olive); color: var(--white); }
.bstep--active .bstep-label { color: var(--olive); font-weight: 500; }
.bstep--complete .bstep-num { background: var(--cream-2); border-color: var(--olive-light); color: var(--olive); }
.bstep-line {
  flex: 1;
  height: 1px;
  background: var(--parch);
  margin: 0 8px;
  margin-bottom: 18px;
}

/* ── EVENT SUMMARY BAR ──────────────────────────────────── */
.event-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream-2);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: var(--space-4);
  gap: var(--space-2);
}
.esb-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.esb-badge {
  background: var(--olive);
  color: var(--white);
  font-family: var(--font-script);
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.esb-title {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--brown);
}
.esb-change {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--olive);
  border-bottom: 1px solid var(--olive-light);
  padding-bottom: 1px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.esb-change:hover { color: var(--olive-dark); border-color: var(--olive-dark); }

/* ── STEP 2 LAYOUT ──────────────────────────────────────── */
.step-panel-inner { max-width: 960px; margin: 0 auto; }

.step2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.step2-info .event-meta { margin-bottom: var(--space-3); }

/* ── CATALOG INTRO ──────────────────────────────────────── */
.catalog-intro {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--cream-2);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3);
  margin-bottom: var(--space-5);
}
.step2-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #eaf3e8;
  color: #3a6b38;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #c0ddb8;
}
.catalog-intro-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── CATALOG GRID ───────────────────────────────────────── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.cat-card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.cat-card:hover {
  border-color: var(--parch);
  box-shadow: 0 4px 20px rgba(92,74,69,0.08);
}

/* Color accent stripe */
.cat-card-color {
  height: 8px;
  width: 100%;
}
.cat-color--watercolor { background: var(--blue); }
.cat-color--pastel     { background: #c8d4be; }
.cat-color--ink        { background: #b0a8a0; }
.cat-color--clay       { background: #d9c8b8; }
.cat-color--collage    { background: #c8b8a0; }
.cat-color--charms     { background: var(--parch); }
.cat-color--kids       { background: #c8d8b8; }
.cat-color--special    { background: var(--olive-light); }

.cat-card-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.cat-name {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--brown);
  font-weight: 400;
  line-height: 1.2;
}

.cat-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cat-note {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* Size + price buttons */
.cat-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--space-2);
}

.cat-size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--cream);
  border: 1.5px solid var(--parch);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), transform 0.15s ease;
  flex: 1;
  min-width: 60px;
}
.cat-size-btn:hover {
  background: var(--olive);
  border-color: var(--olive);
  transform: translateY(-1px);
}
.cat-size-btn:hover .cat-size-label,
.cat-size-btn:hover .cat-size-price { color: var(--white); }

.cat-size-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color var(--ease);
  text-align: center;
}
.cat-size-price {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--olive);
  transition: color var(--ease);
}

.cat-size-btn--single { flex: unset; width: 100%; }

.cat-size-btn--ask {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  flex: unset;
}
.cat-size-btn--ask .cat-size-label {
  font-size: 0.75rem;
  text-align: left;
}

.catalog-footer-note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-3) var(--space-3);
  background: var(--cream-2);
  border-radius: var(--radius-md);
  border: var(--border-soft);
}

/* ── RESPONSIVE: CATALOG ────────────────────────────────── */
@media (max-width: 900px) {
  .step2-layout { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form-wrap { position: static; }
}
@media (max-width: 540px) {
  .catalog-grid  { grid-template-columns: 1fr; }
  .booking-steps { max-width: 100%; }
  .bstep-label   { font-size: 0.6rem; }
  .esb-left      { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ── MASCOT SVG ─────────────────────────────────────────── */
.intro-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mascot-svg {
  width: clamp(80px, 12vw, 140px);
  height: auto;
  display: block;
}
.intro-deco-text {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--parch);
  line-height: 1;
  user-select: none;
}

/* ── INSTAGRAM CLEAN STATE ──────────────────────────────── */
.ig-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}
.ig-coming-soon-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 280px;
}

/* ── PILLAR IMAGE FIX ───────────────────────────────────── */
.pillar-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-color: var(--parch-light);
}

/* ── HEADER MOSAIC PATTERN (brand colors) ───────────────── */
.mosaic-border {
  height: 16px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--blue)      0px,  var(--blue)      16px,
    var(--white)     16px, var(--white)     20px,
    var(--olive)     20px, var(--olive)     36px,
    var(--white)     36px, var(--white)     40px,
    var(--parch)     40px, var(--parch)     56px,
    var(--white)     56px, var(--white)     60px,
    var(--brown)     60px, var(--brown)     76px,
    var(--white)     76px, var(--white)     80px,
    var(--blue-light) 80px, var(--blue-light) 96px,
    var(--white)     96px, var(--white)    100px
  );
  background-size: 100px 16px;
  opacity: 0.75;
}

/* ── OFFERING TILE IMAGE OVERLAY FIX ────────────────────── */
.offering-tile {
  background-size: cover !important;
  background-position: center !important;
}

/* ── REAL LOGO IMAGES ───────────────────────────────────── */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.connect-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: var(--space-2);
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

/* ── REAL MASCOT IMAGE ──────────────────────────────────── */
.mascot-img {
  width: clamp(100px, 14vw, 160px);
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}
.monogram-img {
  width: clamp(60px, 8vw, 100px);
  height: auto;
  display: block;
  opacity: 0.55;
  margin-top: 0.5rem;
}

/* ── INTRO DECO WITH REAL ASSETS ────────────────────────── */
.intro-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-2);
}

/* ── REAL PATTERN MOSAIC BORDER ─────────────────────────── */
.mosaic-border {
  height: 24px;
  background-repeat: repeat-x;
  background-size: auto 100%;
  /* CSS gradient fallback if image hasn't loaded */
  background-image: repeating-linear-gradient(
    90deg,
    var(--blue) 0px, var(--blue) 16px,
    var(--white) 16px, var(--white) 20px,
    var(--olive) 20px, var(--olive) 36px,
    var(--white) 36px, var(--white) 40px,
    var(--parch) 40px, var(--parch) 56px,
    var(--white) 56px, var(--white) 60px,
    var(--brown) 60px, var(--brown) 76px,
    var(--white) 76px, var(--white) 80px
  );
}
.mosaic-border--top    { height: 28px; margin-bottom: var(--space-6); }
.mosaic-border--footer { height: 20px; margin-bottom: var(--space-4); }
.mosaic-border--section { height: 20px; margin-block: var(--space-6); }

/* ── FOOTER PATTERN BACKGROUND ──────────────────────────── */
.site-footer {
  background-color: var(--cream-2);
  background-image: url('images/pattern-script.png');
  background-repeat: repeat;
  background-size: 280px auto;
  background-blend-mode: multiply;
  opacity: 1;
}
.footer-inner, .footer-copy {
  position: relative;
  z-index: 1;
}

/* ── FLIP CARDS ─────────────────────────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.flip-card {
  aspect-ratio: 4/3;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4,0.2,0.2,1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

/* FRONT — photo */
.flip-card-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.flip-card-front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,46,43,0.6) 0%, transparent 55%);
  border-radius: var(--radius-md);
}
.flip-card-name {
  position: relative;
  z-index: 2;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--white);
  padding: var(--space-2);
  display: block;
  width: 100%;
}

/* BACK — details */
.flip-card-back {
  background: var(--white);
  border: 1.5px solid var(--parch);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3);
  gap: 10px;
}

.flip-back-title {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 400;
  line-height: 1.1;
}

.flip-back-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}
.flip-back-list li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding-left: 1em;
  position: relative;
  line-height: 1.4;
}
.flip-back-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 0.35em;
  color: var(--olive);
}

.flip-back-note {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
  margin: 0;
}

.flip-back-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--olive);
  border-bottom: 1px solid var(--olive-light);
  padding-bottom: 1px;
  align-self: flex-start;
  margin-top: auto;
  text-decoration: none;
  transition: color var(--ease);
}
.flip-back-btn:hover { color: var(--olive-dark); }

/* Tap hint on mobile */
@media (hover: none) {
  .flip-card-front::before {
    content: 'tap to flip';
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
  }
}

/* ── EXPLORE BRANDED BUTTON ─────────────────────────────── */
.btn-explore-branded {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}
.btn-explore-branded:hover { transform: scale(1.05); opacity: 0.85; }
.btn-explore-img {
  height: 60px;
  width: auto;
  display: block;
}

/* ── LOGO SIZE FIX ──────────────────────────────────────── */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── PORTRAIT IMAGE FIX ─────────────────────────────────── */
.portrait {
  background-size: cover;
  background-position: center top;
}
.portrait--courtney,
.portrait--michael {
  background-position: center 15%;
}

/* ── PILLAR IMAGE SIZE FIX ──────────────────────────────── */
.pillar-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-color: var(--parch-light);
  min-height: 180px;
}

/* ── MASCOT SIZE FIX ────────────────────────────────────── */
.mascot-img {
  width: clamp(80px, 10vw, 130px);
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── RESPONSIVE FLIP GRID ───────────────────────────────── */
@media (max-width: 900px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .flip-card { aspect-ratio: 1; }
  .flip-back-title { font-size: 1.1rem; }
  .flip-back-list li { font-size: 0.72rem; }
}
