:root {
  color-scheme: light;
  --ink: #202421;
  --muted: #626e68;
  --paper: #f9f7ef;
  --surface: #ffffff;
  --line: #dcd8cb;
  --gold: #d7a838;
  --gold-dark: #91640f;
  --sage: #557265;
  --river: #2e7187;
  --clay: #b95b3b;
  --night: #17211d;
  --shadow: 0 22px 54px rgba(32, 36, 33, 0.16);
  --edge-space: clamp(18px, 5vw, 70px);
  --site-max: 1440px;
  --page-gutter: max(var(--edge-space), calc((100vw - var(--site-max)) / 2 + var(--edge-space)));
  --rail-gutter: max(0px, calc((100vw - var(--site-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  align-items: center;
  background: rgba(249, 247, 239, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px var(--page-gutter);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-phone {
  align-items: center;
  background: #f1c65c;
  border: 1px solid rgba(145, 100, 15, 0.24);
  border-radius: 8px;
  color: #231a08;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.94rem;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: #e3b239;
  outline: 3px solid rgba(241, 198, 92, 0.28);
  outline-offset: 3px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: min(100%, 340px);
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: #f1c65c;
  border: 1px solid rgba(145, 100, 15, 0.28);
  border-radius: 8px;
  box-shadow: inset 0 -10px 18px rgba(145, 100, 15, 0.12);
  color: #231a08;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.12;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
  padding: 9px 11px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  outline: none;
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.88) 0%, rgba(23, 33, 29, 0.72) 42%, rgba(23, 33, 29, 0.18) 78%),
    url("assets/golden-goose-hero-kitchen.jpg") center right / cover no-repeat;
  color: #fffdf5;
  display: flex;
  min-height: min(720px, calc(100vh - 48px));
  padding: clamp(52px, 8vw, 92px) var(--page-gutter);
}

.hero-content {
  max-width: 760px;
  padding-bottom: clamp(16px, 3vw, 30px);
}

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

.hero .eyebrow {
  color: #f3ca61;
}

h1 {
  font-size: 4.35rem;
  line-height: 1.01;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 253, 245, 0.82);
  font-size: 1.22rem;
  line-height: 1.62;
  margin-bottom: 28px;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.quote-form button,
.call-modal-close {
  border-radius: 8px;
  display: inline-flex;
  font-weight: 880;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  text-decoration: none;
}

.primary-button,
.quote-form button {
  background: #f1c65c;
  border: 0;
  color: #231a08;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fffdf5;
}

.primary-button:hover,
.primary-button:focus-visible,
.quote-form button:hover,
.quote-form button:focus-visible {
  background: #e3b239;
  outline: 3px solid rgba(241, 198, 92, 0.28);
  outline-offset: 3px;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: 3px solid rgba(255, 255, 255, 0.18);
  outline-offset: 3px;
}

.service-rail {
  background: var(--night);
  color: #fffdf5;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: var(--rail-gutter);
}

.service-rail div {
  background: rgba(255, 255, 255, 0.045);
  min-height: 158px;
  padding: 26px clamp(18px, 4vw, 44px);
}

.service-rail span,
.service-rail strong {
  display: block;
}

.service-rail span {
  color: #f1c65c;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.service-rail strong {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.service-rail p {
  color: rgba(255, 253, 245, 0.72);
  line-height: 1.55;
  margin: 0;
}

.section-pad {
  padding: clamp(50px, 7vw, 86px) var(--page-gutter);
}

.intro {
  align-items: start;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.92fr);
}

.intro > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 0;
}

h2 {
  font-size: 3.05rem;
  line-height: 1.06;
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.05fr);
  margin-bottom: 30px;
}

.section-heading h2 {
  grid-column: 1 / 2;
}

.section-heading > p:not(.eyebrow) {
  align-self: end;
  color: var(--muted);
  grid-column: 2 / 3;
  line-height: 1.65;
  margin-bottom: 0;
}

.services {
  background: #f3efe2;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 278px;
  padding: 24px;
}

.service-grid span {
  align-items: center;
  background: #fff3c7;
  border: 1px solid #ead58b;
  border-radius: 999px;
  color: var(--gold-dark);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  margin-bottom: 22px;
  min-width: 52px;
  padding: 0 12px;
  text-transform: uppercase;
}

.service-grid article:nth-child(3n + 2) span {
  background: #e6f0ed;
  border-color: #cadcd5;
  color: var(--sage);
}

.service-grid article:nth-child(3n) span {
  background: #e3f0f4;
  border-color: #c5dbe2;
  color: var(--river);
}

.service-grid h3,
.approach-grid h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.service-grid p,
.approach-grid p,
.area-band p,
.quote-band p {
  color: var(--muted);
  line-height: 1.62;
}

.learn-more-link {
  align-items: center;
  align-self: flex-start;
  border: 1px solid #cadcd5;
  border-radius: 8px;
  color: var(--sage);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 860;
  justify-content: center;
  margin-top: auto;
  min-height: 42px;
  padding: 10px 14px;
  text-decoration: none;
}

.learn-more-link:hover,
.learn-more-link:focus-visible {
  background: #e6f0ed;
  color: var(--night);
  outline: 3px solid rgba(85, 114, 101, 0.22);
  outline-offset: 3px;
}

.service-page-hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(23, 33, 29, 0.9) 0%, rgba(23, 33, 29, 0.74) 48%, rgba(23, 33, 29, 0.22) 82%),
    url("assets/golden-goose-hero-kitchen.jpg") center right / cover no-repeat;
  color: #fffdf5;
  display: grid;
  min-height: min(620px, calc(100vh - 82px));
  padding: clamp(52px, 8vw, 92px) var(--page-gutter);
}

.service-page-hero .eyebrow {
  color: #f3ca61;
}

.service-page-hero h1 {
  max-width: 860px;
}

.service-page-hero p:not(.eyebrow) {
  color: rgba(255, 253, 245, 0.82);
  font-size: 1.18rem;
  line-height: 1.62;
  max-width: 680px;
}

.breadcrumb {
  align-items: center;
  color: rgba(255, 253, 245, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 780;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #f3ca61;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #fffdf5;
  outline: none;
  text-decoration: underline;
}

.service-detail {
  background: var(--surface);
  display: grid;
  gap: clamp(26px, 5vw, 54px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  padding: clamp(50px, 7vw, 86px) var(--page-gutter);
}

.service-detail-main {
  max-width: 820px;
}

.service-detail-main > p,
.service-checklist li,
.service-sidebar p,
.service-steps p,
.service-related p {
  color: var(--muted);
  line-height: 1.66;
}

.service-detail-main h2,
.service-steps h2,
.service-related h2 {
  margin-bottom: 18px;
}

.service-checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.service-checklist li {
  border-left: 5px solid var(--gold);
  padding: 4px 0 4px 16px;
}

.service-sidebar {
  background: #fbfcf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.service-sidebar h2 {
  font-size: 1.45rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.service-sidebar .primary-button {
  margin-top: 10px;
  width: 100%;
}

.service-steps {
  background: #f3efe2;
  padding: clamp(50px, 7vw, 86px) var(--page-gutter);
}

.step-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.step-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 210px;
  padding: 22px;
}

.step-grid span {
  color: var(--gold-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.step-grid h3 {
  font-size: 1.08rem;
  line-height: 1.26;
  margin-bottom: 10px;
}

.service-related {
  background: #fbfcf8;
  border-top: 1px solid var(--line);
  padding: clamp(50px, 7vw, 86px) var(--page-gutter);
}

.related-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.related-grid a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  display: grid;
  font-weight: 860;
  min-height: 76px;
  padding: 16px;
  text-decoration: none;
}

.related-grid a:hover,
.related-grid a:focus-visible {
  background: #e6f0ed;
  outline: 3px solid rgba(85, 114, 101, 0.22);
  outline-offset: 3px;
}

.photo-story {
  align-items: stretch;
  background: var(--surface);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.photo-story img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.photo-story div {
  align-self: center;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 70px);
}

.photo-story p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
  margin-top: 22px;
}

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

.approach-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.approach-grid article {
  border-left: 5px solid var(--gold);
  padding: 6px 22px 8px;
}

.approach-grid article:nth-child(2) {
  border-left-color: var(--sage);
}

.approach-grid article:nth-child(3) {
  border-left-color: var(--clay);
}

.area-band {
  align-items: start;
  background: #fbfcf8;
  border-block: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  padding: clamp(50px, 7vw, 86px) var(--page-gutter);
}

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

.area-list a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--sage);
  border-radius: 8px;
  display: flex;
  font-weight: 780;
  min-height: 52px;
  padding: 12px 14px;
  text-decoration: none;
}

.area-list a:first-child {
  background: #fff4ca;
  border-color: #ead58b;
  border-left-color: var(--gold);
}

.quote-band {
  align-items: start;
  background: var(--night);
  color: #fffdf5;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.66fr);
  padding: clamp(50px, 7vw, 86px) var(--page-gutter);
}

.quote-band .eyebrow {
  color: #f1c65c;
}

.quote-band h2 {
  max-width: 650px;
}

.quote-band p {
  color: rgba(255, 253, 245, 0.72);
}

.quote-copy img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 28px;
  max-height: 280px;
  object-fit: cover;
  width: min(100%, 620px);
}

.quote-form {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.quote-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 820;
  gap: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.quote-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-form .full-row {
  grid-column: 1 / -1;
}

.quote-form .form-honeypot {
  display: none;
}

.quote-form .turnstile-slot:empty {
  display: none;
}

.quote-form .turnstile-slot {
  min-height: 66px;
}

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

.quote-form button {
  cursor: pointer;
  font: inherit;
  width: 100%;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.quote-form p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.quote-form .form-status {
  color: #22533c;
  font-size: 0.9rem;
  font-weight: 780;
  margin: 0;
  min-height: 1.3em;
}

.quote-form .form-status[data-state="error"] {
  color: #9a2f22;
}

.quote-form .call-request-button {
  background: #e6f0ed;
  border: 1px solid #cadcd5;
  color: var(--night);
}

.quote-form .call-request-button:hover,
.quote-form .call-request-button:focus-visible {
  background: #d5e5df;
  outline: 3px solid rgba(85, 114, 101, 0.24);
  outline-offset: 3px;
}

.call-modal {
  align-items: center;
  background: rgba(23, 33, 29, 0.74);
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 80;
}

.call-modal[hidden] {
  display: none;
}

.call-modal:not([hidden]) {
  display: flex;
}

.call-modal-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: 560px;
  padding: clamp(24px, 5vw, 36px);
  position: relative;
  width: min(100%, 560px);
}

.call-modal-panel h2 {
  font-size: clamp(1.95rem, 5vw, 2.7rem);
  margin-bottom: 16px;
}

.call-modal-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

.call-modal-number {
  align-items: center;
  background: #f1c65c;
  border-radius: 8px;
  color: #231a08;
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 900;
  justify-content: center;
  margin-top: 6px;
  min-height: 52px;
  padding: 14px 18px;
  text-decoration: none;
  width: 100%;
}

.call-modal-close {
  background: #e6f0ed;
  border: 1px solid #cadcd5;
  color: var(--night);
  cursor: pointer;
  min-height: 38px;
  padding: 8px 12px;
  position: absolute;
  right: 14px;
  top: 14px;
}

.site-footer {
  align-items: center;
  background: #fbfcf8;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 20px var(--page-gutter);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--sage);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  outline: none;
  text-decoration: underline;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.48rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-phone {
    align-self: flex-start;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(23, 33, 29, 0.88), rgba(23, 33, 29, 0.58)),
      url("assets/golden-goose-hero-kitchen.jpg") center / cover no-repeat;
    min-height: 620px;
  }

  .service-rail,
  .intro,
  .section-heading,
  .photo-story,
  .approach-grid,
  .area-band,
  .quote-band,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .section-heading > p:not(.eyebrow) {
    grid-column: auto;
  }

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

  .step-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .photo-story img {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    min-height: auto;
    padding-block: 10px;
    position: static;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    height: 40px;
    width: 40px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .header-phone {
    width: 100%;
  }

  .site-nav a {
    font-size: 0.74rem;
    padding: 8px 4px;
    text-align: center;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.74rem;
  }

  .service-page-hero h1 {
    font-size: 2rem;
  }

  .service-detail-main h2,
  .service-steps h2,
  .service-related h2 {
    font-size: 1.68rem;
  }

  .hero {
    min-height: 520px;
    padding-bottom: 42px;
  }

  .hero p:not(.eyebrow),
  .intro > p,
  .photo-story p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .service-grid,
  .area-list,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .site-nav a {
    font-size: 0.66rem;
    padding-inline: 1px;
  }

  .hero p:not(.eyebrow) {
    font-size: 0.94rem;
  }
}
