@font-face {
  font-family: "Brush Script Opti";
  src: url("assets/brush-script-opti.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #111312;
  --graphite: #202628;
  --slate: #364244;
  --paper: #f8f7f2;
  --white: #ffffff;
  --muted: #637071;
  --line: #d8ded9;
  --foil: #c99b2f;
  --foil-bright: #efd37c;
  --teal: #0f6a67;
  --teal-dark: #094d4b;
  --red: #9f3043;
  --shadow: 0 20px 60px rgba(17, 19, 18, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: rgba(201, 155, 47, 0.28);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 19, 18, 0.88), rgba(17, 19, 18, 0.42) 78%, transparent);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(17, 19, 18, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.brand-script {
  display: block;
  font-family: "Brush Script Opti", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 0.9;
  color: var(--foil-bright);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 28px rgba(239, 211, 124, 0.24);
  white-space: nowrap;
}

.brand-line {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--foil-bright);
  font-size: 0.86rem;
  white-space: nowrap;
}

.short-label {
  display: none;
}

.button {
  padding: 13px 20px;
}

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f2d77d, #b9841d 64%, #feeaa4);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 26px rgba(122, 84, 12, 0.2);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, 82svh);
  padding: 122px clamp(18px, 6vw, 76px) 72px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.92) 0%, rgba(8, 10, 11, 0.76) 32%, rgba(8, 10, 11, 0.2) 64%),
    url("assets/hot-foil-hero.png") center right / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(17, 19, 18, 0.55), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
}

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

.hero .eyebrow {
  color: var(--foil-bright);
}

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

h1 {
  display: grid;
  gap: 0;
  margin-bottom: 20px;
  font-family: "Brush Script Opti", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(4.1rem, 12vw, 8.9rem);
  font-weight: 400;
  line-height: 0.78;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
}

h1 span {
  width: max-content;
  max-width: 100%;
  background: linear-gradient(105deg, #fff5c4 5%, #d39e2c 42%, #fff0a0 58%, #aa751a 82%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy {
  width: min(540px, 100%);
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
}

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

.quick-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--white);
  background: var(--graphite);
}

.quick-specs div {
  min-height: 112px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.quick-specs span {
  display: block;
  margin-bottom: 6px;
  color: var(--foil-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-specs strong {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.3;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 76px);
}

.section-heading {
  display: grid;
  gap: 0;
  width: min(760px, 100%);
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-heading h2,
.finish-copy h2,
.quote-intro h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.02;
}

.section-heading p,
.finish-copy p,
.quote-intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 246px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(38, 45, 44, 0.08);
}

.foil-rule {
  display: block;
  width: 76px;
  height: 5px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a46d14, #f5dc87, #c59325);
}

.service-card h3,
.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.finish-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 76px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(10, 77, 75, 0.92), rgba(17, 19, 18, 0.95)),
    radial-gradient(circle at 85% 20%, rgba(239, 211, 124, 0.26), transparent 34%);
}

.finish-copy h2,
.finish-copy p {
  color: var(--white);
}

.finish-copy .eyebrow {
  color: var(--foil-bright);
}

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

.swatch {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 152px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.swatch::before {
  position: absolute;
  inset: -35%;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.45) 38%, transparent 52% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 10px);
  content: "";
  transform: rotate(8deg);
}

.swatch span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
}

.swatch-gold {
  background: linear-gradient(135deg, #94620c, #e7bf56 44%, #fff0a3 58%, #ad7416);
}

.swatch-silver {
  background: linear-gradient(135deg, #727a7f, #f2f5f4 48%, #9aa4a8);
}

.swatch-copper {
  background: linear-gradient(135deg, #7f3e27, #d18758 48%, #f0c19c);
}

.swatch-white {
  background: linear-gradient(135deg, #d7ddd8, #ffffff 54%, #b9c2bc);
}

.swatch-red {
  background: linear-gradient(135deg, #6d1626, #bd3951 54%, #ef8797);
}

.swatch-teal {
  background: linear-gradient(135deg, #073c3a, #0f817c 52%, #58c5bd);
}

.process-section {
  background: #ffffff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  min-height: 254px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8faf7);
}

.process-list span {
  display: block;
  margin-bottom: 52px;
  color: var(--teal);
  font-weight: 900;
}

.quote-section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 76px);
  background: linear-gradient(180deg, #eef4f0, #ffffff);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 6vw, 74px);
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

address {
  margin-top: 28px;
  color: var(--slate);
  font-style: normal;
}

address a {
  color: var(--teal-dark);
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd8d3;
  border-radius: 6px;
  background: #fbfcfa;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
  outline: none;
  padding: 12px 13px;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 106, 103, 0.12);
}

.full {
  grid-column: 1 / -1;
}

.quote-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer .brand-script {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1030px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

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

  .finish-band,
  .quote-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr;
    min-height: 68px;
    gap: 0;
    padding: 10px 14px;
  }

  .brand-script {
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    text-overflow: clip;
  }

  .brand-line {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .header-cta {
    display: none;
  }

  .wide-label {
    display: none;
  }

  .short-label {
    display: inline;
  }

  .hero {
    min-height: 78svh;
    padding: 98px 18px 48px;
    background:
      linear-gradient(90deg, rgba(8, 10, 11, 0.94) 0%, rgba(8, 10, 11, 0.76) 62%, rgba(8, 10, 11, 0.38)),
      url("assets/hot-foil-hero.png") center right / cover no-repeat;
  }

  h1 {
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(2.9rem, 11.4vw, 3.95rem);
    line-height: 0.88;
  }

  h1 span {
    width: 100%;
  }

  .hero-content,
  .hero-copy,
  .hero-actions {
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .quick-specs,
  .service-grid,
  .swatch-grid,
  .process-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quick-specs div {
    min-height: 96px;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .swatch {
    min-height: 116px;
  }

  .quote-panel {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .brand-line {
    display: none;
  }

  .hero-content,
  .hero-copy,
  .hero-actions {
    width: 100%;
    max-width: 330px;
  }

  h1 {
    font-size: clamp(2.62rem, 10.8vw, 3.3rem);
  }
}
