* {
  box-sizing: border-box;
}

:root {
  --ink: #2e2b26;
  --ink-deep: #1c1a16;
  --paper: #f6f5f2;
  --paper-alt: #efede7;
  --gold: #c9a277;
  --bronze: #a8815a;
  --muted: rgba(46, 43, 38, .68);
  --light-muted: rgba(246, 245, 242, .7);
  --max: 1360px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Archivo, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

@keyframes cgs-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cgs-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cgs-pan {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes cgs-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

[data-rule] {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

[data-rule].in {
  transform: scaleX(1);
}

.container {
  width: min(100% - 96px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  animation: cgs-fade 1.2s ease both;
  transition: background .5s ease, backdrop-filter .5s ease;
}

.site-header.is-solid {
  background: rgba(28, 26, 22, .92);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
  color: var(--paper);
}

.brand:hover {
  color: var(--paper);
}

.brand img {
  height: 72px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  flex-wrap: nowrap;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

.main-nav a {
  color: var(--paper);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-bottom-color: var(--gold);
}

.nav-dropdown {
  position: relative;
  padding: 18px 0;
  margin: -18px 0;
}

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

.nav-dropdown > a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .75;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 250px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(28, 26, 22, .96);
  border: 1px solid rgba(246, 245, 242, .14);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 12px 14px;
  border-bottom: 0;
  color: rgba(246, 245, 242, .78);
  font-size: 11px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  border-bottom: 0;
  background: rgba(246, 245, 242, .08);
  color: var(--gold);
}

.main-nav .phone-link {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex: none;
  background: rgba(246, 245, 242, .95);
  color: var(--ink);
  padding: 13px 22px;
  font-size: 12px;
  letter-spacing: .14em;
  border-bottom: 0;
}

.main-nav .phone-link:hover {
  background: var(--gold);
  border-bottom: 0;
}

.menu-toggle,
.menu-close {
  display: none;
}

.mobile-menu-layer,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 90vh;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: -4%;
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  animation: cgs-fade 1.6s ease both, cgs-pan 26s 1s ease-out both;
}

.service-page .hero-image {
  background-image: url("https://images.unsplash.com/photo-1600489000022-c2086d79f9d4?auto=format&fit=crop&w=2400&q=82");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 26, 22, .82) 0%, rgba(28, 26, 22, .5) 30%, rgba(28, 26, 22, .58) 62%, rgba(28, 26, 22, .92) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 55%, rgba(28, 26, 22, 0) 12%, rgba(28, 26, 22, .55) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 0;
  color: var(--paper);
}

.hero h1 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 1;
  letter-spacing: 0;
  max-width: 28ch;
  text-wrap: balance;
}

.service-page .hero h1 {
  max-width: 24ch;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
  animation: cgs-rise 1.1s cubic-bezier(.16, 1, .3, 1) both;
}

.hero h1 span:nth-child(2) {
  animation-delay: .14s;
}

.hero h1 span:nth-child(3) {
  animation-delay: .28s;
}

.hero h1 em,
.about-panel em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.6;
  max-width: 60ch;
  color: rgba(246, 245, 242, .82);
  text-wrap: pretty;
  animation: cgs-rise 1.1s .28s cubic-bezier(.16, 1, .3, 1) both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  padding: 22px 40px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .4s ease, color .4s ease, border-color .4s ease, transform .4s ease;
}

.button span {
  font-family: "IBM Plex Mono", monospace;
}

.button-light {
  margin-top: 44px;
  background: var(--paper);
  color: var(--ink);
  animation: cgs-rise 1.1s .42s cubic-bezier(.16, 1, .3, 1) both;
}

.button-light:hover,
.button-gold:hover {
  background: var(--gold);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--bronze);
  color: #fff;
}

.button-outline-light {
  border-color: rgba(246, 245, 242, .3);
  color: var(--paper);
}

.button-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.seal-band {
  position: relative;
  overflow: hidden;
  padding: 34px 0 36px;
  background: var(--paper-alt);
  border-bottom: 1px solid rgba(46, 43, 38, .14);
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--paper-alt) 12%, rgba(239, 237, 231, 0) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--paper-alt) 12%, rgba(239, 237, 231, 0) 100%);
}

.marquee {
  display: flex;
  width: max-content;
  animation: cgs-marquee 46s linear infinite;
}

.marquee-group,
.seal-item {
  display: flex;
  align-items: center;
}

.seal-item {
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
}

.seal-item span:first-child {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  color: rgba(46, 43, 38, .88);
}

.diamond {
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--bronze);
  transform: rotate(45deg);
}

.about-section {
  position: relative;
  padding: 0;
  background: var(--ink);
}

.about-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 6px;
  opacity: .9;
}

.mosaic-tile {
  position: relative;
  overflow: hidden;
  background: #3a362f;
}

.mosaic-tile div {
  width: 100%;
  height: 100%;
  background: var(--tile-bg) center / cover;
  filter: saturate(.9) brightness(.92);
}

.about-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 26, 22, .35), rgba(28, 26, 22, .15) 40%, rgba(28, 26, 22, .4));
}

.about-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 48px 150px;
  display: flex;
  justify-content: center;
}

.about-panel {
  position: relative;
  width: min(100%, 820px);
  padding: 74px 78px 88px;
  text-align: center;
  background: var(--paper);
  box-shadow: 0 40px 90px rgba(28, 26, 22, .22);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  flex: none;
  transform: rotate(45deg);
}

.eyebrow-dark {
  color: rgba(46, 43, 38, .62);
}

.eyebrow-dark span {
  background: var(--bronze);
}

.eyebrow-light {
  color: rgba(246, 245, 242, .7);
}

.eyebrow-light span {
  background: var(--gold);
}

.about-panel .eyebrow {
  justify-content: center;
}

h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.about-panel h2 {
  margin-top: 30px;
  font-size: clamp(34px, 3.9vw, 58px);
  line-height: 1.02;
  text-wrap: balance;
}

.about-panel p {
  margin: 30px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(46, 43, 38, .8);
  max-width: 62ch;
  text-wrap: pretty;
}

.about-panel p + p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(46, 43, 38, .62);
  max-width: 64ch;
}

.floating-cta {
  position: absolute;
  left: 50%;
  bottom: -33px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(168, 129, 90, .28);
}

.floating-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.dark-section {
  background: var(--ink);
  color: var(--paper);
}

.portfolio-section,
.process-section {
  padding: 130px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.section-head h2,
.section-intro h2 {
  margin-top: 26px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-button {
  background: transparent;
  color: rgba(246, 245, 242, .7);
  border: 1px solid rgba(246, 245, 242, .24);
  padding: 11px 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--gold);
  color: var(--paper);
}

.portfolio-grid {
  margin-top: 60px;
  column-count: 3;
  column-gap: 14px;
}

.project-card {
  margin: 0 0 14px;
  break-inside: avoid;
  position: relative;
  aspect-ratio: var(--ratio);
  overflow: hidden;
  border-radius: 10px;
  background: #3a362f;
}

.project-card.is-hidden {
  display: none;
}

.project-card div {
  position: absolute;
  inset: 0;
  background: var(--project-bg) center / cover;
  filter: saturate(.92);
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1), filter .7s ease;
}

.project-card:hover div {
  transform: scale(1.05);
  filter: saturate(1);
}

.center-action {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.services-section,
.why-section,
.contact-section {
  padding: 140px 0;
}

.section-intro {
  max-width: 415px;
}

.section-intro h2 {
  text-wrap: balance;
}

.services-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--paper-alt);
  border: 1px solid rgba(46, 43, 38, .14);
  border-radius: 10px;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), border-color .5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--bronze);
}

.service-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #3a362f;
}

.service-image div {
  position: absolute;
  inset: 0;
  background: var(--service-bg) center / cover;
  filter: saturate(.92);
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1), filter .7s ease;
}

.service-card:hover .service-image div {
  transform: scale(1.05);
  filter: saturate(1);
}

.service-copy {
  padding: 36px 38px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-copy h3,
.process-step h3 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.05;
}

.service-copy p,
.why-copy p,
.process-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.service-link {
  align-self: flex-start;
  margin-top: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.service-link:hover {
  color: var(--ink);
}

.service-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.service-hero-image {
  position: absolute;
  inset: -3%;
  background-image: url("https://images.unsplash.com/photo-1600489000022-c2086d79f9d4?auto=format&fit=crop&w=2400&q=82");
  background-size: cover;
  background-position: center;
  animation: cgs-fade 1.4s ease both, cgs-pan 24s .6s ease-out both;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 26, 22, .9) 0%, rgba(28, 26, 22, .68) 45%, rgba(28, 26, 22, .24) 100%);
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(28, 26, 22, 0), rgba(28, 26, 22, .84));
}

.service-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, var(--max));
  margin: 0 auto;
  padding-top: 96px;
}

.service-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.service-hero p {
  margin: 30px 0 0;
  max-width: 58ch;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(246, 245, 242, .82);
  text-wrap: pretty;
}

.service-hero .button {
  margin-top: 42px;
}

.kitchen-portfolio-section {
  padding: 130px 0;
  background: var(--paper);
}

.kitchen-projects-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.kitchen-project-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #3a362f;
}

.kitchen-project-card:first-child {
  grid-row: span 2;
}

.kitchen-project-card div {
  position: absolute;
  inset: 0;
  background: var(--project-bg) center / cover;
  filter: saturate(.96);
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}

.kitchen-project-card:hover div {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.service-story-section {
  padding: 140px 0;
  background: var(--ink);
  color: var(--paper);
}

.service-story-grid {
  display: grid;
  grid-template-columns: .44fr .56fr;
  gap: 72px;
  align-items: center;
}

.service-story-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 10px;
  background: #3a362f;
}

.service-story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9);
}

.service-story-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-story-copy h2 {
  max-width: 13ch;
}

.service-story-copy p {
  margin: 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(246, 245, 242, .7);
  text-wrap: pretty;
}

.service-story-copy .lead {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.3;
  color: var(--paper);
}

.service-story-copy .button {
  align-self: flex-start;
  margin-top: 12px;
}

.reviews-section {
  padding: 130px 0;
  background: var(--paper-alt);
  border-top: 1px solid rgba(46, 43, 38, .14);
  border-bottom: 1px solid rgba(46, 43, 38, .14);
}

.reviews-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-height: 280px;
  padding: 38px 34px;
  background: var(--paper);
  border: 1px solid rgba(46, 43, 38, .14);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), border-color .5s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--bronze);
}

.stars {
  color: var(--bronze);
  letter-spacing: .3em;
  font-size: 13px;
}

.review-card p {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
  text-wrap: pretty;
}

.review-card cite {
  margin-top: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(46, 43, 38, .55);
  font-style: normal;
}

.why-grid {
  display: grid;
  grid-template-columns: .44fr .56fr;
  gap: 72px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  background: #3a362f;
}

.why-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92);
}

.offset-frame {
  position: absolute;
  left: -14px;
  top: -14px;
  right: 34px;
  bottom: 34px;
  border: 1px solid rgba(168, 129, 90, .5);
  border-radius: 10px;
  pointer-events: none;
}

.why-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-copy .lead {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 34ch;
}

.why-copy p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 58ch;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.differential-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 22px;
  background: var(--paper-alt);
  border: 1px solid rgba(46, 43, 38, .16);
  border-radius: 10px;
}

.differential-card i,
.differential-card svg {
  width: 26px;
  height: 26px;
  color: var(--bronze);
  stroke-width: 1.5;
}

.differential-card span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.process-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.process-steps-wrap {
  position: relative;
  margin-top: 78px;
}

.process-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 26px;
  height: 1px;
  background: rgba(246, 245, 242, .22);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.process-number {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 1px solid rgba(246, 245, 242, .3);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  color: var(--gold);
  flex: none;
}

.process-step h3 {
  margin-top: 6px;
}

.process-step p {
  max-width: 26ch;
  color: rgba(246, 245, 242, .65);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(360px, .42fr);
  gap: 34px;
  align-items: stretch;
}

.contact-panel {
  padding: 58px 56px 60px;
  background: var(--paper-alt);
  border: 1px solid rgba(46, 43, 38, .14);
}

.contact-section h2 {
  margin: 26px 0 0;
  font-size: clamp(36px, 4.2vw, 60px);
}

.contact-lead {
  margin: 24px 0 42px;
  max-width: 55ch;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(46, 43, 38, .68);
  text-wrap: pretty;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(46, 43, 38, .55);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(46, 43, 38, .28);
  background: transparent;
  padding: 12px 0;
  font-size: 17px;
  color: var(--ink);
  outline: 0;
  resize: vertical;
  transition: border-color .4s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--bronze);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bronze) 50%), linear-gradient(135deg, var(--bronze) 50%, transparent 50%);
  background-position: calc(100% - 16px) 52%, calc(100% - 10px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color: rgba(46, 43, 38, .82);
}

.form-footer {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.form-footer p {
  margin: 0;
  max-width: 26ch;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(46, 43, 38, .55);
}

.form-button {
  align-self: start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(46, 43, 38, .16);
  background: var(--paper);
}

.map-embed {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-alt);
  border-bottom: 1px solid rgba(46, 43, 38, .16);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.82) contrast(.96);
}

.contact-direct {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 34px 34px 36px;
}

.contact-direct-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(46, 43, 38, .48);
}

.contact-direct h3 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.contact-direct p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(46, 43, 38, .66);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.contact-actions a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(46, 43, 38, .16);
  background: var(--paper-alt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.contact-actions a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.contact-actions svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.site-footer {
  padding: 90px 0 40px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .55fr .7fr .7fr;
  gap: 44px;
  align-items: start;
  text-align: center;
}

.footer-brand {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  height: 120px;
  width: auto;
  display: block;
  opacity: .9;
}

.footer-brand span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  line-height: 1.1;
}

.footer-brand p,
.footer-links p {
  margin: 0;
  color: rgba(246, 245, 242, .6);
  font-size: 15px;
  line-height: 1.7;
}

.footer-brand p {
  max-width: 34ch;
  margin-inline: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-links > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(246, 245, 242, .45);
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(246, 245, 242, .85);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 245, 242, .16);
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(246, 245, 242, .45);
}

.footer-bottom a:hover {
  color: var(--gold);
}

@media (max-width: 1020px) {
  .container {
    width: min(100% - 48px, var(--max));
  }

  .header-inner {
    padding: 16px 24px;
  }

  .main-nav {
    gap: 14px;
    font-size: 11px;
  }

  .portfolio-grid {
    column-count: 2;
  }

  .service-hero-content {
    width: min(100% - 48px, var(--max));
  }

  .kitchen-projects-grid,
  .service-story-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-projects-grid {
    grid-auto-rows: 320px;
  }

  .services-grid,
  .reviews-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .contact-grid {
    gap: 52px;
  }

  .contact-panel {
    padding: 46px 38px 48px;
  }

  .map-embed {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .site-header {
    background: rgba(28, 26, 22, .88);
    backdrop-filter: blur(14px);
    z-index: 1000;
  }

  .header-inner {
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
  }

  .brand img {
    height: 64px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(246, 245, 242, .22);
    background: rgba(246, 245, 242, .08);
    color: var(--paper);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform .3s ease, opacity .3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-layer {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: block;
    background: rgba(28, 26, 22, .64);
    opacity: 0;
    pointer-events: none;
    transition: opacity .36s ease;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    width: min(92vw, 390px);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    isolation: isolate;
    background: #2e2b26;
    background-image: linear-gradient(180deg, #2e2b26 0%, #24211d 100%);
    color: var(--paper);
    box-shadow: -28px 0 70px rgba(0, 0, 0, .28);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .42s cubic-bezier(.16, 1, .3, 1), visibility .42s;
  }

  body.menu-open .mobile-menu-layer {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .mobile-menu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(246, 245, 242, .14);
  }

  .mobile-menu-head img {
    height: 62px;
    width: auto;
  }

  .menu-close {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(246, 245, 242, .22);
    background: transparent;
    color: var(--paper);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: none;
  }

  .menu-close span {
    position: absolute;
    width: 19px;
    height: 1px;
    background: currentColor;
  }

  .menu-close span:first-child {
    transform: rotate(45deg);
  }

  .menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 0 22px;
  }

  .mobile-nav a,
  .mobile-nav span {
    padding: 13px 0;
    border-bottom: 1px solid rgba(246, 245, 242, .12);
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(27px, 8vw, 32px);
    line-height: 1.05;
  }

  .mobile-nav span {
    color: rgba(246, 245, 242, .72);
  }

  .mobile-nav .mobile-sub-link {
    padding: 10px 0 10px 18px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(246, 245, 242, .68);
  }

  .mobile-nav a:hover {
    color: var(--gold);
  }

  .mobile-menu-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding-top: 16px;
    border-top: 1px solid rgba(246, 245, 242, .14);
  }

  .mobile-menu-actions a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(246, 245, 242, .08);
    border: 1px solid rgba(246, 245, 242, .16);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .mobile-menu-actions a:first-child {
    background: var(--paper);
    color: var(--ink);
  }

  .mobile-menu-actions svg {
    width: 17px;
    height: 17px;
    stroke-width: 1.8;
  }

  @supports (height: 100dvh) {
    .mobile-menu {
      height: 100dvh;
    }
  }

  .hero {
    height: auto;
    min-height: 710px;
  }

  .service-hero {
    min-height: 720px;
  }

  .service-hero::before {
    background: linear-gradient(180deg, rgba(28, 26, 22, .88) 0%, rgba(28, 26, 22, .62) 52%, rgba(28, 26, 22, .9) 100%);
  }

  .service-hero-content {
    width: calc(100% - 48px);
    padding-top: 120px;
    text-align: center;
  }

  .service-hero h1 {
    max-width: none;
    font-size: clamp(46px, 13vw, 70px);
  }

  .service-hero p {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-content {
    padding: 142px 24px 70px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.55;
  }

  .button {
    width: 100%;
    min-height: 60px;
    padding: 18px 22px;
    font-size: 11px;
    letter-spacing: .13em;
  }

  .about-inner,
  .services-section,
  .why-section,
  .contact-section {
    padding: 92px 24px;
  }

  .contact-section {
    width: calc(100% - 24px);
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-section,
  .reviews-section,
  .process-section,
  .kitchen-portfolio-section,
  .service-story-section {
    padding: 92px 0;
  }

  .kitchen-projects-grid {
    grid-auto-rows: 245px;
    gap: 12px;
  }

  .kitchen-project-card:first-child {
    grid-row: span 1;
  }

  .service-story-grid {
    gap: 44px;
  }

  .service-story-media {
    min-height: 430px;
  }

  .service-story-copy {
    text-align: center;
  }

  .service-story-copy h2,
  .service-story-copy p {
    max-width: none;
  }

  .service-story-copy .button {
    align-self: stretch;
  }

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

  .about-panel {
    padding: 48px 24px 72px;
  }

  .floating-cta {
    width: calc(100% - 48px);
    bottom: -30px;
  }

  .section-head {
    gap: 30px;
  }

  .filter-bar {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 calc(50% - 8px);
    min-height: 42px;
  }

  .portfolio-grid {
    column-count: 1;
  }

  .services-grid,
  .reviews-grid,
  .process-steps,
  .differentials-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-direct {
    padding: 34px 20px 36px;
  }

  .form-footer,
  .form-button {
    width: 100%;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links a,
  .footer-links p,
  .footer-bottom span {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
  }
}
