/* ============================================================
   Third Floor Social — Demo Stylesheet
   Modern minimalist, Scandinavian-tropical rooftop cafe-bar
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --cream:        #F6F1E7;
  --cream-deep:   #EFE7D5;
  --cream-soft:   #FBF7EE;
  --ink:          #1F2A24;
  --ink-soft:     #3D4A42;
  --sage:         #6B7F5C;
  --sage-deep:    #3F4D3A;
  --terracotta:   #A85A3E;
  --brown:        #5A4632;
  --line:         #D9D0BD;
  --line-soft:    #E6DFCD;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-eyebrow: "DM Serif Display", "Times New Roman", Georgia, serif;
  --font-body:    "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-mono:    "DM Serif Display", "Times New Roman", Georgia, serif;

  --shadow-soft:  0 6px 24px rgba(31, 42, 36, 0.08);
  --shadow-img:   0 12px 40px rgba(31, 42, 36, 0.12);

  --container:    1200px;
  --gutter:       24px;
  --radius:       2px;
  --radius-lg:    6px;

  --header-h:     72px;
  --transition:   280ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta); }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
p  { margin: 0 0 1em 0; }

.eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-block;
  margin-bottom: 1rem;
}
.eyebrow.dark { color: var(--cream); }
.eyebrow.line::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  margin-top: 12px;
}
.eyebrow.center { display: block; text-align: center; }
.eyebrow.center::after { margin-left: auto; margin-right: auto; }

.lede {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  font-style: italic;
}
.lede.center { margin-left: auto; margin-right: auto; text-align: center; }

.script { font-style: italic; font-family: var(--font-display); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.deep { background: var(--cream-deep); }
section.dark {
  background: var(--sage-deep);
  color: var(--cream);
}
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--cream); }
section.dark .lede { color: rgba(246, 241, 231, 0.78); }
section.dark a { color: var(--cream); border-bottom-color: rgba(246, 241, 231, 0.4); }
section.dark a:hover { color: var(--cream); border-bottom-color: var(--cream); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 960px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3.tablet-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid-3.tablet-2 { grid-template-columns: 1fr; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(246, 241, 231, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
}
.brand .wordmark {
  font-family: var(--font-eyebrow);
  font-size: 0.9rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: inherit;
  transition: color var(--transition);
}
.brand .sub {
  font-family: var(--font-eyebrow);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--brown);
  margin-top: 4px;
}
.brand .rule {
  width: 28px;
  height: 1px;
  background: currentColor;
  margin-top: 6px;
  transition: background var(--transition);
}
/* On hero, header is transparent, text cream */
.hero-page .site-header:not(.scrolled) .brand .wordmark,
.hero-page .site-header:not(.scrolled) .brand .sub { color: var(--cream); }
.hero-page .site-header:not(.scrolled) .brand .rule { background: var(--cream); }
.hero-page .site-header:not(.scrolled) .nav a { color: var(--cream); }
.hero-page .site-header:not(.scrolled) .nav-toggle span { background: var(--cream); }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 4px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--transition);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: min(80vw, 320px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 32px rgba(31, 42, 36, 0.1);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 0.85rem; color: var(--ink) !important; }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--ink) !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 30px;
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn.primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn.primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); }
.btn.cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn.cream:hover { background: transparent; color: var(--cream); }
.btn.ghost { color: var(--cream); border-color: var(--cream); }
.btn.ghost:hover { background: var(--cream); color: var(--ink); }
.btn.small { padding: 10px 22px; font-size: 0.7rem; min-height: 40px; }

.btn .arrow { margin-left: 12px; transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  padding: calc(var(--header-h) + 80px) 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 36, 0.45) 0%, rgba(31, 42, 36, 0.18) 40%, rgba(31, 42, 36, 0.6) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 720px; }
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--cream); }
.hero .lede { color: rgba(246, 241, 231, 0.92); margin-bottom: 40px; max-width: 56ch; }
.hero .eyebrow { color: rgba(246, 241, 231, 0.85); }
.hero .eyebrow::after { background: rgba(246, 241, 231, 0.7); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 20px 0;
  background: rgba(31, 42, 36, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
}
.hero-meta .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.hero-meta .stars { color: var(--cream); letter-spacing: 4px; font-size: 0.95rem; }
.hero-meta .meta-item { font-family: var(--font-eyebrow); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; }
.hero-meta strong { font-weight: 400; }

/* ---------- Highlights ---------- */
.highlights { padding: 96px 0 80px; }
.highlight-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: 40px 32px;
  text-align: left;
  transition: all var(--transition);
  height: 100%;
}
.highlight-card:hover {
  background: var(--cream-deep);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.highlight-card .icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 24px;
  font-family: var(--font-eyebrow);
  font-size: 1.2rem;
}
.highlight-card h3 { margin-bottom: 12px; }
.highlight-card p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; margin: 0; }

/* ---------- Quote / Review band ---------- */
.quote-band {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 96px 0;
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--cream);
  max-width: 28ch;
  margin: 0 auto 28px;
  position: relative;
}
.quote-band blockquote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(246, 241, 231, 0.25);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.quote-band cite {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.7);
  font-style: normal;
}

/* ---------- Featured menu (home) ---------- */
.feature-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.feature-card .img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
  margin-bottom: 24px;
}
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.feature-card:hover img { transform: scale(1.05); }
.feature-card .cat {
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.feature-card h3 { font-size: 1.5rem; margin: 0 0 10px; }
.feature-card p { font-size: 1rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .feature-menu { grid-template-columns: 1fr; } }

/* ---------- Menu page ---------- */
.menu-section { padding-top: 64px; }
.menu-section + .menu-section { padding-top: 16px; }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.menu-cat-head h2 { margin: 0; }
.menu-cat-head .cat-meta {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brown);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
}
.menu-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: 16px;
  align-items: start;
  transition: all var(--transition);
}
.menu-item:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.menu-item .img-wrap {
  width: 140px;
  height: 140px;
  overflow: hidden;
  background: var(--cream-deep);
}
.menu-item img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .body { display: flex; flex-direction: column; }
.menu-item .row1 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.menu-item h3 { font-size: 1.35rem; margin: 0; font-weight: 500; }
.menu-item .price {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  white-space: nowrap;
}
.menu-item .cat-tag {
  font-family: var(--font-eyebrow);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.menu-item p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.menu-item .source { font-size: 0.78rem; color: var(--brown); margin-top: 8px; font-style: italic; }
.menu-item .signature {
  display: inline-block;
  font-family: var(--font-eyebrow);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--terracotta);
  padding: 3px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 720px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 100px 1fr; gap: 16px; padding: 12px; }
  .menu-item .img-wrap { width: 100px; height: 100px; }
  .menu-item h3 { font-size: 1.2rem; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 42, 36, 0.85) 100%);
  color: var(--cream);
  font-family: var(--font-eyebrow);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

.g-1 { grid-column: span 7; grid-row: span 4; }
.g-2 { grid-column: span 5; grid-row: span 3; }
.g-3 { grid-column: span 4; grid-row: span 3; }
.g-4 { grid-column: span 4; grid-row: span 4; }
.g-5 { grid-column: span 4; grid-row: span 3; }
.g-6 { grid-column: span 5; grid-row: span 3; }
.g-7 { grid-column: span 4; grid-row: span 3; }
.g-8 { grid-column: span 3; grid-row: span 4; }
.g-9 { grid-column: span 5; grid-row: span 3; }
.g-10 { grid-column: span 12; grid-row: span 3; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 140px;
  }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10 {
    grid-column: span 6;
    grid-row: span 2;
  }
  .g-1, .g-4, .g-8 { grid-row: span 3; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.review-card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card .stars { color: var(--terracotta); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p { font-size: 1.05rem; line-height: 1.6; color: var(--ink); flex: 1; }
.review-card p::before { content: "\201C"; color: var(--sage); font-size: 1.6rem; line-height: 0; margin-right: 4px; vertical-align: -10px; }
.review-card p::after  { content: "\201D"; color: var(--sage); font-size: 1.6rem; line-height: 0; margin-left: 4px; vertical-align: -10px; }
.review-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.review-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-eyebrow);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.review-card .author-meta { display: flex; flex-direction: column; }
.review-card .author-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.review-card .author-source { font-family: var(--font-eyebrow); font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brown); margin-top: 2px; }
@media (max-width: 960px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split .img-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
}
.about-split .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-split .img-caption {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(31, 42, 36, 0.85);
  color: var(--cream);
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.value-list { list-style: none; padding: 0; margin: 24px 0 0; }
.value-list li {
  position: relative;
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 18px;
  height: 1px;
  background: var(--terracotta);
}
.value-list li strong { color: var(--ink); font-weight: 500; font-family: var(--font-display); font-size: 1.15rem; display: block; margin-bottom: 2px; }
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; gap: 48px; } }

/* ---------- Stats / Numbers band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h2 { margin-bottom: 8px; }
.contact-item { display: flex; flex-direction: column; }
.contact-item .label {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.contact-item .value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.45;
}
.contact-item a { color: var(--ink); border-bottom: 1px solid var(--line); }
.contact-item a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours-table tr { border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table th, .hours-table td {
  padding: 14px 0;
  text-align: left;
  font-weight: 400;
}
.hours-table th {
  font-family: var(--font-eyebrow);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  width: 40%;
}
.hours-note {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
}
.hours-note a { color: var(--terracotta); }

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

/* ---------- Forms ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  padding: 32px;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
}
.form input, .form textarea, .form select {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--ink);
  outline: none;
  min-height: 44px;
  transition: border-color var(--transition);
}
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form textarea:focus, .form select:focus { border-bottom-color: var(--ink); }
.form .submit-row { display: flex; justify-content: flex-end; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 80px 0 32px;
}
.site-footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.site-footer h4 {
  font-family: var(--font-eyebrow);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.site-footer p, .site-footer a { color: rgba(246, 241, 231, 0.78); font-size: 0.96rem; line-height: 1.65; }
.site-footer a:hover { color: var(--cream); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer .brand .wordmark { color: var(--cream); }
.site-footer .brand .sub { color: rgba(246, 241, 231, 0.7); }
.site-footer .brand .rule { background: var(--cream); }
.footer-meta {
  border-top: 1px solid rgba(246, 241, 231, 0.18);
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.55);
}
@media (max-width: 900px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .site-footer .container { grid-template-columns: 1fr; }
}

/* ---------- Page header (non-home) ---------- */
.page-header {
  background: var(--cream-deep);
  padding: calc(var(--header-h) + 80px) 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.page-header h1 { margin-bottom: 12px; }
.page-header p.lede { margin: 0 auto; text-align: center; }
.page-header .eyebrow { display: block; text-align: center; }
.page-header .eyebrow::after { margin-left: auto; margin-right: auto; }

/* ---------- Misc ---------- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 24px auto;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 600px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
  section { padding: 64px 0; }
  .highlights { padding: 64px 0 48px; }
  .quote-band { padding: 64px 0; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(31, 42, 36, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.lightbox-caption {
  margin-top: 16px;
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(246, 241, 231, 0.4);
  color: var(--cream);
  font-size: 2rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
  padding: 0;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.lightbox-close { top: 20px; right: 20px; font-size: 1.6rem; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox-close, .lightbox-prev, .lightbox-next {
    width: 44px; height: 44px;
    font-size: 1.4rem;
  }
}

.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--sage-deep);
  font-style: italic;
  opacity: 0;
  transition: opacity var(--transition);
  text-align: right;
}

/* ---------- Image figure helper ---------- */
.figure {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  margin: 0;
}
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Instagram strip on home ---------- */
.insta-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.insta-strip a { display: block; position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.insta-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.insta-strip a:hover img { transform: scale(1.05); }
.insta-strip a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(31, 42, 36, 0.3);
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-strip a:hover::after { opacity: 1; }
@media (max-width: 600px) { .insta-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Two-up split (text + image) ---------- */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-2.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split-2 { grid-template-columns: 1fr; gap: 48px; }
  .split-2.reverse > :first-child { order: initial; }
}
