:root {
  --bg: #0f0f0f;
  --bg-2: #171615;
  --bg-3: #1f1d1a;
  --text: #f5f1e8;
  --muted: #b8b2a7;
  --accent: #d6b56d;
  --accent-2: #c8a96a;
  --beige: #e8ddcb;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 112px 0;
}

.section-deep {
  background:
    linear-gradient(180deg, rgba(232, 221, 203, 0.03), transparent 32%),
    var(--bg-2);
  border-block: 1px solid var(--border);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.78);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 181, 109, 0.58);
  background: rgba(214, 181, 109, 0.09);
  color: var(--accent);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.brand-logo {
  overflow: hidden;
  background: #f6f1e9;
  padding: 4px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

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

.brand strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(214, 181, 109, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #a8843d);
  color: #17120a;
  font-weight: 700;
  box-shadow: 0 16px 44px rgba(214, 181, 109, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(214, 181, 109, 0.24);
}

.btn-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(214, 181, 109, 0.55);
}

.btn-wide {
  width: fit-content;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 80% 20%, rgba(214, 181, 109, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.83) 40%, rgba(15, 15, 15, 0.3) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.45), var(--bg));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  gap: 64px;
  align-items: center;
  padding-top: 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 4.65rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.55rem);
}

h3 {
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(245, 241, 232, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.86rem;
}

.hero-panel,
.about-card,
.service-card,
.project-card,
.process-step,
.choose-card,
.testimonial,
.contact-form {
  border: 1px solid var(--border);
  background: rgba(31, 29, 26, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.hero-panel {
  padding: 16px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 4px 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.panel-top strong {
  color: var(--text);
}

.mini-gallery {
  display: grid;
  gap: 14px;
}

.mini-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1.42;
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mini-gallery figure:hover img,
.project-card:hover img {
  transform: scale(1.04);
}

.mini-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.7);
  font-size: 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
}

.section-copy p,
.section-head p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
}

.about-card {
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(155deg, rgba(214, 181, 109, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--bg-3);
}

.about-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.about-card p {
  color: var(--muted);
}

.material-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 84px;
}

.swatch {
  min-height: 78px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.charcoal { background: #252321; }
.linen { background: #e8ddcb; }
.brass { background: #c8a96a; }
.oak { background: #8d6842; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}

.stats-grid div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.035);
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.6rem;
}

.stats-grid span {
  color: var(--muted);
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 316px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover,
.choose-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 181, 109, 0.38);
}

.service-card.featured {
  grid-column: span 3;
  min-height: 220px;
  background:
    linear-gradient(120deg, rgba(214, 181, 109, 0.18), transparent),
    rgba(31, 29, 26, 0.86);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(214, 181, 109, 0.45);
  color: var(--accent);
  border-radius: 50%;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.service-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.project-card.large {
  grid-column: span 2;
}

.project-card img,
.image-placeholder {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.image-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(214, 181, 109, 0.14), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px),
    #22201d;
  color: rgba(245, 241, 232, 0.8);
  text-align: center;
}

.project-card div:not(.image-placeholder) {
  padding: 22px;
}

.project-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.project-card p {
  color: var(--muted);
}

.project-card small {
  color: rgba(232, 221, 203, 0.72);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 290px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.process-step span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.15rem;
}

.process-step p,
.choose-card p,
.testimonial blockquote {
  color: var(--muted);
}

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

.choose-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  margin: 0;
  padding: 28px;
}

.testimonial blockquote {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.42;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(214, 181, 109, 0.13), transparent 38%),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  color: var(--muted);
}

.contact-links a:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--beige);
  font-weight: 700;
  font-size: 0.9rem;
}

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

.form-hidden {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.72);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 181, 109, 0.72);
  box-shadow: 0 0 0 4px rgba(214, 181, 109, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note.is-success {
  color: var(--accent);
}

.form-note.is-error {
  color: #f0a7a0;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(214, 181, 109, 0.14), transparent 42%),
    var(--bg);
}

.thank-you-card {
  max-width: 760px;
}

.thank-you-card .brand {
  margin-bottom: 52px;
}

.thank-you-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.footer {
  padding: 64px 0 26px;
  border-top: 1px solid var(--border);
  background: #0b0b0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 40px;
}

.footer p {
  max-width: 420px;
  color: var(--muted);
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: rgba(184, 178, 167, 0.72);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 16px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

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

  .service-card.featured,
  .project-card.large {
    grid-column: span 2;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  .section-pad {
    padding: 84px 0;
  }

  .nav {
    min-height: 86px;
  }

  .menu-toggle {
    display: block;
    z-index: 22;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    font-size: 1.3rem;
  }

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

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 15, 15, 0.88), rgba(15, 15, 15, 0.94)),
      linear-gradient(90deg, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0.48));
  }

  .stats-grid,
  .services-grid,
  .portfolio-grid,
  .testimonial-grid,
  .choose-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card.featured,
  .project-card.large,
  .contact-form .full {
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 70px 0;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.24rem;
  }

  .brand small {
    display: none;
  }

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

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

  .trust-list li {
    width: 100%;
  }

  .about-card,
  .service-card,
  .testimonial,
  .contact-form {
    padding: 22px;
  }

  .material-board {
    margin-bottom: 52px;
  }

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

  .process-step {
    min-height: auto;
  }

  .process-step span {
    margin-bottom: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
