:root {
  --background: #f4f2ee;
  --foreground: #151313;
  --ink: #0b0b0c;
  --concrete: #2a2928;
  --gold: #c9aa63;
  --gold-soft: #f1dfad;
  --red: #bd1019;
  --red-deep: #7d0a11;
  --panel: #ffffff;
  --muted: #625f58;
  --line: rgba(31, 27, 22, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

.hero {
  min-height: 100vh;
  overflow: hidden;
  padding: 20px clamp(18px, 4vw, 56px) 42px;
  color: var(--foreground);
  background:
    radial-gradient(circle at 84% 10%, rgba(201, 170, 99, 0.18), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(189, 16, 25, 0.06), transparent 32%),
    linear-gradient(135deg, #f7f5ef 0%, #f0ebe1 54%, #e7dfcf 100%);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 27, 22, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 27, 22, 0.035) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.82), transparent 48%, rgba(247, 245, 239, 0.18)),
    radial-gradient(circle at 72% 48%, rgba(201, 170, 99, 0.13), transparent 38%);
  opacity: 0.86;
  pointer-events: none;
}

.nav,
.hero-grid,
.stats {
  position: relative;
  z-index: 1;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(31, 27, 22, 0.1);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  padding: 10px 12px;
  box-shadow: 0 18px 42px rgba(49, 39, 27, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(201, 170, 99, 0.3);
  clip-path: polygon(50% 4%, 87% 21%, 87% 72%, 50% 98%, 13% 72%, 13% 21%);
}

.brand strong,
.footer span {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: #4a453d;
  font-size: 0.92rem;
}

.button,
.quote-card button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #191510;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(201, 170, 99, 0.18);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(151, 115, 42, 0.38);
  background: #2d2a25;
  color: #fff;
  padding: 0 18px;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(45, 42, 37, 0.16);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  max-width: 1380px;
  margin: 58px auto 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #6d6250;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section .eyebrow {
  color: var(--red-deep);
}

.split .eyebrow,
.quote-band .eyebrow {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(3.1rem, 6.4vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-width: 160px;
}

.button.primary {
  border: 1px solid rgba(201, 170, 99, 0.62);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(31, 27, 22, 0.12);
  color: var(--foreground);
  box-shadow: none;
}

.contact-strip {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-strip span {
  border: 1px solid rgba(31, 27, 22, 0.12);
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 26px rgba(49, 39, 27, 0.06);
}

.hero-panel {
  align-self: center;
  min-width: 0;
  position: relative;
}

.hero-showcase {
  min-height: clamp(440px, 42vw, 620px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 22, 0.12);
  background: #181715;
  box-shadow: 0 32px 80px rgba(49, 39, 27, 0.18);
}

.hero-showcase > img {
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 42vw, 620px);
  object-fit: cover;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15, 13, 11, 0.72), transparent 42%),
    linear-gradient(90deg, rgba(15, 13, 11, 0.28), transparent 58%);
  pointer-events: none;
}

.showcase-badge {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  top: clamp(18px, 3vw, 30px);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(86%, 430px);
  padding: 12px 14px;
  border: 1px solid rgba(241, 223, 173, 0.42);
  background: rgba(12, 11, 10, 0.72);
  color: #fff;
  backdrop-filter: blur(12px);
}

.showcase-badge img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  clip-path: polygon(50% 4%, 87% 21%, 87% 72%, 50% 98%, 13% 72%, 13% 21%);
}

.showcase-badge strong,
.showcase-badge span {
  display: block;
}

.showcase-badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.showcase-panel {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 1;
  max-width: 560px;
  color: #fff;
}

.showcase-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-panel strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1220px;
  margin: 50px auto 0;
  border: 1px solid rgba(31, 27, 22, 0.12);
}

.stat {
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(31, 27, 22, 0.1);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section,
.quote-band {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section {
  max-width: 1330px;
  margin: 0 auto;
}

.intro,
.split,
.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
}

.intro {
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro p:last-child,
.feature-copy p,
.quote-band p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(24px, 5vw, 48px);
}

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

.service-card,
.quote-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.service-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink), #2c2721);
  color: #fff;
  font-weight: 900;
}

.service-card h3,
.project-card h3 {
  margin: 22px 0 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-card p {
  margin: auto 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.split {
  max-width: none;
  background: #fff;
}

.feature-copy {
  max-width: 620px;
  margin-left: auto;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  border-left: 4px solid var(--red);
  background: #f5f1e8;
  padding: 14px 16px;
  font-weight: 750;
}

.feature-media {
  min-height: 620px;
  overflow: hidden;
  background: #101318;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

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

.project-card {
  position: relative;
  min-height: 440px;
  color: #fff;
  overflow: hidden;
  background: #101318;
}

.project-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 380ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}

.project-card span {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-band {
  max-width: none;
  color: #fff;
  background:
    linear-gradient(rgba(9, 8, 8, 0.84), rgba(9, 8, 8, 0.9)),
    url("hardwood-living.jpg") center / cover fixed;
}

.quote-band > div {
  max-width: 660px;
  margin-left: auto;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.74);
}

.quote-card {
  max-width: 560px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  color: var(--foreground);
}

.quote-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8f9fb;
  min-height: 48px;
  padding: 12px;
  color: var(--foreground);
}

.quote-card textarea {
  min-height: 112px;
  resize: vertical;
}

.quote-card a {
  color: var(--red-deep);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(48px, 6vw, 76px) clamp(18px, 4vw, 56px) 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}

.footer-brand {
  max-width: 430px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  clip-path: polygon(50% 4%, 87% 21%, 87% 72%, 50% 98%, 13% 72%, 13% 21%);
}

.footer-logo span {
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-desc {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-copy {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
}

.footer-mid {
  display: grid;
  gap: 30px;
  align-content: start;
}

.footer-block h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.footer-list {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.92rem;
  line-height: 1.9;
}

.footer-contact a {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-contact a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-brand {
    max-width: none;
  }
}

.contact-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(201, 170, 99, 0.12), transparent 28%),
    linear-gradient(#f4f2ee, #ede8dd);
}

.contact-nav {
  margin: 18px clamp(18px, 4vw, 56px) 0;
  color: var(--foreground);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
  max-width: 1400px;
  margin: 0 auto;
}

.contact-hero h1 {
  color: var(--foreground);
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.contact-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-card-feature {
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.contact-card-feature::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4%;
  background:
    radial-gradient(circle at 50% 45%, rgba(201, 170, 99, 0.24), transparent 48%),
    linear-gradient(135deg, rgba(125, 10, 17, 0.14), transparent 42%);
  filter: blur(58px);
  pointer-events: none;
  z-index: -1;
}

.contact-card-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  border-radius: 8px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.contact-card-art {
  width: 100%;
  aspect-ratio: 1639 / 959;
  object-fit: contain;
  border: none;
  border-radius: 5px;
  background: transparent;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) clamp(64px, 8vw, 110px);
}

.contact-form {
  max-width: none;
}

.hp-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 8px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-weight: 700;
  line-height: 1.55;
}

.form-status.is-success {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--foreground);
}

.form-status.is-error {
  border-color: var(--red);
  background: #fbeaeb;
  color: var(--red-deep);
}

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

.contact-info article {
  min-height: 160px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.contact-info article:first-child,
.contact-info article:nth-child(2) {
  grid-column: 1 / -1;
}

.contact-info h2 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.contact-info a {
  display: inline-block;
  margin-top: 18px;
  color: var(--foreground);
  font-size: clamp(0.96rem, 1.6vw, 1.08rem);
  font-weight: 850;
  overflow-wrap: break-word;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.65;
  margin: 12px 0 0;
}

@media (max-width: 1020px) {
  .hero-grid,
  .intro,
  .split,
  .quote-band,
  .contact-hero,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: 42px;
  }

  .feature-copy,
  .quote-band > div {
    max-width: none;
    margin-left: 0;
  }

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

@media (max-width: 760px) {
  .nav {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links {
    justify-content: space-between;
    order: 3;
  }

  .nav-cta {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.5rem);
  }

  .stats,
  .project-grid,
  .service-grid,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 27, 22, 0.1);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .feature-media,
  .feature-media img {
    min-height: 360px;
  }

  .quote-band {
    background-attachment: scroll;
  }
}

/* ---- Additive: accessibility + FAQ + reduced motion (no image/layout rules) ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.nav-links a[aria-current="page"] { color: var(--red-deep); font-weight: 800; }

.faq .faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-item { border: 1px solid var(--line); background: var(--panel); padding: 4px 20px; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 0;
  font-size: 1.08rem;
  font-weight: 800;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.faq-item a { color: var(--red-deep); font-weight: 800; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Language switcher (under the phone CTA) ---- */
.nav-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.lang-switch a {
  color: var(--muted);
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1;
}
.lang-switch a:hover {
  color: var(--foreground);
}
.lang-switch a[aria-current="true"] {
  color: var(--red-deep);
  background: rgba(189, 16, 25, 0.08);
}

@media (max-width: 760px) {
  .nav-end {
    width: 100%;
    align-items: stretch;
    gap: 10px;
  }
  .lang-switch {
    justify-content: center;
  }
}

/* ---- Legal / privacy page ---- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 56px) clamp(56px, 8vw, 96px);
}
.legal h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 10px;
  line-height: 1;
}
.legal .legal-updated {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 0.9rem;
}
.legal .legal-intro {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.legal h2 {
  margin: 32px 0 10px;
  font-size: 1.3rem;
  line-height: 1.3;
}
.legal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.legal a {
  color: var(--red-deep);
  font-weight: 700;
}
