:root {
  --ink: #17201c;
  --ink-soft: #26302b;
  --ivory: #f5f1e9;
  --paper: #fbfaf6;
  --clay: #a85f35;
  --clay-dark: #8f4e29;
  --sage: #7d8a79;
  --line: rgba(23, 32, 28, 0.16);
  --white: #fff;
  --display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 80px rgba(23, 32, 28, 0.16);
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid #d69a70; outline-offset: 4px; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.5rem, 6vw, 6.8rem); }
h2 { font-size: clamp(2.7rem, 4.4vw, 5.2rem); }
h3 { font-size: clamp(1.6rem, 2vw, 2.25rem); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(88px, 10vw, 152px) 0; }
.section--ink { color: var(--ivory); background: var(--ink); }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--clay-dark);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 1px; background: currentColor; content: ""; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--clay);
  border-radius: 100px;
  color: var(--white);
  background: var(--clay);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}
.button:hover, .button:focus-visible { border-color: var(--clay-dark); background: var(--clay-dark); transform: translateY(-2px); }
.button--ghost { color: var(--ivory); border-color: rgba(255, 255, 255, 0.44); background: transparent; }
.button--ghost:hover, .button--ghost:focus-visible { color: var(--ink); border-color: var(--ivory); background: var(--ivory); }
.button--light { color: var(--ink); border-color: var(--ivory); background: var(--ivory); }
.button--light:hover, .button--light:focus-visible { color: var(--white); border-color: var(--clay); background: var(--clay); }
.button--small { min-height: 44px; padding: 10px 18px; font-size: 0.68rem; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; text-decoration: none; }
.text-link::after { font-size: 1.2em; content: "↗"; transition: transform 180ms ease; }
.text-link:hover::after { transform: translate(3px, -3px); }

.site-header { position: relative; z-index: 100; color: var(--ink); background: rgba(245, 241, 233, 0.96); }
.site-header__bar { color: var(--ivory); background: var(--ink); }
.site-header__bar-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; font-size: 0.68rem; font-weight: 650; letter-spacing: 0.09em; text-transform: uppercase; }
.site-header__bar a { text-decoration: none; }
.site-header__main { display: flex; min-height: 94px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; }
.brand__name { font-family: var(--display); font-size: 2rem; font-weight: 700; letter-spacing: -0.06em; line-height: 0.9; }
.brand__descriptor { margin-top: 8px; font-size: 0.55rem; font-weight: 750; letter-spacing: 0.2em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.site-nav__list a { position: relative; font-size: 0.82rem; font-weight: 650; text-decoration: none; }
.site-nav__list a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--clay); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.site-nav__list a:hover::after, .site-nav__list a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; border: 0; color: var(--ink); background: transparent; }

.hero { display: grid; min-height: min(770px, calc(100vh - 128px)); grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); color: var(--ivory); background: var(--ink); }
.hero__content { display: flex; align-items: center; }
.hero__copy { width: min(650px, calc(100% - 64px)); margin-left: max(24px, calc((100vw - 1240px) / 2)); padding: 92px 46px 92px 0; }
.hero .eyebrow { color: #d69a70; }
.hero h1 { max-width: 720px; margin-bottom: 30px; }
.hero__lead { max-width: 610px; margin-bottom: 38px; color: rgba(245, 241, 233, 0.78); font-size: clamp(1.05rem, 1.35vw, 1.28rem); line-height: 1.58; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin: 30px 0 0; color: rgba(245, 241, 233, 0.58); font-size: 0.72rem; letter-spacing: 0.05em; }
.hero__media { position: relative; min-height: 640px; margin: 0; overflow: hidden; }
.hero__media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23, 32, 28, 0.2), transparent 35%), linear-gradient(0deg, rgba(23, 32, 28, 0.36), transparent 40%); content: ""; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero__media figcaption { position: absolute; z-index: 2; right: 36px; bottom: 34px; display: flex; flex-direction: column; padding-left: 15px; border-left: 1px solid rgba(255,255,255,.6); color: var(--white); }
.hero__media figcaption span { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
.hero__media figcaption strong { font-family: var(--display); font-size: 1.25rem; font-weight: 500; }

.proof-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-strip__grid > div { display: flex; min-height: 128px; flex-direction: column; justify-content: center; padding: 24px 34px; border-left: 1px solid var(--line); }
.proof-strip__grid > div:last-child { border-right: 1px solid var(--line); }
.proof-strip strong { font-family: var(--display); font-size: 2.2rem; font-weight: 500; line-height: 1; }
.proof-strip span { margin-top: 9px; color: rgba(23,32,28,.62); font-size: 0.73rem; letter-spacing: 0.08em; text-transform: uppercase; }

.split-heading { display: grid; align-items: start; gap: clamp(60px, 10vw, 150px); grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); }
.split-heading h2 { max-width: 820px; margin-bottom: 0; }
.split-heading__copy { padding-top: 54px; }
.split-heading__copy p { margin-bottom: 34px; color: rgba(23,32,28,.7); font-size: 1.08rem; }
.section-heading { max-width: 920px; margin-bottom: 70px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading--light .eyebrow { color: #d69a70; }
.section-heading--row { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading--row h2 { max-width: 800px; }
.section-heading--row .text-link { flex: 0 0 auto; margin-bottom: 8px; }

.service-grid { display: grid; border-top: 1px solid rgba(245,241,233,.2); border-left: 1px solid rgba(245,241,233,.2); grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 370px; padding: 35px 30px; border-right: 1px solid rgba(245,241,233,.2); border-bottom: 1px solid rgba(245,241,233,.2); }
.service-card__number { color: #d69a70; font-family: var(--display); font-size: 1rem; }
.service-card h3 { margin: 88px 0 22px; font-size: 2rem; }
.service-card p { margin: 0; color: rgba(245,241,233,.62); font-size: .9rem; }
.services-section__cta { margin-top: 42px; }

.project-grid { display: grid; gap: 22px; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(2, 360px); }
.project-card { position: relative; min-height: 0; overflow: hidden; color: var(--white); background: var(--ink); text-decoration: none; }
.project-card--wide { grid-row: 1 / span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,20,18,.76), transparent 58%); content: ""; }
.project-card:hover img { transform: scale(1.035); }
.project-card__overlay { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; padding: 32px; }
.project-card__overlay small { margin-bottom: 6px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.project-card__overlay strong { font-family: var(--display); font-size: clamp(1.55rem, 2.2vw, 2.4rem); font-weight: 500; }

.process-section { background: #e9e2d7; }
.process-layout { display: grid; gap: clamp(60px, 9vw, 130px); grid-template-columns: .75fr 1.25fr; }
.process-layout__heading { position: sticky; top: 44px; align-self: start; }
.process-layout__heading p:last-child { max-width: 430px; color: rgba(23,32,28,.65); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; gap: 28px; padding: 34px 0; border-top: 1px solid rgba(23,32,28,.25); grid-template-columns: 48px 1fr; }
.process-list li:last-child { border-bottom: 1px solid rgba(23,32,28,.25); }
.process-list > li > span { padding-top: 5px; color: var(--clay-dark); font-family: var(--display); }
.process-list h3 { margin-bottom: 12px; font-size: 2rem; }
.process-list p { margin: 0; color: rgba(23,32,28,.64); }

.audience-grid { display: grid; gap: 22px; grid-template-columns: 1.1fr .95fr .95fr; }
.audience-grid__intro { padding-right: 60px; }
.audience-grid__intro p:last-child { max-width: 450px; color: rgba(23,32,28,.68); }
.audience-card { position: relative; display: flex; min-height: 360px; flex-direction: column; justify-content: end; padding: 34px; border: 1px solid var(--line); text-decoration: none; transition: 200ms ease; }
.audience-card span { position: absolute; top: 34px; left: 34px; color: var(--clay-dark); font-size: .7rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.audience-card strong { max-width: 300px; font-family: var(--display); font-size: 2rem; font-weight: 500; line-height: 1.15; }
.audience-card i { position: absolute; top: 26px; right: 28px; font-family: var(--sans); font-size: 1.4rem; font-style: normal; transition: transform 180ms ease; }
.audience-card:hover { color: var(--ivory); border-color: var(--ink); background: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.audience-card:hover i { transform: translate(3px, -3px); }

.contact-cta { padding: clamp(82px, 9vw, 132px) 0; color: var(--ivory); background: var(--clay-dark); }
.contact-cta .eyebrow { color: rgba(245,241,233,.96); }
.contact-cta__inner { display: grid; align-items: end; gap: 80px; grid-template-columns: 1.4fr .6fr; }
.contact-cta h2 { max-width: 850px; margin-bottom: 26px; }
.contact-cta p:last-child { max-width: 690px; margin-bottom: 0; color: rgba(245,241,233,.92); }
.contact-cta__actions { display: flex; flex-direction: column; align-items: start; gap: 28px; }
.contact-cta__phone { display: flex; flex-direction: column; text-decoration: none; }
.contact-cta__phone small { margin-bottom: 3px; color: rgba(245,241,233,.92); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-cta__phone strong { font-family: var(--display); font-size: 2rem; font-weight: 500; }

.site-footer { padding: 78px 0 0; color: rgba(245,241,233,.78); background: #101612; }
.site-footer__grid { display: grid; gap: 58px; padding-bottom: 68px; grid-template-columns: 1.4fr .8fr .9fr .55fr; }
.brand--footer { color: var(--ivory); }
.site-footer__intro { max-width: 390px; margin: 28px 0 0; color: rgba(245,241,233,.56); font-size: .9rem; }
.site-footer__title { margin-bottom: 22px; color: var(--ivory); font-size: .72rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__links { margin: 0; padding: 0; list-style: none; }
.site-footer__links li + li { margin-top: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer address { margin-bottom: 16px; font-style: normal; }
.site-footer .text-link { color: var(--ivory); font-size: .82rem; }
.site-footer__bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(245,241,233,.12); font-size: .7rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__legal { display: flex; gap: 22px; }
.floating-whatsapp { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: flex; min-height: 52px; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 100px; color: #fff; background: #176b45; box-shadow: 0 10px 35px rgba(0,0,0,.22); font-size: .74rem; font-weight: 750; letter-spacing: .04em; text-decoration: none; }
.floating-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }

.content-main { min-height: 60vh; padding-bottom: 100px; }
.page-hero { padding: 100px 0 76px; color: var(--ivory); background: var(--ink); }
.page-hero .eyebrow { color: #d69a70; }
.page-hero h1 { max-width: 1000px; margin-bottom: 0; }
.content-shell { padding-top: 78px; }
.content-shell > * { max-width: 760px; margin-right: auto; margin-left: auto; }
.content-shell > .alignwide { max-width: 1240px; }
.content-shell > .alignfull { max-width: none; }
.entry-content img { border-radius: 2px; }
.content-card { padding: 36px 0; border-bottom: 1px solid var(--line); }

.subpage-hero { padding: clamp(94px, 10vw, 152px) 0; color: var(--ivory); background: var(--ink); }
.subpage-hero .eyebrow { color: #d69a70; }
.subpage-hero__inner { display: grid; align-items: end; gap: clamp(52px, 9vw, 130px); grid-template-columns: 1.35fr .65fr; }
.subpage-hero h1 { max-width: 900px; margin-bottom: 0; }
.subpage-hero__lead { max-width: 520px; margin: 0 0 10px; color: rgba(245,241,233,.7); font-size: 1.08rem; }
.portfolio-section--paper { background: #e9e2d7; }
.portfolio-section__note { margin: 0 0 10px; color: rgba(23,32,28,.58); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.portfolio-grid { display: grid; gap: 18px; grid-auto-flow: dense; grid-template-columns: repeat(12, 1fr); }
.portfolio-item { position: relative; min-height: 380px; margin: 0; overflow: hidden; color: var(--white); background: var(--ink); grid-column: span 5; }
.portfolio-item:nth-child(3n+2) { grid-column: span 7; }
.portfolio-item--feature { min-height: 560px; grid-column: span 7; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.portfolio-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,17,14,.78), transparent 58%); content: ""; }
.portfolio-item:hover img { transform: scale(1.025); }
.portfolio-item figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; padding: 28px; }
.portfolio-item figcaption small { margin-bottom: 6px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.portfolio-item figcaption strong { font-family: var(--display); font-size: clamp(1.55rem, 2vw, 2.25rem); font-weight: 500; line-height: 1.12; }
.portfolio-grid--compact .portfolio-item { min-height: 420px; grid-column: span 4; }
.process-gallery { padding: clamp(80px, 9vw, 130px) 0; color: var(--ivory); background: var(--ink-soft); }
.process-gallery .eyebrow { color: #d69a70; }
.process-gallery__inner { display: grid; align-items: center; gap: 80px; grid-template-columns: .8fr 1.2fr; }
.process-gallery h2 { margin-bottom: 24px; }
.process-gallery p:last-child { color: rgba(245,241,233,.64); }
.process-gallery__images { display: grid; align-items: end; gap: 18px; grid-template-columns: .72fr 1.28fr; }
.process-gallery__images img { width: 100%; height: 440px; object-fit: cover; }
.process-gallery__images img:first-child { height: 360px; }

.service-detail-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(2, 1fr); }
.service-detail-grid article { min-height: 470px; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-detail-grid article > span { color: var(--clay-dark); font-family: var(--display); }
.service-detail-grid h2 { margin: 64px 0 24px; font-size: clamp(2.1rem, 3.4vw, 3.5rem); }
.service-detail-grid p { color: rgba(23,32,28,.68); }
.service-detail-grid ul { margin: 28px 0 0; padding: 0; list-style: none; }
.service-detail-grid li { padding: 8px 0; border-top: 1px solid var(--line); font-size: .85rem; }
.focus-band { color: var(--ivory); background: var(--ink); }
.focus-band__inner { display: grid; min-height: 670px; align-items: stretch; grid-template-columns: 1fr 1fr; }
.focus-band__inner > img { width: 100%; height: 100%; object-fit: cover; }
.focus-band__inner > div { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: clamp(56px, 7vw, 110px); }
.focus-band .eyebrow { color: #d69a70; }
.focus-band h2 { margin-bottom: 28px; }
.focus-band p { margin-bottom: 34px; color: rgba(245,241,233,.68); }
.faq-section { background: var(--paper); }
.faq-layout { display: grid; gap: 80px; grid-template-columns: .65fr 1.35fr; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 54px 28px 0; cursor: pointer; font-family: var(--display); font-size: 1.55rem; font-weight: 500; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 26px; right: 4px; content: "+"; font-family: var(--sans); font-size: 1.3rem; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; margin-bottom: 28px; color: rgba(23,32,28,.68); }

.food-hero { display: grid; min-height: 720px; grid-template-columns: 1fr 1fr; background: var(--paper); }
.food-hero__copy { display: flex; align-items: center; }
.food-hero__copy > div { width: min(620px, calc(100% - 48px)); margin-left: max(24px, calc((100vw - 1240px) / 2)); padding: 80px 48px 80px 0; }
.food-hero h1 { margin-bottom: 28px; font-size: clamp(3.3rem, 5.6vw, 6.5rem); }
.food-hero__copy p:not(.eyebrow) { max-width: 600px; margin-bottom: 34px; color: rgba(23,32,28,.68); font-size: 1.08rem; }
.food-hero figure { min-height: 650px; margin: 0; overflow: hidden; }
.food-hero figure img { width: 100%; height: 100%; object-fit: cover; }
.button--dark-ghost { color: var(--ink); border-color: rgba(23,32,28,.4); background: transparent; }
.button--dark-ghost:hover { color: var(--ivory); border-color: var(--ink); background: var(--ink); }
.venue-grid { display: grid; border-top: 1px solid rgba(245,241,233,.2); border-left: 1px solid rgba(245,241,233,.2); grid-template-columns: repeat(2, 1fr); }
.venue-grid article { min-height: 330px; padding: 42px; border-right: 1px solid rgba(245,241,233,.2); border-bottom: 1px solid rgba(245,241,233,.2); }
.venue-grid h3 { margin: 80px 0 20px; font-size: 2.5rem; }
.venue-grid p { max-width: 520px; margin: 0; color: rgba(245,241,233,.62); }
.food-capabilities__grid { display: grid; align-items: center; gap: 90px; grid-template-columns: 1fr 1fr; }
.food-capabilities__image { height: 700px; }
.food-capabilities__image img { width: 100%; height: 100%; object-fit: cover; }
.check-list { margin: 34px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-top: 1px solid var(--line); }
.check-list li::before { position: absolute; left: 3px; color: var(--clay-dark); content: "✓"; }

.story-grid { display: grid; align-items: center; gap: clamp(60px, 10vw, 150px); grid-template-columns: .8fr 1.2fr; }
.story-grid > div:first-child { height: 680px; }
.story-grid img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-grid p { color: rgba(23,32,28,.68); }
.values-grid .service-card h3 { margin-top: 80px; }

.contact-layout { display: grid; gap: clamp(60px, 9vw, 130px); grid-template-columns: .65fr 1.35fr; }
.contact-sidebar { align-self: start; }
.contact-sidebar h2 { margin-bottom: 45px; font-size: clamp(2.6rem, 4vw, 4.6rem); }
.contact-sidebar ul { margin: 0 0 42px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.contact-sidebar li { display: flex; align-items: start; flex-direction: column; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-sidebar small { margin-bottom: 5px; color: var(--clay-dark); font-size: .65rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-sidebar a { font-family: var(--display); font-size: 1.5rem; text-decoration: none; }
.contact-sidebar address { font-style: normal; }
.contact-form-panel { padding: clamp(32px, 5vw, 70px); border: 1px solid var(--line); background: var(--paper); }
.contact-form-panel__title { margin-bottom: 8px; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.1; }
.contact-form-panel__intro { margin-bottom: 36px; color: rgba(23,32,28,.62); }
.contact-form-panel .h-row { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.contact-form-panel .h-col { min-width: 0; }
.contact-form-panel label { display: block; color: rgba(23,32,28,.72); font-size: .75rem; font-weight: 700; letter-spacing: .03em; }
.contact-form-panel input:not([type="submit"]), .contact-form-panel select, .contact-form-panel textarea { width: 100%; margin-top: 7px; padding: 14px 15px; border: 1px solid rgba(23,32,28,.24); border-radius: 0; color: var(--ink); background: var(--white); }
.contact-form-panel textarea { min-height: 170px; resize: vertical; }
.contact-form-panel input[type="submit"] { display: inline-flex; min-height: 54px; padding: 14px 26px; border: 0; border-radius: 100px; color: var(--white); background: var(--clay); font-size: .76rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.contact-form-panel .wpcf7-acceptance label { display: flex; align-items: start; gap: 9px; font-weight: 500; }
.contact-form-panel .wpcf7-acceptance input { width: auto; margin-top: 4px; }
.contact-map-band { padding: 76px 0; color: var(--ivory); background: var(--ink); }
.contact-map-band__inner { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.contact-map-band .eyebrow { color: #d69a70; }
.contact-map-band h2 { margin-bottom: 18px; }
.contact-map-band p:last-child { margin: 0; color: rgba(245,241,233,.65); }

.breadcrumbs-visible { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.breadcrumbs-visible .shell { display: flex; min-height: 48px; align-items: center; gap: 10px; overflow: hidden; color: rgba(23,32,28,.58); font-size: .69rem; white-space: nowrap; }
.breadcrumbs-visible a { color: var(--ink); text-decoration: none; }
.sector-hero { display: grid; min-height: 700px; grid-template-columns: 1fr 1fr; background: var(--paper); }
.sector-hero__copy { display: flex; align-items: center; }
.sector-hero__copy > div { width: min(650px, calc(100% - 48px)); margin-left: max(24px, calc((100vw - 1240px) / 2)); padding: 80px 54px 80px 0; }
.sector-hero h1 { margin-bottom: 28px; font-size: clamp(3.25rem, 5.35vw, 6.15rem); }
.sector-hero__copy p:not(.eyebrow) { max-width: 600px; margin-bottom: 34px; color: rgba(23,32,28,.68); font-size: 1.08rem; }
.sector-hero__media { min-height: 650px; margin: 0; overflow: hidden; }
.sector-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.sector-showcase { background: var(--paper); }
.sector-showcase__grid { display: grid; align-items: center; gap: clamp(58px, 8vw, 120px); grid-template-columns: 1.2fr .8fr; }
.sector-showcase__gallery { display: grid; align-items: end; gap: 18px; grid-template-columns: 1.08fr .92fr; }
.sector-showcase__gallery figure { height: 650px; margin: 0; overflow: hidden; }
.sector-showcase__gallery figure:last-child { height: 500px; }
.sector-showcase__gallery img { width: 100%; height: 100%; object-fit: cover; }
.sector-showcase__list h2 { margin-bottom: 34px; font-size: clamp(2.6rem, 4vw, 4.7rem); }
.related-services { padding-top: 70px; padding-bottom: 70px; border-top: 1px solid var(--line); background: var(--ivory); }
.related-services .eyebrow { margin-bottom: 24px; }
.related-services__links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-services__links a { display: inline-flex; min-height: 44px; align-items: center; padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px; font-size: .76rem; font-weight: 700; text-decoration: none; transition: 180ms ease; }
.related-services__links a:hover, .related-services__links a:focus-visible { color: var(--ivory); border-color: var(--ink); background: var(--ink); }
.venue-grid .text-link { margin-top: 30px; color: var(--ivory); font-size: .78rem; }
.sector-index { background: var(--paper); }
.sector-index__grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.sector-index__grid a { display: flex; min-height: 280px; flex-direction: column; justify-content: end; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: 180ms ease; }
.sector-index__grid small { margin-bottom: auto; color: var(--clay-dark); font-size: .67rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.sector-index__grid strong { font-family: var(--display); font-size: 2rem; font-weight: 500; line-height: 1.08; }
.sector-index__grid span { margin-top: 15px; color: rgba(23,32,28,.6); font-size: .82rem; }
.sector-index__grid a:hover, .sector-index__grid a:focus-visible { color: var(--ivory); background: var(--ink); }
.sector-index__grid a:hover small, .sector-index__grid a:focus-visible small { color: #d69a70; }
.sector-index__grid a:hover span, .sector-index__grid a:focus-visible span { color: rgba(245,241,233,.62); }
.legal-page__layout { display: grid; gap: clamp(60px, 9vw, 130px); padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(90px, 10vw, 150px); grid-template-columns: .35fr 1fr; }
.legal-page__layout aside { position: sticky; top: 30px; align-self: start; }
.legal-page__layout aside > p:not(.eyebrow) { color: rgba(23,32,28,.62); }
.legal-page__content { max-width: 820px; }
.legal-page__content section { padding: 0 0 46px; border-bottom: 1px solid var(--line); }
.legal-page__content section + section { padding-top: 46px; }
.legal-page__content h2 { margin-bottom: 22px; font-size: clamp(2rem, 3vw, 3rem); }
.legal-page__content p, .legal-page__content li { color: rgba(23,32,28,.72); }
.legal-page__content ul { padding-left: 1.25em; }
.legal-page__content li + li { margin-top: 12px; }
.not-found-page { display: flex; min-height: 70vh; align-items: center; background: var(--paper); }
.not-found-page__inner { padding-top: 100px; padding-bottom: 100px; }
.not-found-page h1 { max-width: 900px; margin-bottom: 28px; }
.not-found-page p:not(.eyebrow) { max-width: 650px; margin-bottom: 36px; color: rgba(23,32,28,.68); font-size: 1.08rem; }

@media (max-width: 1060px) {
  :root { --shell: min(100% - 36px, 1240px); }
  .site-header__main { min-height: 78px; }
  .nav-toggle { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
  .nav-toggle__label { font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .nav-toggle__icon { display: flex; width: 24px; flex-direction: column; gap: 6px; }
  .nav-toggle__icon i { display: block; width: 100%; height: 1px; background: currentColor; transition: 180ms ease; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 99; inset: 112px 0 0; display: flex; align-items: stretch; flex-direction: column; gap: 34px; padding: 44px 28px; color: var(--ivory); background: var(--ink); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: 180ms ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav__list { align-items: stretch; flex-direction: column; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid rgba(245,241,233,.16); }
  .site-nav__list a { display: block; padding: 14px 0; font-family: var(--display); font-size: 2rem; font-weight: 500; }
  .site-nav__cta { align-self: flex-start; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { width: var(--shell); margin-inline: auto; padding: 84px 0 76px; }
  .hero__media { min-height: min(70vw, 680px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 310px; }
  .service-card h3 { margin-top: 58px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid__intro { grid-column: 1 / -1; padding: 0 0 34px; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: 2; }
  .subpage-hero__inner { grid-template-columns: 1fr; }
  .portfolio-grid--compact .portfolio-item { grid-column: span 6; }
  .food-hero { grid-template-columns: 1fr; }
  .food-hero__copy > div { width: var(--shell); margin-inline: auto; padding: 80px 0; }
  .food-hero figure { min-height: 620px; }
  .food-capabilities__grid { gap: 60px; }
  .story-grid { gap: 60px; }
  .sector-hero { grid-template-columns: 1fr; }
  .sector-hero__copy > div { width: var(--shell); margin-inline: auto; padding: 80px 0; }
  .sector-hero__media { min-height: 620px; }
  .sector-showcase__grid { gap: 60px; grid-template-columns: 1fr; }
  .sector-showcase__gallery { order: 2; }
  .sector-index__grid { grid-template-columns: repeat(2, 1fr); }
  .legal-page__layout { grid-template-columns: 1fr; }
  .legal-page__layout aside { position: static; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 30px); }
  body { font-size: 16px; }
  .section { padding: 78px 0; }
  .site-header__bar-inner { min-height: 30px; justify-content: center; }
  .site-header__bar-inner > span { display: none; }
  .site-header__main { min-height: 72px; }
  .site-nav { inset: 102px 0 0; }
  .brand__name { font-size: 1.75rem; }
  .brand__descriptor { font-size: .49rem; }
  .hero__copy { padding: 68px 0 60px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(3.25rem, 15vw, 5rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__note { line-height: 1.6; }
  .hero__media { min-height: 520px; }
  .hero__media figcaption { right: 20px; bottom: 20px; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip__grid > div { min-height: 110px; padding: 20px; border-bottom: 1px solid var(--line); }
  .proof-strip__grid > div:nth-child(odd) { border-left: 0; }
  .proof-strip__grid > div:nth-child(even) { border-right: 0; }
  .proof-strip strong { font-size: 1.8rem; }
  .split-heading { gap: 30px; grid-template-columns: 1fr; }
  .split-heading__copy { padding-top: 0; }
  .section-heading { margin-bottom: 46px; }
  .section-heading--row { align-items: start; flex-direction: column; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 28px 24px 34px; }
  .service-card h3 { margin: 38px 0 15px; }
  .project-grid { gap: 14px; grid-template-columns: 1fr; grid-template-rows: none; }
  .project-card, .project-card--wide { min-height: 430px; grid-row: auto; }
  .project-card--wide { min-height: 560px; }
  .project-card__overlay { padding: 24px; }
  .process-layout { gap: 42px; grid-template-columns: 1fr; }
  .process-layout__heading { position: static; }
  .process-list li { gap: 14px; grid-template-columns: 36px 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 280px; }
  .contact-cta__inner { gap: 44px; grid-template-columns: 1fr; }
  .site-footer__grid { gap: 42px; grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { align-items: start; flex-direction: column; justify-content: center; padding: 22px 0; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; justify-content: center; padding: 12px; }
  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .page-hero { padding: 72px 0 58px; }
  .content-shell { padding-top: 54px; }
  .subpage-hero { padding: 78px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item, .portfolio-item:nth-child(3n+2), .portfolio-item--feature, .portfolio-grid--compact .portfolio-item { min-height: 430px; grid-column: auto; }
  .portfolio-item--feature { min-height: 520px; }
  .process-gallery__inner { gap: 46px; grid-template-columns: 1fr; }
  .process-gallery__images { gap: 10px; }
  .process-gallery__images img { height: 300px; }
  .process-gallery__images img:first-child { height: 250px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid article { min-height: 0; padding: 30px 24px; }
  .service-detail-grid h2 { margin-top: 42px; }
  .focus-band__inner { grid-template-columns: 1fr; }
  .focus-band__inner > img { min-height: 480px; }
  .faq-layout { gap: 44px; grid-template-columns: 1fr; }
  .food-hero__copy > div { padding: 68px 0; }
  .food-hero h1 { font-size: clamp(3.15rem, 14vw, 5rem); }
  .food-hero figure { min-height: 500px; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-grid article { min-height: 0; padding: 30px 24px 36px; }
  .venue-grid h3 { margin-top: 45px; }
  .food-capabilities__grid { gap: 44px; grid-template-columns: 1fr; }
  .food-capabilities__image { height: 520px; }
  .story-grid { gap: 44px; grid-template-columns: 1fr; }
  .story-grid > div:first-child { height: 540px; }
  .contact-layout { gap: 54px; grid-template-columns: 1fr; }
  .contact-form-panel { padding: 28px 20px; }
  .contact-form-panel .h-row { gap: 0; grid-template-columns: 1fr; }
  .contact-map-band__inner { align-items: start; flex-direction: column; gap: 32px; }
  .sector-hero__copy > div { padding: 68px 0; }
  .sector-hero h1 { font-size: clamp(3.1rem, 14vw, 4.9rem); }
  .sector-hero__media { min-height: 500px; }
  .sector-showcase__gallery { gap: 10px; }
  .sector-showcase__gallery figure { height: 440px; }
  .sector-showcase__gallery figure:last-child { height: 340px; }
  .sector-index__grid { grid-template-columns: 1fr; }
  .sector-index__grid a { min-height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
