:root {
  --ink: #11100e;
  --paper: #f5f1ea;
  --muted: #7b746a;
  --line: rgba(17, 16, 14, 0.14);
  --charcoal: #1f1b18;
  --warm: #d1783f;
  --red: #8d2f23;
  --gold: #b98a4b;
  --white: #fffaf2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.hidden {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 32px;
  background: rgba(245, 241, 234, 0.91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 850;
  letter-spacing: 0;
}

.logo img {
  display: block;
  width: 180px;
  max-width: 42vw;
  height: auto;
}

.footer-logo img {
  width: 220px;
  max-width: 70vw;
}

.logo span {
  font-size: 1.08rem;
}

.logo small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-content,
.page-hero-content,
.section-heading,
.about-intro,
.about-intro-copy,
.service-grid,
.value-grid,
.overview-card-grid,
.work-grid,
.process-list,
.deliverables-grid,
.detail-intro .detail-two-col,
.intake-layout,
.form-grid,
.choice-grid,
.restaurant-callout-inner,
.site-footer {
  min-width: 0;
  max-width: 100%;
}

.service-card,
.value-card,
.overview-card,
.work-tile,
.deliverable-card,
.process-list li,
.project-form,
.intake-info,
.intake-info section,
.restaurant-callout-inner {
  min-width: 0;
}

.site-nav a {
  color: rgba(17, 16, 14, 0.72);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-item {
  position: relative;
}

.has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -28px;
  right: -28px;
  height: 22px;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  gap: 4px;
  width: 258px;
  padding: 12px;
  background: rgba(255, 250, 242, 0.97);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(17, 16, 14, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  color: rgba(17, 16, 14, 0.78);
}

.dropdown-menu a:hover {
  background: #eee6da;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 242, 0.58);
  color: var(--white);
}

.hero .button.primary,
.page-hero .button.primary,
.final-cta .button.primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.hero .button.primary:hover,
.page-hero .button.primary:hover,
.final-cta .button.primary:hover {
  background: #f3eadf;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.section-pad {
  width: 100%;
  max-width: 100%;
  padding: clamp(72px, 8vw, 126px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: flex;
  align-items: end;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  min-height: calc(100vh - 76px);
  padding: clamp(86px, 9vw, 150px) clamp(20px, 5vw, 72px) clamp(32px, 5vw, 72px);
  overflow: hidden;
  color: var(--white);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 620px;
  padding: clamp(96px, 10vw, 160px) clamp(20px, 5vw, 72px) clamp(54px, 6vw, 88px);
  overflow: hidden;
  color: var(--white);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.86), rgba(17, 16, 14, 0.5) 56%, rgba(17, 16, 14, 0.3)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.74), rgba(17, 16, 14, 0.12) 52%),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.page-hero-content {
  width: 100%;
  max-width: 1120px;
}

.service-hero {
  display: flex;
  align-items: flex-end;
  aspect-ratio: auto;
  min-height: 72vh;
  padding-top: clamp(96px, 12vh, 160px);
  padding-bottom: clamp(80px, 10vh, 140px);
  overflow: visible;
  isolation: isolate;
}

.service-hero-bg {
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}

.service-hero-content {
  width: 100%;
  max-width: 1100px;
}

.service-hero-title {
  max-width: 1100px;
  margin-bottom: 24px;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
}

.service-hero-subtitle {
  max-width: 780px;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.hero-bg,
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-fit: cover;
  object-position: center;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.84), rgba(17, 16, 14, 0.5) 52%, rgba(17, 16, 14, 0.28)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.12) 48%),
    url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.hero-content {
  width: 100%;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 1180px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.4vw, 7.5rem);
  font-weight: 500;
  line-height: 0.94;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.16rem, 4.8vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.62rem);
  line-height: 1.12;
}

.hero-lede {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.16rem, 1.7vw, 1.5rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.hero-panel {
  padding: 22px;
  background: rgba(17, 16, 14, 0.76);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.hero-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.08;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: center;
  background: var(--white);
}

.about-intro h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 850;
  line-height: 0.95;
}

.about-intro-copy {
  display: grid;
  justify-items: center;
  gap: 34px;
  text-align: center;
}

.about-intro-copy p {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.35vw, 2.4rem);
  font-weight: 800;
  line-height: 1.75;
}

.section-heading {
  max-width: 890px;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.section-heading.wide {
  max-width: 1040px;
}

.services .eyebrow,
.work .eyebrow,
.why .eyebrow,
.process-band .eyebrow,
.service-overview .eyebrow,
.deliverables-band .eyebrow {
  color: var(--red);
}

.service-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card,
.value-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card::before,
.value-card::before,
.deliverable-card::before,
.process-list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 96px;
  margin-bottom: 18px;
  background:
    linear-gradient(0deg, rgba(17, 16, 14, 0.2), rgba(17, 16, 14, 0.02)),
    var(--card-image, url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&w=700&q=82"))
      center / cover;
  border-radius: 4px;
}

.service-grid .service-card:nth-child(1),
.overview-card-grid .overview-card:nth-child(1) {
  --card-image: url("https://images.unsplash.com/photo-1608571423902-eed4a5ad8108?auto=format&fit=crop&w=700&q=82");
}

.service-grid .service-card:nth-child(2),
.overview-card-grid .overview-card:nth-child(2) {
  --card-image: url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=700&q=82");
}

.service-grid .service-card:nth-child(3),
.overview-card-grid .overview-card:nth-child(3) {
  --card-image: url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&w=700&q=82");
}

.service-grid .service-card:nth-child(4),
.overview-card-grid .overview-card:nth-child(4) {
  --card-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(1) {
  --card-image: url("https://images.unsplash.com/photo-1526947425960-945c6e72858f?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(2) {
  --card-image: url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(3) {
  --card-image: url("https://images.unsplash.com/photo-1622483767028-3f66f32aef97?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(4) {
  --card-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(5) {
  --card-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(6) {
  --card-image: url("https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(7) {
  --card-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=700&q=82");
}

.value-grid .value-card:nth-child(8) {
  --card-image: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=700&q=82");
}

.service-card span,
.value-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--warm);
  font-size: 0.85rem;
  font-weight: 850;
}

.service-card p,
.value-card p {
  color: var(--muted);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.service-block-list {
  display: grid;
  gap: 18px;
}

.overview-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.overview-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.overview-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.overview-card div {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 24px;
}

.overview-card span {
  margin-bottom: 28px;
  color: var(--warm);
  font-size: 0.85rem;
  font-weight: 850;
}

.overview-card p {
  color: var(--muted);
}

.overview-card .detail-list {
  grid-template-columns: 1fr;
  margin-top: 8px;
}

.overview-card a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  min-height: 520px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.service-block.reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.9fr);
}

.service-block.reverse .service-block-media {
  order: 2;
}

.service-block.reverse .service-block-copy {
  order: 1;
}

.service-block-media {
  aspect-ratio: 4 / 3;
  min-height: 420px;
  overflow: hidden;
}

.service-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-block-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.service-block-copy span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--warm);
  font-size: 0.85rem;
  font-weight: 850;
}

.service-block-copy h2 {
  font-size: clamp(2rem, 3.8vw, 4.2rem);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 6px 0 30px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--warm);
  border-radius: 50%;
}

.text-link.dark {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 850;
}

.work {
  background: var(--charcoal);
  color: var(--white);
}

.work .section-heading p {
  color: var(--gold);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(12px, 1.4vw, 18px);
}

.work-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 6px;
  background: #2a241f;
}

.work-tile.large {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.work-tile.wide-tile {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.78));
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.work-tile:hover img {
  transform: scale(1.045);
}

.work-tile div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
  color: var(--white);
}

.work-tile span {
  display: block;
  margin-bottom: 8px;
  color: #efbb7b;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.work-tile h3 {
  max-width: 620px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.why {
  background: var(--paper);
}

.process-band {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
  background: #ebe4da;
}

.deliverables-band {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
  background: #ebe4da;
}

.service-detail .feature-list {
  max-width: 980px;
  margin-bottom: 0;
  padding-top: 10px;
}

.detail-intro .detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.detail-two-col p {
  color: rgba(17, 16, 14, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.best-for {
  background: var(--white);
}

.related-work {
  background: var(--charcoal);
  color: var(--white);
}

.related-work .eyebrow {
  color: var(--gold);
}

.detail-work-grid {
  grid-auto-rows: auto;
}

.restaurant-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  margin-top: clamp(16px, 2vw, 24px);
}

.restaurant-gallery-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #2a241f;
}

.restaurant-gallery-grid figure:nth-child(2),
.restaurant-gallery-grid figure:nth-child(3) {
  aspect-ratio: 4 / 3;
}

.restaurant-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.detail-hero.restaurant-detail .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.86), rgba(17, 16, 14, 0.44)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.detail-hero.product-detail .page-hero-bg,
.detail-hero.marketing-detail .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.86), rgba(17, 16, 14, 0.44)),
    url("https://images.unsplash.com/photo-1608571423902-eed4a5ad8108?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.restaurant-callout {
  background: var(--white);
}

.restaurant-callout-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 52px);
  background: #efe5d8;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 6px;
}

.restaurant-callout h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
}

.restaurant-callout p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.detail-hero.social-detail .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.86), rgba(17, 16, 14, 0.44)),
    url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.detail-hero.campaign-detail .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.86), rgba(17, 16, 14, 0.44)),
    url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.detail-hero.creative-detail .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.86), rgba(17, 16, 14, 0.44)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.start-project-hero .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.48)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.1)),
    url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.thank-you-hero .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.48)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.1)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=2200&q=86")
      center / cover;
}

.project-intake {
  background: var(--paper);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intake-info {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 30px;
}

.intake-info section,
.project-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.intake-info section {
  padding: clamp(24px, 3vw, 34px);
}

.intake-info h2 {
  font-size: clamp(2rem, 3.8vw, 4.2rem);
}

.intake-info h3,
.form-heading h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.intake-info p {
  color: var(--muted);
}

.next-steps ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.next-steps span {
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 850;
}

.next-steps strong {
  font-size: 0.96rem;
  line-height: 1.28;
}

.contact-panel a {
  display: inline-flex;
  margin-bottom: 14px;
  border-bottom: 1px solid currentColor;
  font-weight: 850;
}

.project-form {
  padding: clamp(24px, 4vw, 42px);
}

.form-heading {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.intake-followup-grid {
  grid-template-columns: 1fr;
}

.field,
.choice-group {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.blank-field-stack {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.field span,
.choice-group legend {
  color: rgba(17, 16, 14, 0.78);
  font-size: 0.84rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  background: #fbf7ef;
  border: 1px solid rgba(17, 16, 14, 0.18);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.fill-blank textarea {
  min-height: 118px;
  background:
    linear-gradient(#fbf7ef, #fbf7ef) padding-box,
    repeating-linear-gradient(
        90deg,
        rgba(209, 120, 63, 0.36) 0 18px,
        rgba(209, 120, 63, 0) 18px 28px
      )
      border-box;
  border: 1px solid transparent;
  box-shadow: inset 0 -1px 0 rgba(17, 16, 14, 0.16);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(123, 116, 106, 0.72);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(209, 120, 63, 0.35);
  border-color: var(--warm);
}

.choice-group {
  margin: 26px 0;
  padding: 22px;
  background: #fbf7ef;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 6px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 46px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 4px;
  color: rgba(17, 16, 14, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.choice-grid input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--warm);
}

.field-error {
  display: none;
  margin: 2px 0 0;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
}

.choice-group.has-error {
  border-color: rgba(141, 47, 35, 0.55);
}

.choice-group.has-error .field-error {
  display: block;
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.form-success {
  display: none;
  margin: 18px 0 0;
  padding: 16px;
  background: #efe5d8;
  border: 1px solid rgba(185, 138, 75, 0.38);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.deliverable-card {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverables-grid .deliverable-card:nth-child(1) {
  --card-image: url("https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=700&q=82");
}

.deliverables-grid .deliverable-card:nth-child(2) {
  --card-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=82");
}

.deliverables-grid .deliverable-card:nth-child(3) {
  --card-image: url("https://images.unsplash.com/photo-1611162616475-46b635cb6868?auto=format&fit=crop&w=700&q=82");
}

.deliverables-grid .deliverable-card:nth-child(4) {
  --card-image: url("https://images.unsplash.com/photo-1536240478700-b869070f9279?auto=format&fit=crop&w=700&q=82");
}

.deliverables-grid .deliverable-card:nth-child(5) {
  --card-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=700&q=82");
}

.deliverables-grid .deliverable-card:nth-child(6) {
  --card-image: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=700&q=82");
}

.deliverables-grid .deliverable-card:nth-child(7) {
  --card-image: url("https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?auto=format&fit=crop&w=700&q=82");
}

.deliverables-grid .deliverable-card:nth-child(8) {
  --card-image: url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&w=700&q=82");
}

.deliverable-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--warm);
  font-size: 0.85rem;
  font-weight: 850;
}

.deliverable-card h3 {
  max-width: 320px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li:nth-child(1) {
  --card-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=700&q=82");
}

.process-list li:nth-child(2) {
  --card-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=700&q=82");
}

.process-list li:nth-child(3) {
  --card-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=700&q=82");
}

.process-list li:nth-child(4) {
  --card-image: url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=700&q=82");
}

.process-list li:nth-child(5) {
  --card-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=82");
}

.process-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--warm);
  font-size: 0.85rem;
  font-weight: 850;
}

.process-list strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  min-height: clamp(420px, 44vw, 620px);
  padding: clamp(76px, 9vw, 140px) clamp(16px, 5vw, 72px);
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.final-cta-bg {
  background:
    linear-gradient(rgba(31, 27, 24, 0.76), rgba(31, 27, 24, 0.82)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=85")
      center / cover;
}

.final-cta-content {
  display: grid;
  justify-items: center;
  inline-size: min(900px, 100%);
  max-inline-size: calc(100vw - clamp(32px, 10vw, 144px));
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  inline-size: min(900px, 100%);
  max-inline-size: 100%;
  margin-bottom: 30px;
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
}

.final-cta p {
  inline-size: min(680px, 100%);
  max-inline-size: 100%;
  margin: -10px auto 30px;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  text-align: center;
}

.final-cta .button.primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.site-footer {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer h2 {
  margin: 0;
  color: #ef827d;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(4rem, 11vw, 9.6rem);
  font-weight: 300;
  line-height: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(230px, 0.9fr) minmax(260px, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.site-footer h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-brand,
.footer-contact,
.footer-social {
  min-width: 0;
}

.footer-brand {
  justify-self: start;
  text-align: left;
}

.footer-contact {
  justify-self: center;
  justify-items: center;
  text-align: center;
}

.footer-social {
  justify-self: end;
  text-align: right;
}

.site-footer p,
.footer-contact span {
  color: rgba(255, 250, 242, 0.58);
  font-size: clamp(1.05rem, 1.65vw, 1.6rem);
  line-height: 1.35;
}

.site-footer p {
  max-width: 520px;
  margin: 22px 0 0;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  color: var(--white);
  font-size: clamp(1.05rem, 1.65vw, 1.6rem);
  font-weight: 500;
  text-underline-offset: 5px;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #f0cf8b;
  text-decoration: underline;
}

.email-copy-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  background: var(--ink);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.email-copy-notice.is-hiding {
  opacity: 0;
  transform: translateY(8px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #f0cf8b;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.social-links a:hover {
  background: #ffd98f;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-header {
    z-index: 100;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: inline-grid;
    place-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100dvh;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    padding: 108px clamp(22px, 6vw, 56px) 44px;
    background: var(--paper);
    overflow-y: auto;
    overscroll-behavior: contain;
    font-size: clamp(2.1rem, 8vw, 3.8rem);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
  }

  .site-nav a {
    max-width: 100%;
    color: var(--ink);
    overflow-wrap: break-word;
  }

  .nav-item {
    width: 100%;
    display: grid;
    gap: 14px;
  }

  .has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .has-dropdown > a::after {
    display: inline-block;
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin-left: 2px;
    border-width: 2px;
    transition: transform 180ms ease;
  }

  .has-dropdown.dropdown-open > a::after {
    transform: translateY(2px) rotate(225deg);
  }

  .has-dropdown::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    inset: auto;
    display: none;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    margin: 0;
    padding: 8px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    position: static;
    inset: auto;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-dropdown.dropdown-open .dropdown-menu {
    display: grid;
    position: static;
    inset: auto;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .dropdown-menu a {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    font-family:
      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    font-size: clamp(0.95rem, 3.4vw, 1.15rem);
    font-weight: 800;
    line-height: 1.2;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 560px;
  }

  .final-cta-content {
    inline-size: min(760px, 100%);
    max-inline-size: calc(100vw - 48px);
  }

  .final-cta h2 {
    font-size: clamp(2.2rem, 6.2vw, 4rem);
    line-height: 1.05;
  }

  .hero-panel {
    max-width: 460px;
  }

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

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

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
  }

  .detail-intro .detail-two-col {
    grid-template-columns: 1fr;
  }

  .service-block.reverse .service-block-media,
  .service-block.reverse .service-block-copy {
    order: initial;
  }

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

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

  .about-intro {
    grid-template-columns: 1fr;
  }

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

  .about-intro-copy {
    justify-items: start;
    text-align: left;
  }

  .intake-layout {
    grid-template-columns: 1fr;
  }

  .intake-info {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-contact,
  .footer-social {
    justify-self: start;
    justify-items: start;
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .site-footer h2 {
    font-size: clamp(3.8rem, 16vw, 7rem);
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  header,
  footer,
  .site-header,
  .section-pad,
  .process-band,
  .deliverables-band,
  .final-cta,
  .hero,
  .page-hero,
  .about-intro,
  .project-intake,
  .restaurant-callout,
  .site-footer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .section-pad,
  .process-band,
  .deliverables-band {
    padding: 66px 16px;
  }

  .hero {
    aspect-ratio: 4 / 5;
    min-height: calc(100vh - 66px);
    padding: 72px 16px 28px;
  }

  .hero-bg {
    background:
      linear-gradient(rgba(17, 16, 14, 0.76), rgba(17, 16, 14, 0.64)),
      url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=1300&q=86")
        center / cover;
  }

  .page-hero {
    aspect-ratio: 4 / 5;
    min-height: 500px;
    padding: 78px 16px 42px;
  }

  .service-hero {
    aspect-ratio: auto;
    min-height: auto;
    padding: 104px 16px 76px;
    overflow: visible;
  }

  .service-hero-content,
  .service-hero-title,
  .service-hero-subtitle {
    width: 100%;
    max-width: 100%;
  }

  h1.service-hero-title {
    font-size: clamp(44px, 14vw, 72px);
    line-height: 0.95;
  }

  .service-hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-top: 32px;
  }

  .service-hero-actions a,
  .service-hero-actions button {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .page-hero-bg {
    background:
      linear-gradient(rgba(17, 16, 14, 0.78), rgba(17, 16, 14, 0.68)),
      url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1300&q=86")
        center / cover;
  }

  h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.6rem);
  }

  .cta-row,
  .cta-row .button {
    width: 100%;
    max-width: 100%;
  }

  .button,
  .header-cta {
    white-space: normal;
    text-align: center;
  }

  .service-grid,
  .value-grid,
  .work-grid,
  .restaurant-gallery-grid,
  .process-list,
  .deliverables-grid,
  .overview-card-grid,
  .detail-list,
  .detail-intro .detail-two-col,
  .intake-layout,
  .form-grid,
  .choice-grid,
  .restaurant-callout-inner,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .page-hero-content,
  .section-heading,
  .section-heading.wide,
  .about-intro-label,
  .about-intro-copy,
  .service-card,
  .value-card,
  .overview-card,
  .work-tile,
  .restaurant-gallery-grid figure,
  .deliverable-card,
  .process-list li,
  .project-form,
  .intake-info,
  .intake-info section,
  .restaurant-callout-inner {
    width: 100%;
    max-width: 100%;
  }

  .about-intro h2 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .about-intro-copy p {
    font-size: clamp(1.25rem, 6vw, 1.85rem);
    line-height: 1.45;
  }

  .service-card,
  .value-card {
    width: 100%;
    max-width: 100%;
    min-height: 270px;
  }

  .service-card span,
  .value-card span,
  .deliverable-card span,
  .process-list span {
    margin-bottom: 20px;
  }

  .service-card::before,
  .value-card::before,
  .deliverable-card::before,
  .process-list li::before {
    height: 78px;
    margin-bottom: 18px;
  }

  .work-tile.large,
  .work-tile.wide-tile {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-block {
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .service-block-media {
    min-height: 300px;
  }

  .service-block-copy {
    padding: 34px 16px;
  }

  .project-form {
    padding: 22px 16px;
  }

  .choice-group {
    padding: 16px;
  }

  .final-cta {
    min-height: auto;
    padding: 72px 16px;
  }

  .final-cta-content {
    inline-size: 100%;
    max-inline-size: 100%;
  }

  .final-cta h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.3rem);
    line-height: 1.06;
    margin-bottom: 24px;
  }

  .site-footer {
    padding: 34px 16px;
  }
}
