:root {
  --bg: #f4efe7;
  --ink: #1b1714;
  --muted: #6f655c;
  --panel: #fffaf3;
  --accent: #b6672a;
  --accent-deep: #8f4f1f;
  --line: #d8cbbd;
  --shadow: 0 20px 50px rgba(43, 27, 14, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, #fff8ed, var(--bg) 42%) fixed;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 1.5rem clamp(1.2rem, 3vw, 3rem) 5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem clamp(1rem, 2.6vw, 2.6rem);
  backdrop-filter: blur(10px);
  background: rgba(244, 239, 231, 0.8);
  border-bottom: 1px solid rgba(184, 157, 126, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(52px, 7vw, 86px);
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 1.2vw, 1.4rem);
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  position: relative;
}

.main-nav a.is-active,
.main-nav a:hover {
  color: var(--ink);
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  background: var(--accent);
}

.header-cta,
.button {
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.header-cta,
.button.primary {
  background: linear-gradient(120deg, var(--accent), #c98347);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.hero,
.page-hero,
.band,
.grid-3,
.grid-2,
.split,
.service-grid,
.timeline,
.masonry,
.testimonial-grid,
.center-cta,
.form-shell,
.legal {
  max-width: 1140px;
  margin: 0 auto 2.2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  padding-top: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.lead {
  color: var(--muted);
  max-width: 58ch;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-frame {
  position: relative;
}

.hero-photo,
.story-photo,
.section-visual img,
.portfolio-card img,
.image-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
}

.frame-glow {
  position: absolute;
  inset: 0.8rem;
  background: linear-gradient(140deg, rgba(200, 131, 71, 0.2), rgba(31, 22, 15, 0.02));
  filter: blur(25px);
}

.hero-card,
.panel,
.step,
.tile,
.testimonial-card,
.form-shell,
.legal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-photo {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-ribbon {
  max-width: 1140px;
  margin: 0 auto 2.2rem;
}

.ribbon-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.ribbon-track img {
  min-height: 220px;
  max-height: 220px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: 1.4rem 1.5rem;
}

.hero-card ol {
  margin: 0;
  padding-left: 1.2rem;
}

.band {
  text-align: center;
  padding: 1.6rem;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}

.service-journey {
  max-width: 1140px;
  margin: 0 auto 1.8rem;
  padding: 1.35rem 1.25rem;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  text-align: center;
}

.service-story {
  max-width: 1140px;
  margin: 0 auto 2.35rem;
  display: grid;
  gap: 1.05rem;
  padding: 1.15rem clamp(0.8rem, 1.8vw, 1.45rem) 1.4rem;
  border: 1px solid rgba(143, 79, 31, 0.25);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffaf3, #f8efe2);
  box-shadow: var(--shadow);
}

.service-story-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  height: clamp(390px, 46vh, 430px);
}

.service-event-title {
  font-size: clamp(2rem, 4.3vw, 3.1rem);
  line-height: 1.04;
  margin: 0;
}

.service-event-kicker {
  margin: 0;
  color: #5f5145;
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  font-weight: 600;
}

.service-photo-frame {
  margin: 0;
  border: 1px solid rgba(143, 79, 31, 0.2);
  border-radius: 20px;
  background: #f6ebde;
  padding: 0;
  box-shadow: var(--shadow);
  height: 100%;
  overflow: hidden;
}

.service-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-photo-wedding {
  object-position: center 40%;
}

.service-copy {
  margin: 0;
  padding: 0.15rem 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 0.52rem;
  align-content: center;
  min-height: 100%;
}

.service-copy .service-event-kicker {
  margin-bottom: 0.35rem;
}

.service-copy p {
  margin: 0;
  color: #4a4038;
}

.home-contact-section {
  max-width: 1140px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 1rem;
}

.home-contact-head {
  max-width: 74ch;
}

.home-contact-section .form-shell {
  border-radius: 20px;
}

.restaurant-income-grid {
  max-width: 1140px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.income-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.income-card.accent {
  background: linear-gradient(170deg, #fff9f0, #f6e9d7);
}

.restaurant-visual-pair {
  max-width: 1140px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.restaurant-photo-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.restaurant-photo-frame img {
  width: 100%;
  height: clamp(240px, 38vh, 430px);
  object-fit: cover;
  display: block;
}

.restaurant-insight-split {
  max-width: 1140px;
  margin: 0 auto 2rem;
}

.restaurant-flywheel {
  max-width: 1140px;
  margin: 0 auto 2rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffaf2, #f7ebdb);
  box-shadow: var(--shadow);
}

.restaurant-flywheel-steps {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.restaurant-flywheel-steps div {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(143, 79, 31, 0.25);
  background: rgba(255, 255, 255, 0.65);
}

.restaurant-flywheel-steps strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}

.restaurant-flywheel-steps span {
  color: #4d433a;
}

.grid-3,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-proof-section {
  max-width: 1140px;
  margin: 0 auto 2.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(143, 79, 31, 0.2);
  border-radius: 24px;
  background: linear-gradient(165deg, #fffdf8, #f5eadc);
  box-shadow: var(--shadow);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.proof-photo-stack {
  position: relative;
  min-height: clamp(360px, 52vh, 520px);
}

.home-scroll-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(143, 79, 31, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(calc(var(--drift, 0) * 1px));
  transition: transform 280ms ease-out;
}

.home-scroll-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-a {
  width: min(72%, 410px);
  height: clamp(190px, 32vh, 280px);
  top: 0;
  left: 0;
  z-index: 3;
}

.photo-b {
  width: min(64%, 360px);
  height: clamp(200px, 34vh, 290px);
  right: 0;
  top: 22%;
  z-index: 2;
}

.photo-c {
  width: min(58%, 320px);
  height: clamp(180px, 30vh, 250px);
  left: 14%;
  bottom: 0;
  z-index: 4;
}

.proof-copy {
  display: grid;
  gap: 0.7rem;
}

.proof-copy p {
  margin: 0;
}

.proof-quotes {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.7rem;
}

.proof-quotes blockquote {
  margin: 0;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(143, 79, 31, 0.25);
  background: rgba(255, 255, 255, 0.75);
}

.proof-quotes cite {
  display: block;
  margin-top: 0.45rem;
  color: #5f5449;
  font-style: normal;
  font-size: 0.88rem;
}

.panel,
.step,
.testimonial-card {
  padding: 1.3rem;
}

.panel.accent {
  background: linear-gradient(170deg, #fff9f0, #f6e9d7);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.story-photo-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 380px;
}

.story-photo {
  min-height: 380px;
}

.metric-stack {
  display: grid;
  gap: 0.9rem;
}

.metric {
  border-left: 4px solid var(--accent);
  padding: 0.6rem 0 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.48);
}

.number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}

.portfolio-grid {
  max-width: 1240px;
  margin: 0 auto 2.2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.95rem;
}

.portfolio-category {
  max-width: 1240px;
  margin: 0 auto 2.35rem;
}

.portfolio-category.is-hidden {
  display: none;
}

.portfolio-category-header {
  display: grid;
  gap: 0.2rem;
  margin: 0 0 0.95rem;
  padding: 0.45rem 0 0.7rem;
  border-bottom: 1px solid rgba(143, 79, 31, 0.25);
}

.portfolio-category-header h2 {
  margin: 0;
}

.portfolio-controls {
  max-width: 1240px;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.portfolio-filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: #3e3228;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.is-active {
  background: linear-gradient(120deg, var(--accent), #c98347);
  color: #fff;
  border-color: transparent;
}

.portfolio-card {
  margin: 0;
  grid-column: span 4;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: zoom-in;
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card:nth-child(5n + 1),
.portfolio-card:nth-child(5n + 4) {
  grid-column: span 5;
}

.portfolio-card:nth-child(5n + 3) {
  grid-column: span 2;
}

.portfolio-card img {
  min-height: 260px;
  max-height: 440px;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(16, 11, 8, 0.94);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.8rem);
}

.portfolio-lightbox[aria-hidden="true"] {
  display: none;
}

.lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.62rem 0.92rem;
  cursor: pointer;
}

.lightbox-nav.prev {
  grid-column: 1;
  grid-row: 2;
}

.lightbox-nav.next {
  grid-column: 3;
  grid-row: 2;
}

.lightbox-image {
  grid-column: 2;
  grid-row: 2;
  max-width: min(1200px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: scale(1);
  transition: opacity 260ms ease, transform 260ms ease;
}

.lightbox-image.is-transitioning {
  opacity: 0.2;
  transform: scale(0.99);
}

.lightbox-meta {
  grid-column: 2;
  grid-row: 3;
  display: grid;
  gap: 0.3rem;
  justify-items: center;
}

.lightbox-counter {
  color: #d7c8b6;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox-caption {
  color: #f4eee7;
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
}

.section-visual {
  max-width: 1140px;
  margin: 0 auto 2.2rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-visual img {
  min-height: 420px;
  max-height: 420px;
}

.about-brand-intro {
  max-width: 1140px;
  margin: 0 auto 1.2rem;
  padding: 0.2rem 0 0.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(184, 157, 126, 0.34);
}

.about-brand-logo {
  height: clamp(60px, 8vw, 94px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(54, 33, 18, 0.14));
}

.about-brand-name {
  margin: 0.62rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b2a1d;
  text-align: right;
}

.about-owner-split {
  align-items: stretch;
  gap: clamp(1.1rem, 2vw, 1.9rem);
}

.about-owner-left {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.owner-commitments {
  margin-top: 0.2rem;
}

.owner-portrait-card {
  position: relative;
  margin: 0;
  border-radius: 24px;
  min-height: 100%;
  overflow: visible;
}

.owner-portrait-card::before {
  content: "";
  position: absolute;
  inset: 0.9rem -0.7rem -0.9rem 1rem;
  border-radius: 26px;
  background: radial-gradient(circle at 35% 18%, rgba(236, 191, 146, 0.44), rgba(236, 191, 146, 0));
  filter: blur(24px);
  opacity: 0.68;
  pointer-events: none;
  z-index: 0;
}

.owner-portrait-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(47, 30, 15, 0.24);
}

.tile {
  min-height: 170px;
  padding: 1rem;
  display: flex;
  align-items: end;
  background: linear-gradient(140deg, #fceede, #f8f5ef 50%, #edd6bf);
}

.tile:nth-child(1),
.tile:nth-child(4) {
  grid-column: span 4;
}

.tile:nth-child(2),
.tile:nth-child(5) {
  grid-column: span 3;
}

.tile:nth-child(3),
.tile:nth-child(6) {
  grid-column: span 5;
}

.video-wrap video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #15110e;
}

.testimonial-stack {
  display: grid;
  gap: 2rem;
}

.page-testimonials {
  scroll-snap-type: y mandatory;
}

.testimonial-scene {
  min-height: calc(100vh - 5.2rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.4rem, 4vw, 4rem);
  padding: clamp(1.2rem, 2.6vw, 2.8rem);
  align-items: center;
  scroll-margin-top: 5.4rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.testimonial-scene:nth-child(even) {
  background: linear-gradient(180deg, #fffdf8, #f8f1e7);
}

.scene-meta {
  max-width: 56ch;
}

.scene-index {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent-deep);
  margin-bottom: 0.5rem;
}

.quote-highlight {
  margin: 1.05rem 0 1.2rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.22;
  font-family: "Cormorant Garamond", serif;
  color: #2f2219;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0), rgba(203, 146, 84, 0.17));
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.28rem;
}

.quote-highlight .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55rem);
  filter: blur(1px);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), opacity 480ms ease, filter 480ms ease;
  transition-delay: var(--word-delay, 0ms);
}

.quote-highlight.is-animated .word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.scene-video video {
  min-height: 62vh;
  max-height: 78vh;
  object-fit: cover;
}

.scene-meta blockquote {
  margin: 0;
  font-size: 1.03rem;
  color: #3d332c;
  line-height: 1.72;
}

.scene-points {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  color: #4c4138;
}

.scene-points li::marker {
  color: var(--accent-deep);
}

.subtle {
  color: var(--muted);
  margin-top: -0.2rem;
}

.center-cta {
  text-align: center;
  padding: 2rem 1rem;
}

.contact-methods {
  max-width: 1140px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fffaf3, #f6ebdd);
  box-shadow: var(--shadow);
}

.contact-method-card strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.contact-method-card small {
  display: block;
  color: #5e5349;
  font-size: 0.88rem;
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #7a4419;
  background: rgba(184, 103, 42, 0.13);
  border: 1px solid rgba(143, 79, 31, 0.22);
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
}

.legal-page {
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: linear-gradient(165deg, #fffbf5, #f4e9da);
}

.legal-header {
  max-width: 74ch;
  margin: 0 auto 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed rgba(143, 79, 31, 0.3);
}

.legal-meta {
  margin: 0.3rem 0 0.65rem;
  color: #5d5147;
  font-size: 0.9rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.legal-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(143, 79, 31, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.legal-card h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
}

.legal-card p,
.legal-card li {
  color: #4b4037;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.legal-contact-card {
  grid-column: 1 / -1;
}

.form-shell {
  padding: 1.2rem;
}

.lead-form {
  display: grid;
  gap: 0.95rem;
}

.field-row {
  display: grid;
  gap: 0.35rem;
}

.field-row.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #41372f;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccbca9;
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.82rem;
}

textarea {
  resize: vertical;
}

.site-footer {
  max-width: 1240px;
  margin: 2rem auto 0;
  padding: 2rem clamp(1.2rem, 3vw, 3rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.45fr auto 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.55rem;
}

.footer-company-text p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-brand-column {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-brand-frame {
  width: clamp(108px, 12vw, 150px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.footer-brand-mark {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin: 0.18rem 0;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 580ms ease, transform 580ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 1024px) {
  .hero,
  .split,
  .grid-2,
  .timeline,
  .testimonial-scene {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1.2fr auto 1fr 1fr;
    gap: 1rem;
  }

  .site-footer > div:last-child {
    grid-column: 1 / -1;
  }

  .grid-3,
  .service-grid,
  .testimonial-grid,
  .ribbon-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-photo-stack {
    min-height: 430px;
  }

  .restaurant-income-grid,
  .restaurant-flywheel-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card,
  .portfolio-card:nth-child(5n + 1),
  .portfolio-card:nth-child(5n + 3),
  .portfolio-card:nth-child(5n + 4) {
    grid-column: span 1;
  }

  .masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tile:nth-child(1),
  .tile:nth-child(2),
  .tile:nth-child(3),
  .tile:nth-child(4),
  .tile:nth-child(5),
  .tile:nth-child(6) {
    grid-column: span 1;
  }

  .service-photo {
    min-height: 300px;
  }

  .service-story-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
}

@media (max-width: 720px) {
  main {
    padding: 1rem 0.8rem 3rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
    align-items: center;
    text-align: left;
    gap: 0.7rem;
    padding: 0.85rem 0.8rem;
  }

  .brand {
    grid-area: brand;
  }

  .brand-logo {
    height: 54px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: end;
    align-items: center;
  }

  .main-nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.5rem 0.25rem 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.35rem 0;
  }

  .header-cta {
    grid-area: cta;
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .grid-3,
  .service-grid,
  .testimonial-grid,
  .field-row.two-col {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .home-proof-section {
    padding: 0.9rem;
  }

  .proof-photo-stack {
    min-height: 330px;
  }

  .photo-a,
  .photo-b,
  .photo-c {
    width: 72%;
    height: 160px;
  }

  .photo-b {
    top: 24%;
  }

  .photo-c {
    left: 10%;
  }

  .restaurant-income-grid,
  .restaurant-visual-pair,
  .restaurant-flywheel-steps {
    grid-template-columns: 1fr;
  }

  .ribbon-track,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 0.7rem;
  }

  .lightbox-close {
    grid-column: 1;
    grid-row: 1;
  }

  .lightbox-nav.prev,
  .lightbox-nav.next {
    grid-row: 2;
    grid-column: 1;
    justify-self: start;
  }

  .lightbox-nav.next {
    justify-self: end;
  }

  .lightbox-image {
    grid-column: 1;
    grid-row: 3;
    max-width: 94vw;
    max-height: 68vh;
  }

  .lightbox-meta {
    grid-column: 1;
    grid-row: 4;
  }

  .hero-photo,
  .story-photo,
  .section-visual img {
    min-height: 240px;
    max-height: 300px;
  }

  .about-brand-intro {
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .about-brand-logo {
    height: clamp(54px, 13vw, 80px);
  }

  .about-brand-name {
    margin-top: 0.45rem;
    letter-spacing: 0.06em;
  }

  .about-owner-split {
    align-items: start;
  }

  .owner-portrait-card {
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }

  .owner-portrait-image {
    min-height: clamp(380px, 68vh, 560px);
  }

  .service-story {
    padding: 0.95rem 0.7rem 1.15rem;
  }

  .service-event-title {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
  }

  .service-photo {
    min-height: 260px;
  }

  .service-copy {
    padding: 0.4rem 0.2rem;
  }

  .testimonial-scene {
    min-height: auto;
    scroll-snap-stop: normal;
  }

  .scene-video video {
    min-height: 34vh;
    max-height: none;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .site-footer {
    padding: 1.5rem 0.9rem;
    grid-template-columns: 1fr;
  }

  .footer-brand-column {
    justify-content: flex-start;
  }

  .footer-brand-frame {
    width: 104px;
  }
}

@media (min-width: 721px) {
  .main-nav {
    display: flex !important;
  }
}
