:root {
  --bronze: #9b7b69;
  --bronze-dark: #75594b;
  --ink: #1f1e1d;
  --ink-soft: #5d5a57;
  --cream: #f5f1eb;
  --paper: #fbfaf8;
  --white: #fff;
  --line: rgba(31, 30, 29, .14);
  --shadow: 0 28px 80px rgba(22, 21, 20, .14);
  --max: 1220px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -80px;
  left: 20px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 16px; }

h1, h2, h3 {
  margin-top: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.25rem, 4.3vw, 4.15rem);
  font-weight: 600;
}

h3 { margin-bottom: 14px; font-size: 1.35rem; }
p { margin-top: 0; }

.eyebrow {
  margin: 0 0 17px;
  color: var(--bronze-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow-light { color: #e1cfc4; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .25s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--bronze-dark);
  background: var(--bronze-dark);
}
.button-small { min-height: 43px; padding-inline: 20px; font-size: .66rem; }
.button-outline-light { border-color: rgba(255,255,255,.65); background: transparent; }
.button-outline-light:hover { border-color: white; background: white; color: var(--ink); }
.button-outline-dark { border-color: var(--ink); background: transparent; color: var(--ink); }
.button-outline-dark:hover { background: var(--ink); color: white; }

.button-row,
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  color: var(--bronze-dark);
  font-weight: 700;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: white;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { width: 178px; flex: 0 0 auto; }
.brand img { height: 58px; object-fit: contain; object-position: left center; }
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }

.primary-nav {
  display: flex;
  gap: 29px;
  margin-left: auto;
}
.primary-nav a { font-size: .8rem; font-weight: 600; }
.primary-nav a:hover { color: var(--bronze); }

.menu-button {
  display: none;
  margin-left: auto;
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: url("images/hero-new-build.jpg") center 58% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -2%;
  background: inherit;
  animation: hero-zoom 18s ease-out both;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,14,13,.88) 0%, rgba(15,14,13,.66) 50%, rgba(15,14,13,.25) 100%),
    linear-gradient(0deg, rgba(15,14,13,.24), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-copy {
  max-width: 740px;
  margin: 30px 0 37px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.03rem, 1.8vw, 1.27rem);
}
.scroll-link {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  color: rgba(255,255,255,.72);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-link i { width: 1px; height: 35px; margin-top: 8px; background: rgba(255,255,255,.55); }

/* Trust strip */
.trust-strip { background: var(--ink); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div {
  padding: 28px 34px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong,
.trust-grid span { display: block; }
.trust-grid strong { font-family: "Montserrat", Arial, sans-serif; font-size: .93rem; }
.trust-grid span { margin-top: 4px; color: rgba(255,255,255,.58); font-size: .8rem; }

/* General sections */
.section { padding: 116px 0; }
.section-soft { background: var(--cream); }

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
}
.content-block > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.photo-frame { position: relative; }
.photo-frame img { min-height: 610px; object-fit: cover; }
.photo-note {
  position: absolute;
  right: -22px;
  bottom: 25px;
  max-width: 270px;
  padding: 21px 24px;
  background: white;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .72fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 0; color: var(--ink-soft); font-size: 1rem; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 290px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow);
}
.service-card > span {
  display: block;
  margin-bottom: 46px;
  color: var(--bronze-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.service-card p { max-width: 500px; color: var(--ink-soft); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(275px, 1fr));
  gap: 18px;
}
.gallery figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.gallery-feature { grid-row: 1 / 3; }
.gallery figure:nth-child(4) { grid-column: 1 / -1; min-height: 380px; }
.gallery figure img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 38px 24px 20px;
  color: white;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.gallery figcaption strong,
.gallery figcaption span { display: block; }
.gallery figcaption strong { font-family: "Montserrat", Arial, sans-serif; }
.gallery figcaption span { color: rgba(255,255,255,.76); font-size: .82rem; }

/* Partnerships */
.partnership-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: white;
}
.partnership-photo img { height: 100%; min-height: 800px; object-fit: cover; }
.partnership-copy { max-width: 720px; padding: 100px clamp(35px, 7vw, 105px); }
.partnership-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.feature-list { margin: 40px 0; padding: 0; list-style: none; }
.feature-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 17px;
  padding: 21px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.feature-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list li > span {
  color: var(--bronze);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 700;
}
.feature-list strong { font-family: "Montserrat", Arial, sans-serif; }
.feature-list p { margin: 3px 0 0; color: rgba(255,255,255,.58); font-size: .88rem; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.process-card {
  min-height: 285px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}
.process-card:last-child { border-right: 0; }
.process-card > span {
  display: block;
  margin-bottom: 67px;
  color: var(--bronze-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
}
.process-card p { color: var(--ink-soft); font-size: .92rem; }

/* Statement */
.statement-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: white;
  background: url("images/interior-living-room.jpg") center / cover no-repeat;
}
.statement-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,15,14,.88), rgba(16,15,14,.35));
}
.statement-section .container { position: relative; z-index: 1; }
.statement-section h2 { max-width: 900px; }

/* Contact */
.contact-section { background: var(--cream); }
.contact-grid { align-items: start; }
.contact-details { display: grid; gap: 22px; margin: 42px 0 35px; }
.contact-details span {
  display: block;
  margin-bottom: 4px;
  color: var(--bronze-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-details p { margin: 0; }

.form-card { padding: clamp(30px, 5vw, 56px); background: white; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; margin-bottom: 17px; font-size: .8rem; font-weight: 600; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid #d7d0c8;
  border-radius: 0;
  background: white;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(155,123,105,.13);
}
textarea { resize: vertical; }
.form-submit { width: 100%; }
.form-note { margin: 13px 0 0; color: var(--ink-soft); font-size: .76rem; text-align: center; }

/* Footer */
.site-footer { padding: 76px 0 26px; background: #171615; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 75px; }
.footer-brand img { width: 185px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.58); }
.site-footer h3 { margin-bottom: 20px; font-size: .9rem; }
.site-footer a,
.site-footer span { display: block; margin: 9px 0; color: rgba(255,255,255,.64); font-size: .86rem; }
.site-footer a:hover { color: var(--bronze); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: .76rem;
}
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { display: inline; margin: 0; }

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Privacy page */
.legal-hero { padding: 160px 0 70px; background: var(--ink); color: white; }
.legal-content { max-width: 860px; padding: 80px 0 110px; }
.legal-content h2 { margin-top: 46px; font-size: 2rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }

/* Responsive */
@media (max-width: 980px) {
  .header-cta { display: none; }
  .menu-button { display: block; }
  .primary-nav {
    position: fixed;
    inset: 88px 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    background: rgba(255,255,255,.98);
    color: var(--ink);
    transition: max-height .3s ease;
  }
  .primary-nav.open { max-height: 430px; box-shadow: 0 24px 40px rgba(0,0,0,.1); }
  .primary-nav a { padding: 19px 22px; border-bottom: 1px solid var(--line); }

  .two-column,
  .contact-grid,
  .section-heading { grid-template-columns: 1fr; }
  .section-heading { gap: 18px; }

  .partnership-section { grid-template-columns: 1fr; }
  .partnership-photo img { min-height: 520px; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 0; }
  .process-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 74px; }
  .brand { width: 150px; }
  .brand img { height: 48px; }
  .primary-nav { inset: 74px 0 auto; }

  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-content { padding-top: 80px; }
  .hero { background-position: 63% center; }

  .trust-grid,
  .service-grid,
  .process-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid div,
  .trust-grid div:last-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }

  .section { padding: 82px 0; }
  .photo-frame img { min-height: 420px; }
  .photo-note { right: 10px; bottom: 10px; max-width: 240px; }

  .service-card { min-height: auto; padding: 32px 27px; }
  .service-card > span { margin-bottom: 28px; }

  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-feature,
  .gallery figure:nth-child(4) { grid-row: auto; grid-column: auto; }
  .gallery figure { min-height: 330px; }

  .partnership-photo img { min-height: 400px; }
  .partnership-copy { padding: 72px 24px; }

  .process-card,
  .process-card:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-card:last-child { border-bottom: 0; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { gap: 40px; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
