@charset "UTF-8";

:root {
  --ink: #0b0b0a;
  --ink-soft: #171715;
  --ivory: #f3efe7;
  --ivory-2: #e8e1d5;
  --paper: #faf8f3;
  --gold: #b89454;
  --gold-light: #d0b47d;
  --line: rgba(21, 20, 18, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --muted: #6e6a62;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 128px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: 96px;
  color: white;
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 190px;
  height: auto;
  filter: invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-contact) {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

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

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  transition: background 180ms ease, color 180ms ease;
}

.nav-contact:hover {
  background: white;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  background: white;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-visual,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.55) contrast(1.08);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.96) 0%, rgba(4, 4, 4, 0.78) 42%, rgba(4, 4, 4, 0.28) 78%, rgba(4, 4, 4, 0.4) 100%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.5), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 80px;
  padding-top: 104px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #8b6b35;
}

.hero h1,
.section-heading h2,
.promise-copy h2,
.contact-lead h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(74px, 9vw, 138px);
}

.hero h1 em,
.section-heading h2 em,
.promise-copy h2 em,
.contact-lead h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-gold {
  background: var(--gold);
  color: #0b0b0a;
}

.button-gold:hover {
  background: #d0b47d;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.remodel-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 9, 8, 0.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.remodel-card .status-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 7px rgba(208, 180, 125, 0.12);
}

.remodel-card p {
  display: inline-block;
  margin: 0 0 24px 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.remodel-card strong {
  display: block;
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.remodel-card > span:not(.status-dot) {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
}

.remodel-card a {
  display: block;
  margin-top: 22px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 22px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 64px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-cue span {
  width: 45px;
  height: 1px;
  background: currentColor;
}

.brand-strip {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.brand-track {
  min-width: max-content;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding-inline: 42px;
}

.brand-track span {
  font-family: var(--display);
  font-size: clamp(17px, 1.75vw, 23px);
  letter-spacing: 0.03em;
}

.brand-track i {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}

.intro {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 100px;
}

.section-heading h2,
.promise-copy h2,
.contact-lead h2 {
  font-size: clamp(58px, 6.3vw, 96px);
}

.section-heading h2 em,
.promise-copy h2 em {
  color: #8b6b35;
}

.intro-copy {
  max-width: 520px;
  padding-bottom: 8px;
}

.intro-copy p,
.promise-copy > p,
.contact-lead > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.dark-link {
  margin-top: 28px;
  color: var(--ink);
  border-color: var(--line);
}

.category-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #222;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 4, 4, 0.75), transparent 65%);
}

.category-copy {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 18px;
  color: white;
}

.category-copy > span {
  padding-bottom: 8px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.category-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
}

.category-copy button {
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: white;
  font-size: 12px;
  cursor: pointer;
}

.category-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.9);
}

.catalog {
  background: var(--ink);
  color: white;
}

.catalog-top {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 100px;
}

.section-heading.light h2 {
  color: white;
}

.catalog-top > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
}

.catalog-tools {
  margin-top: 68px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.filters {
  display: flex;
  gap: 6px;
}

.filter {
  padding: 8px 13px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.filter.is-active {
  border-bottom: 1px solid var(--gold-light);
}

.search-box {
  width: min(300px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.search-box svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.search-box input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: white;
  outline: none;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.search-box input:focus {
  border-color: var(--gold-light);
}

.results-meta {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 22px;
}

.product-card[hidden] {
  display: none;
}

.product-image {
  position: relative;
  aspect-ratio: 5 / 6.2;
  overflow: hidden;
  background: #f3f1ec;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-image > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  background: rgba(10, 10, 9, 0.82);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-image > a {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 20px;
  transition: background 180ms ease, color 180ms ease;
}

.product-image > a:hover {
  background: var(--gold-light);
  color: var(--ink);
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-info {
  padding-top: 18px;
}

.product-info p {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
}

.product-info > a {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  transition: color 180ms ease, border-color 180ms ease;
}

.product-info > a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.empty-state {
  margin-top: 36px;
  padding: 50px 28px;
  border: 1px solid var(--line-dark);
  text-align: center;
}

.empty-state p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.62);
}

.empty-state button {
  padding: 9px 14px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
}

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

.promise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 9vw;
}

.promise-image {
  position: relative;
}

.promise-image::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(139, 107, 53, 0.38);
}

.promise-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.72);
}

.promise-copy > p {
  margin-top: 30px;
}

.promise-copy ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.promise-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise-copy li span {
  color: #8b6b35;
  font-family: var(--display);
  font-weight: 400;
}

.contact {
  background: #161512;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}

.contact-lead h2 em {
  color: var(--gold-light);
}

.contact-lead > p {
  max-width: 430px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.54);
}

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

.contact-list > a {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr 30px;
  align-items: start;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: border-color 180ms ease;
}

.contact-list > a:hover {
  border-color: var(--gold-light);
}

.contact-list span {
  padding-top: 4px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list strong {
  font-family: var(--display);
  font-size: clamp(21px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-list small {
  grid-column: 2;
  margin-top: -17px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.contact-list i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-style: normal;
}

.site-footer {
  padding: 70px 0 24px;
  background: #0b0b0a;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 50px;
  padding-bottom: 58px;
}

.footer-top > img {
  width: 210px;
  height: auto;
  filter: invert(1);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease var(--delay, 0ms), transform 650ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    grid-template-columns: 1fr 270px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(70px, 10vw, 108px);
  }

  .intro-grid,
  .catalog-top {
    gap: 60px;
  }

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

  .promise-grid,
  .contact-grid {
    gap: 70px;
  }

  .contact-list > a {
    grid-template-columns: 90px 1fr 25px;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100vw - 38px);
  }

  .section {
    padding-block: 92px;
  }

  .site-header {
    height: 82px;
  }

  .brand img {
    width: 160px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 90;
    inset: 82px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 32px;
    background: rgba(8, 8, 7, 0.98);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a,
  .main-nav .nav-contact {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: 29px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero {
    height: auto;
    min-height: 850px;
    max-height: none;
    align-items: flex-end;
  }

  .hero-visual img {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 4, 4, 0.98) 5%, rgba(4, 4, 4, 0.72) 68%, rgba(4, 4, 4, 0.48) 100%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 146px 0 72px;
  }

  .hero h1 {
    font-size: clamp(68px, 21vw, 116px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .remodel-card {
    max-width: 430px;
  }

  .scroll-cue {
    display: none;
  }

  .brand-track {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .intro-grid,
  .catalog-top,
  .promise-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-top > p {
    max-width: 600px;
  }

  .catalog-tools {
    padding-block: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .filters {
    overflow-x: auto;
  }

  .filter {
    white-space: nowrap;
  }

  .search-box {
    width: 100%;
  }

  .promise-image {
    margin-right: 18px;
  }

  .promise-image img {
    min-height: 380px;
  }

  .contact-list > a {
    grid-template-columns: 90px 1fr 24px;
  }

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

  .social-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(62px, 20vw, 92px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .section-heading h2,
  .promise-copy h2,
  .contact-lead h2 {
    font-size: clamp(53px, 17vw, 75px);
  }

  .category-card {
    min-height: 280px;
  }

  .category-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: auto 1fr;
  }

  .category-copy h3 {
    font-size: 42px;
  }

  .category-copy button {
    grid-column: 2;
    justify-self: start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    aspect-ratio: 5 / 6;
  }

  .contact-list > a {
    grid-template-columns: 1fr 24px;
    gap: 8px 16px;
  }

  .contact-list span {
    grid-column: 1;
  }

  .contact-list strong {
    grid-column: 1;
  }

  .contact-list small {
    grid-column: 1;
    margin-top: 0;
  }

  .contact-list i {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
  }
}
