:root {
  color-scheme: dark;
  --black: #070604;
  --black-2: #0f0b08;
  --ink: #15100b;
  --panel: rgba(21, 16, 11, 0.72);
  --panel-2: rgba(28, 21, 14, 0.9);
  --gold: #d2a553;
  --gold-2: #f3d58b;
  --champagne: #fff1cf;
  --ivory: #f9efe1;
  --muted: rgba(249, 239, 225, 0.66);
  --quiet: rgba(249, 239, 225, 0.42);
  --line: rgba(243, 213, 139, 0.14);
  --line-strong: rgba(243, 213, 139, 0.32);
  --teal: #0f756f;
  --wine: #7e3038;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  --container: 1220px;
  --gutter: clamp(18px, 4vw, 56px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  background: var(--black);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 78% -8%, rgba(243, 213, 139, 0.22), transparent 34rem),
    radial-gradient(ellipse at 16% 24%, rgba(126, 48, 56, 0.16), transparent 32rem),
    linear-gradient(180deg, #070604 0%, #120e0a 42%, #070604 100%);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: #16110a;
}

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 126px) 0;
}

.section[id],
.contact[id] {
  scroll-margin-top: 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(243, 213, 139, 0.55);
}

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

h1,
h2 {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 7.5vw, 7.35rem);
  line-height: 0.96;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.3vw, 4.35rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  color: var(--ivory);
  font-size: clamp(1.22rem, 1.9vw, 1.7rem);
  line-height: 1.16;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(172px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid transparent;
  transition:
    min-height 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-bottom-color: var(--line);
  background: rgba(7, 6, 4, 0.74);
  backdrop-filter: blur(22px) saturate(120%);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(243, 213, 139, 0.3), transparent 42%),
    linear-gradient(145deg, rgba(243, 213, 139, 0.13), rgba(7, 6, 4, 0.7));
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
}

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

.brand strong {
  color: var(--champagne);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--quiet);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-self: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(249, 239, 225, 0.72);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: max-content;
  padding: 11px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(21, 16, 11, 0.58);
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-action:hover {
  background: rgba(243, 213, 139, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  place-items: center;
  padding: 118px var(--gutter) 116px;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  right: var(--gutter);
  left: var(--gutter);
  z-index: 1;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(243, 213, 139, 0.62), transparent);
}

.hero::before {
  top: 92px;
}

.hero::after {
  bottom: 98px;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.98) 0%, rgba(7, 6, 4, 0.84) 33%, rgba(7, 6, 4, 0.1) 76%),
    url("assets/kitchen-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-scrim {
  z-index: -1;
  background:
    radial-gradient(ellipse at 23% 36%, rgba(243, 213, 139, 0.2), transparent 32rem),
    radial-gradient(ellipse at 72% 24%, rgba(255, 241, 207, 0.08), transparent 25rem),
    linear-gradient(105deg, rgba(7, 6, 4, 0.38), transparent 58%),
    linear-gradient(180deg, transparent 58%, rgba(7, 6, 4, 0.94));
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  width: min(1360px, 100%);
}

.hero-inner {
  width: min(920px, 100%);
}

.hero-copy {
  max-width: 800px;
  margin-bottom: 34px;
  color: rgba(249, 239, 225, 0.77);
  font-size: clamp(1.04rem, 1.55vw, 1.26rem);
}

.hero-actions,
.hero-proof,
.brand-ribbon,
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f4da92, #b98024 52%, #f0ce77);
  color: #171008;
  box-shadow: 0 18px 48px rgba(210, 165, 83, 0.28);
}

.button-primary:hover {
  box-shadow: 0 22px 70px rgba(243, 213, 139, 0.42);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(249, 239, 225, 0.06);
  color: var(--champagne);
}

.hero-proof {
  gap: 10px;
  max-width: 760px;
  margin-top: 42px;
}

.hero-dossier {
  position: relative;
  align-self: center;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(243, 213, 139, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 241, 207, 0.1), transparent 28%),
    rgba(9, 7, 5, 0.62);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 241, 207, 0.16);
  backdrop-filter: blur(18px) saturate(112%);
}

.hero-dossier::before {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(243, 213, 139, 0.22);
  border-radius: 6px;
}

.hero-dossier::after {
  position: absolute;
  top: -30%;
  left: -60%;
  width: 72%;
  height: 160%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 241, 207, 0.12), transparent);
  transform: rotate(18deg);
}

.dossier-glass {
  position: absolute;
  right: -36px;
  bottom: -30px;
  width: 210px;
  height: 280px;
  border: 1px solid rgba(243, 213, 139, 0.22);
  border-radius: 120px 120px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 241, 207, 0.08), transparent),
    url("assets/service-wine-cooler.png") center / cover no-repeat;
  opacity: 0.34;
  filter: saturate(0.7);
}

.dossier-topline,
.dossier-temp,
.dossier-list,
.hero-dossier p {
  position: relative;
  z-index: 1;
}

.dossier-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-topline strong {
  color: var(--gold-2);
  font-weight: 500;
}

.dossier-temp {
  padding: 48px 0 34px;
}

.dossier-temp span {
  display: block;
  color: rgba(249, 239, 225, 0.58);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dossier-temp strong {
  display: block;
  margin-top: 6px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.25rem, 6.6vw, 6.35rem);
  font-weight: 500;
  line-height: 0.96;
}

.dossier-list {
  display: grid;
  gap: 0;
  border-block: 1px solid var(--line);
}

.dossier-list div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.dossier-list div:last-child {
  border-bottom: 0;
}

.dossier-list span {
  display: block;
  color: var(--quiet);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-list strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 241, 207, 0.86);
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-dossier p {
  max-width: 270px;
  margin: 28px 0 0;
  color: rgba(249, 239, 225, 0.62);
  font-size: 0.92rem;
}

.hero-proof span,
.brand-ribbon span,
.contact-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 6, 4, 0.44);
  color: rgba(249, 239, 225, 0.72);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-proof span {
  padding: 7px 13px;
}

.brand-ribbon {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  left: var(--gutter);
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.brand-ribbon span {
  padding: 7px 11px;
  background: rgba(7, 6, 4, 0.62);
}

.intent {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.18), rgba(7, 6, 4, 0.74)),
    radial-gradient(circle at 20% 0%, rgba(15, 117, 111, 0.12), transparent 30rem),
    linear-gradient(180deg, #090705, #120d09);
}

.intent-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.intent-copy {
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.intent-copy p {
  margin-bottom: 0;
  color: rgba(249, 239, 225, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2.4vw, 2.38rem);
  line-height: 1.18;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.section-head p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.brand-atelier {
  background:
    linear-gradient(90deg, rgba(243, 213, 139, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 213, 139, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 86% 8%, rgba(126, 48, 56, 0.2), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(210, 165, 83, 0.17), transparent 30rem),
    var(--black);
  background-size: 96px 96px, 96px 96px, auto, auto, auto;
}

.brand-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: -22px 0 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.brand-showcase a {
  display: grid;
  min-height: clamp(110px, 15vw, 190px);
  min-width: 0;
  place-items: center;
  padding: clamp(18px, 2.5vw, 30px) 16px;
  background:
    radial-gradient(circle at 50% 10%, rgba(243, 213, 139, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(30, 21, 13, 0.94), rgba(7, 6, 4, 0.96));
  color: rgba(255, 241, 207, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.7rem);
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.58);
  text-wrap: balance;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.brand-showcase a:hover {
  color: var(--gold-2);
  background:
    radial-gradient(circle at 50% 10%, rgba(243, 213, 139, 0.24), transparent 45%),
    linear-gradient(180deg, rgba(38, 27, 17, 0.98), rgba(7, 6, 4, 0.96));
}

.brand-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.brand-feature-copy,
.brand-feature-list,
.brand-card,
.problem-card,
.visit-steps article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 241, 207, 0.04), transparent 36%),
    linear-gradient(180deg, rgba(28, 21, 14, 0.78), rgba(10, 8, 6, 0.76));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.brand-feature-copy {
  padding: clamp(28px, 4vw, 48px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 241, 207, 0.1);
}

.brand-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-feature-copy h3 {
  max-width: 800px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.35vw, 3.45rem);
  font-weight: 500;
  line-height: 1.06;
}

.brand-feature-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(249, 239, 225, 0.72);
}

.brand-feature-list {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(15, 117, 111, 0.12), rgba(10, 8, 6, 0.72)),
    rgba(10, 8, 6, 0.74);
}

.brand-feature-list span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(249, 239, 225, 0.78);
  font-size: 1.02rem;
}

.brand-feature-list span:last-child {
  border-bottom: 0;
}

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

.brand-card {
  position: relative;
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.brand-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 90% 8%, rgba(243, 213, 139, 0.2), transparent 12rem),
    linear-gradient(180deg, transparent, rgba(7, 6, 4, 0.24));
}

.brand-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  pointer-events: none;
  content: "";
  border-right: 1px solid rgba(243, 213, 139, 0.3);
  border-bottom: 1px solid rgba(243, 213, 139, 0.3);
  opacity: 0.7;
}

.brand-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(34, 25, 16, 0.86), rgba(10, 8, 6, 0.78));
}

.brand-card.spotlight {
  grid-column: span 2;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(43, 32, 20, 0.42), rgba(9, 7, 5, 0.88)),
    url("assets/service-fullsize-fridge.png") center / cover no-repeat;
}

.brand-card.wine {
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(51, 23, 30, 0.38), rgba(9, 7, 5, 0.9)),
    url("assets/service-wine-cooler.png") center / cover no-repeat;
}

.brand-card.spotlight p,
.brand-card.spotlight li,
.brand-card.wine p,
.brand-card.wine li {
  color: rgba(255, 241, 207, 0.82);
}

.brand-number {
  position: relative;
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.76rem;
}

.brand-card.spotlight .brand-number,
.brand-card.wine .brand-number {
  margin-bottom: 130px;
}

.brand-card h3,
.brand-card p,
.brand-card ul,
.brand-link {
  position: relative;
}

.brand-card p {
  color: rgba(249, 239, 225, 0.68);
  font-size: 0.96rem;
}

.brand-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.brand-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(249, 239, 225, 0.62);
  font-size: 0.86rem;
}

.brand-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.brand-link,
.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 22px;
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-link::after,
.text-link::after {
  width: 22px;
  height: 1px;
  margin-left: 10px;
  content: "";
  background: var(--gold);
  transition: transform 180ms ease;
  transform-origin: left;
}

.brand-card:hover .brand-link::after,
.text-link:hover::after {
  transform: scaleX(1.45);
}

.concierge {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 40%, rgba(210, 165, 83, 0.1), transparent 26rem),
    linear-gradient(180deg, #100d0a, #070604);
}

.concierge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.concierge-image {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.02), rgba(7, 6, 4, 0.56)),
    url("assets/process-control-board.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.concierge-image::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(243, 213, 139, 0.28);
  border-radius: 6px;
}

.concierge-image::after {
  position: absolute;
  right: 28px;
  bottom: 26px;
  padding: 10px 13px;
  content: "Protected service path";
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 6, 4, 0.72);
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concierge-copy p {
  max-width: 620px;
  color: rgba(249, 239, 225, 0.72);
}

.concierge-points {
  display: grid;
  gap: 14px;
  max-width: 660px;
  margin-top: 32px;
}

.concierge-points div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.concierge-points strong {
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.concierge-points span {
  color: rgba(249, 239, 225, 0.76);
}

.problems {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 117, 111, 0.12), transparent 28rem),
    var(--black);
}

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

.problem-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.problem-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(7, 6, 4, 0.52));
  z-index: 0;
}

.problem-card span {
  width: max-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 6, 4, 0.68);
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-card h3,
.problem-card p,
.problem-card span {
  position: relative;
  z-index: 1;
}

.problem-card h3 {
  color: var(--champagne);
}

.problem-card p {
  margin-bottom: 0;
  color: rgba(255, 241, 207, 0.78);
  font-size: 0.95rem;
}

.photo-fridge {
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.08), rgba(7, 6, 4, 0.84)),
    url("assets/service-fullsize-fridge.png") center / cover no-repeat;
}

.photo-wine {
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.08), rgba(7, 6, 4, 0.86)),
    url("assets/service-wine-cooler.png") center / cover no-repeat;
}

.photo-water {
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.08), rgba(7, 6, 4, 0.86)),
    url("assets/service-water-leak.png") center / cover no-repeat;
}

.photo-board {
  background:
    linear-gradient(180deg, rgba(7, 6, 4, 0.08), rgba(7, 6, 4, 0.86)),
    url("assets/service-electronics.png") center / cover no-repeat;
}

.visit {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #120e0a, #090705);
}

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

.visit-steps article {
  padding: 28px;
}

.visit-steps span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage {
  background:
    radial-gradient(circle at 84% 40%, rgba(210, 165, 83, 0.12), transparent 26rem),
    var(--black);
}

.coverage p {
  max-width: 660px;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.coverage-list li {
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(249, 239, 225, 0.04);
  color: rgba(249, 239, 225, 0.72);
}

.page-hero {
  position: relative;
  min-height: min(820px, 94svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 92px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.98) 0%, rgba(7, 6, 4, 0.84) 38%, rgba(7, 6, 4, 0.24) 76%),
    var(--page-hero-image) center / cover no-repeat;
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  right: var(--gutter);
  left: var(--gutter);
  z-index: 1;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(243, 213, 139, 0.62), transparent);
}

.page-hero::before {
  top: 92px;
}

.page-hero::after {
  bottom: 54px;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(243, 213, 139, 0.17), transparent 32rem),
    radial-gradient(ellipse at 72% 30%, rgba(15, 117, 111, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(7, 6, 4, 0.12), rgba(7, 6, 4, 0.94));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.85rem, 6.6vw, 6.3rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(249, 239, 225, 0.58);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--gold-2);
}

.breadcrumb strong {
  color: var(--gold-2);
  font-weight: 500;
}

.page-tags {
  max-width: 980px;
}

.seo-intro {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(210, 165, 83, 0.14), transparent 28rem),
    linear-gradient(180deg, #090705, #120d09);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.long-copy {
  display: grid;
  gap: 20px;
  max-width: 780px;
}

.long-copy p {
  margin-bottom: 0;
  color: rgba(249, 239, 225, 0.78);
  font-size: 1.03rem;
}

.models-section {
  background:
    linear-gradient(90deg, rgba(243, 213, 139, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 213, 139, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: 96px 96px, 96px 96px, auto;
}

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

.model-card,
.issue-list article,
.location-grid article,
.faq-list details,
.related-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 241, 207, 0.04), transparent 40%),
    rgba(17, 12, 8, 0.72);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
}

.model-card {
  min-height: 210px;
  padding: 22px;
}

.model-card span,
.issue-list span,
.related-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.22;
}

.issue-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(126, 48, 56, 0.18), transparent 30rem),
    linear-gradient(180deg, #120e0a, #070604);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 104px;
}

.sticky-copy p {
  color: rgba(249, 239, 225, 0.72);
}

.issue-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.issue-list article {
  padding: clamp(24px, 3vw, 34px);
}

.issue-list span {
  margin-bottom: 18px;
}

.issue-list p {
  margin-bottom: 0;
}

.location-seo {
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 117, 111, 0.12), transparent 30rem),
    var(--black);
}

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

.location-grid article {
  padding: 22px;
}

.location-grid h3 {
  font-size: clamp(1.04rem, 1.45vw, 1.3rem);
}

.location-grid p {
  margin-bottom: 0;
  color: rgba(249, 239, 225, 0.66);
  font-size: 0.94rem;
}

.location-grid p + p {
  margin-top: 13px;
}

.faq-section {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #100d0a, #070604);
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--champagne);
  font-weight: 700;
}

.faq-list summary::marker {
  color: var(--gold-2);
}

.faq-list p {
  padding: 0 24px 24px;
  margin-bottom: 0;
}

.related-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(210, 165, 83, 0.1), transparent 26rem),
    var(--black);
}

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

.brand-related-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.related-card {
  min-height: 170px;
  padding: 22px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.related-card:hover {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 241, 207, 0.06), transparent 38%),
    rgba(24, 17, 11, 0.86);
  transform: translateY(-2px);
}

.related-card strong {
  display: block;
  color: var(--ivory);
  font-size: 1.05rem;
  line-height: 1.25;
}

.page-contact {
  border-top: 1px solid var(--line);
}

.footer-link {
  color: inherit;
}

.footer-link:hover {
  color: var(--gold-2);
}

.contact {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 36%, rgba(243, 213, 139, 0.18), transparent 30rem),
    linear-gradient(90deg, rgba(7, 6, 4, 0.96), rgba(7, 6, 4, 0.68)),
    url("assets/service-finish.png") center / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(249, 239, 225, 0.74);
  font-size: 1.06rem;
}

.contact-tags {
  gap: 10px;
  margin-top: 30px;
}

.contact-tags span {
  padding: 7px 12px;
}

.contact-form {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(12, 9, 7, 0.78);
  backdrop-filter: blur(24px);
}

.contact-form h3 {
  margin-bottom: 24px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 500;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  color: var(--quiet);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 6, 4, 0.7);
  color: var(--ivory);
}

input::placeholder {
  color: rgba(249, 239, 225, 0.32);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(210, 165, 83, 0.12);
}

.submit {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4da92, #b98024 52%, #f0ce77);
  color: #171008;
  font-weight: 800;
}

.form-note {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 0.82rem;
  text-align: center;
}

.site-footer {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: #050403;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1fr;
  gap: clamp(24px, 5vw, 72px);
}

.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid p {
  margin-bottom: 0;
  color: var(--quiet);
}

.footer-brand {
  margin-bottom: 18px;
}

.mobile-request {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 90;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4da92, #b98024 52%, #f0ce77);
  color: #171008;
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(210, 165, 83, 0.34);
  transform: translateY(130%);
  transition: transform 180ms ease;
}

.mobile-request.is-visible {
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .brand-grid,
  .problem-grid,
  .model-grid,
  .location-grid,
  .related-grid,
  .brand-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-card.spotlight {
    grid-column: span 1;
  }

  .brand-feature,
  .hero-shell,
  .concierge-grid,
  .contact-grid,
  .intent-grid,
  .coverage-grid,
  .seo-layout,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .hero-dossier {
    max-width: 680px;
    min-height: auto;
  }

  .concierge-image {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 70px;
  }

  .site-nav {
    display: none;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-width: 0;
    max-width: 112px;
    padding-inline: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.03em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 88svh;
    padding-top: 116px;
    padding-bottom: 150px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(7, 6, 4, 0.88), rgba(7, 6, 4, 0.62) 48%, rgba(7, 6, 4, 0.95)),
      url("assets/kitchen-hero.png") center / cover no-repeat;
  }

  .brand-ribbon {
    max-height: 92px;
    overflow: hidden;
  }

  .hero-dossier {
    display: none;
  }

  .brand-showcase {
    grid-template-columns: 1fr;
  }

  .brand-showcase a {
    min-height: 86px;
  }

  .visit-steps,
  .coverage-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-request {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .site-header .brand {
    flex: 1 1 auto;
  }

  .brand strong {
    font-size: 0.92rem;
  }

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

  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 13.8vw, 3.85rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.9rem, 10.5vw, 2.85rem);
    line-height: 1.08;
  }

  .brand-grid,
  .problem-grid,
  .model-grid,
  .location-grid,
  .related-grid,
  .brand-related-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .brand-card,
  .problem-card {
    min-height: auto;
  }

  .brand-card.spotlight,
  .brand-card.wine {
    min-height: 380px;
  }

  .brand-card.spotlight .brand-number,
  .brand-card.wine .brand-number {
    margin-bottom: 86px;
  }

  .problem-card {
    min-height: 330px;
  }

  .brand-number {
    margin-bottom: 34px;
  }

  .concierge-image {
    min-height: 320px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .page-hero {
    min-height: 82svh;
    padding-top: 116px;
    padding-bottom: 86px;
    background:
      linear-gradient(180deg, rgba(7, 6, 4, 0.9), rgba(7, 6, 4, 0.68) 46%, rgba(7, 6, 4, 0.96)),
      var(--page-hero-image) center / cover no-repeat;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.55rem);
  }

  .breadcrumb {
    font-size: 0.64rem;
  }

  .model-card,
  .related-card {
    min-height: auto;
  }

  .location-grid article,
  .issue-list article,
  .model-card,
  .related-card {
    padding: 20px;
  }
}
