:root {
  --color-black: #111111;
  --color-ink: #181818;
  --color-muted: #666666;
  --color-line: #e7e7e7;
  --color-soft: #f6f6f4;
  --color-white: #ffffff;
  --color-yellow: #ffc107;
  --color-yellow-dark: #d69a00;
  --shadow: 0 22px 55px rgba(17, 17, 17, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-ink);
}

.main-nav a {
  position: relative;
  font-weight: inherit;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-yellow);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a,
.phone-link,
.text-link,
.site-footer a {
  text-underline-offset: 4px;
}

.main-nav a.is-active,
.main-nav a[aria-current="true"],
.main-nav a:hover,
.phone-link:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--color-yellow-dark);
}

.main-nav a.is-active::after,
.main-nav a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 22px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #ffcf35;
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 193, 7, 0.46);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}

.header-cta {
  min-width: 188px;
  min-height: 46px;
  padding: 13px 30px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(255, 193, 7, 0.32);
  white-space: nowrap;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.button-ghost:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.button-light {
  background: var(--color-white);
  color: var(--color-black);
}

.button-light:hover {
  background: #f5f5f5;
}

.button-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.button-dark:hover {
  background: #2b2b2b;
}

.hero {
  position: relative;
  min-height: clamp(620px, 82svh, 780px);
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.52) 42%, rgba(17, 17, 17, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.34), rgba(17, 17, 17, 0.08)),
    url("images/hero-kitchen.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 32px, var(--container));
  min-height: inherit;
  margin: 0 auto;
  padding: 44px 0 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-yellow);
  font-size: 13.9px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 8.5vw, 126px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.hero-button {
  min-width: min(100%, 300px);
  min-height: 72px;
  padding: 18px 30px;
  font-size: clamp(18px, 1.45vw, 24px);
}

.hero-button-wide {
  min-width: min(100%, 360px);
}

.section {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: clamp(34px, 4.8vw, 64px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 52px);
}

#services {
  padding-top: clamp(28px, 4vw, 52px);
  scroll-margin-top: 124px;
}

.intro-copy h2,
.section-head h2,
.values-copy h2,
.lead-copy h2 {
  margin: 0;
  color: var(--color-black);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-copy p:not(.eyebrow),
.lead-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 18px;
}

.intro-note {
  border-left: 4px solid var(--color-yellow);
  padding: 20px 0 20px 22px;
}

.intro-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-black);
  font-size: 20px;
}

.intro-note span {
  color: var(--color-muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 760px;
}

.services-title {
  white-space: nowrap;
}

#services .section-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: end;
}

#services .section-head h2 {
  max-width: none;
}

.section-kicker,
.lead-section .section-kicker {
  margin: 0;
  color: var(--color-yellow);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.04;
  text-transform: none;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 18px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-yellow-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.value-list h3,
.process-list h3 {
  margin: 0;
  color: var(--color-black);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.service-card p,
.value-list p,
.process-list p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 15px;
}

.values-section {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.values-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  column-gap: clamp(30px, 6vw, 86px);
  row-gap: 12px;
  align-items: start;
}

.values-copy .eyebrow,
.values-copy h2 {
  grid-column: 1;
}

.values-copy h2 {
  margin-top: 0;
}

.value-list {
  display: grid;
  gap: 22px;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.value-list div {
  border-top: 3px solid var(--color-yellow);
  padding-top: 20px;
}

.process-section {
  border-top: 1px solid var(--color-line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 178px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--color-soft);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.process-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--color-yellow-dark);
  font-size: 18px;
  font-weight: 900;
  transition: color 180ms ease;
}

.process-list h3,
.process-list p {
  transition: color 180ms ease;
}

.process-list li:hover,
.process-list li:focus-within {
  border-color: var(--color-black);
  background: var(--color-black);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18);
  transform: translateY(-3px);
}

.process-list li:hover span,
.process-list li:focus-within span {
  color: var(--color-yellow);
}

.process-list li:hover h3,
.process-list li:focus-within h3 {
  color: var(--color-white);
}

.process-list li:hover p,
.process-list li:focus-within p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.76fr);
  align-items: start;
  gap: clamp(38px, 6vw, 92px);
  width: 100%;
  margin: 0 auto;
  padding: clamp(44px, 5.6vw, 78px) clamp(16px, 4vw, 52px);
  border-radius: 0;
  background: #e9e9e9;
  color: var(--color-black);
}

.lead-section .eyebrow:not(.section-kicker) {
  color: var(--color-yellow-dark);
  font-size: clamp(18px, 1.8vw, 28px);
}

.lead-copy {
  max-width: 760px;
}

.lead-copy .section-kicker {
  margin-bottom: 16px;
}

.lead-copy p {
  max-width: 740px;
  color: var(--color-muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.55;
}

.lead-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.text-link {
  font-weight: 900;
  text-decoration: underline;
}

.lead-form {
  display: grid;
  gap: 15px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background: var(--color-white);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.16);
}

.lead-form label,
.channel-field {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.lead-form label > span,
.channel-field legend {
  color: var(--color-black);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  background: #fbfbfb;
  color: var(--color-black);
  padding: 13px 14px;
}

.field-error {
  min-height: 18px;
  color: #b3261e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

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

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

.channel-field legend {
  grid-column: 1 / -1;
}

.channel-field label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
  background: #fbfbfb;
  cursor: pointer;
}

.channel-field label > span {
  color: inherit;
  font-size: 15px;
  font-weight: 900;
}

.channel-field input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.channel-field label:has(input:checked) {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.channel-field label:has(input:checked) > span {
  color: var(--color-white);
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-black);
}

.consent span {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.button-submit {
  width: 100%;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-success {
  color: #14713b;
}

.form-status.is-error {
  color: #b3261e;
}

.is-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.8fr);
  gap: 28px;
  padding: 24px clamp(16px, 4vw, 52px);
  background: var(--color-black);
  color: var(--color-white);
}

.footer-brand img {
  width: min(240px, 100%);
  height: auto;
  border-radius: 4px;
  background: var(--color-white);
}

.site-footer p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer .footer-messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-messengers span {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer strong {
  color: var(--color-yellow);
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-content: end;
  }

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

  .lead-section {
    grid-template-columns: 1fr;
  }

  .values-copy {
    grid-template-columns: 1fr;
  }

  .values-copy .eyebrow,
  .values-copy h2,
  .value-list {
    grid-column: auto;
    grid-row: auto;
  }

  .value-list {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 150px;
  }

  .site-header {
    gap: 12px;
    padding: 10px 16px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: 148px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .header-cta {
    min-width: 128px;
    min-height: 44px;
    padding: 12px 22px;
  }

  .phone-link {
    display: none;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(5, max-content);
    justify-content: space-between;
    width: 100%;
    gap: 0;
    font-size: clamp(11.5px, 3.3vw, 13.65px);
    text-align: center;
    overflow: visible;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    white-space: nowrap;
  }

  .main-nav a::after {
    bottom: -1px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.64) 62%, rgba(17, 17, 17, 0.26) 100%),
      url("images/hero-kitchen.jpg") center / cover no-repeat;
  }

  .hero-content {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 13vw, 66px);
  }

  .hero-lead {
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-actions,
  .lead-quick {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button,
  .hero-button-wide {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 18px;
  }

  .intro-section,
  .section-head {
    display: block;
  }

  #services .section-head {
    display: block;
  }

  #services .section-head h2 {
    margin-top: 8px;
  }

  .services-title {
    white-space: normal;
  }

  .intro-note {
    margin-top: 26px;
  }

  .intro-section {
    padding-bottom: 24px;
  }

  #services {
    padding-top: 28px;
    scroll-margin-top: 150px;
  }

  .values-copy .section-kicker {
    margin-bottom: 4px;
  }

  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
  }

  .process-list span {
    margin-bottom: 0;
  }

  .lead-section {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    padding: 34px 16px;
  }

  .channel-field {
    grid-template-columns: 1fr;
  }

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

  .lead-copy .section-kicker {
    margin-bottom: 0;
  }
}

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