:root {
  --bg: #ffffff;
  --surface: #f5f4f2;
  --surface-strong: #efeeec;
  --ink: #171717;
  --muted: #646464;
  --gold: #c99d6c;
  --gold-dark: #a97845;
  --footer: #111111;
  --shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
  --radius: 26px;
  --max: 1170px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
}
.social-nav a, .site-footer a, .button {
  gap: 8px;
}
.social-nav a span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.social-nav a {
  border: 1px solid rgba(23,23,23,0.08);
}
.social-nav a:hover { color: var(--gold-dark); }


.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 20;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 140px;
  height: auto;
  object-fit: contain;
}
.social-nav, .site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-nav a, .site-footer a {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.social-nav a:hover, .site-footer a:hover { background: var(--surface); transform: translateY(-1px); }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(201, 157, 108, 0.45);
  outline-offset: 4px;
}

.hero {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  padding: 50px 40px 70px;
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.82fr 1.38fr;
  align-items: center;
  gap: 70px;
}
.hero::after {
  content: "";
  position: absolute;
  top: -96px;
  right: 0;
  width: 58%;
  height: calc(100% + 70px);
  background: var(--surface);
  z-index: -1;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  max-width: 520px;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
}
h3 {
  margin: 22px 0 10px;
  font-size: clamp(24px, 2.5vw, 32px);
}
.hero-copy > p:not(.eyebrow), .section > p, .service-card p, .pricing p, .feature-stack p, .numbers span {
  color: var(--muted);
}
.hero-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 430px;
  font-size: 18px;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  min-height: 46px;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(0,0,0,0.12); }
.primary { background: var(--gold); color: #fff; }
.primary:hover { background: var(--gold-dark); }
.secondary { border: 1px solid rgba(23,23,23,0.18); color: var(--ink); background: #fff; }
.secondary.light { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.45); }
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.frame-banner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.frame-banner img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.banner-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(201,157,108,0.88), rgba(201,157,108,0.88)), url('./assets/bedroom.jpg') center/cover;
}
.banner-card span { font-size: 42px; line-height: 1; }
.banner-card h2 {
  max-width: 420px;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 54px;
  text-align: center;
}
.intro p, .testimonials > p { max-width: 650px; margin: 14px auto 0; }
.services-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}
.service-card iframe, .image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
  object-fit: cover;
}
.service-card h3 { font-size: 27px; }
.service-card p { margin: 0; }

.pricing { margin-bottom: 90px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
  text-align: left;
}
.pricing-grid article {
  padding: 30px;
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(17,17,17,0.05);
}
.pricing-grid .highlight {
  border-color: rgba(201,157,108,0.5);
  background: #fff9f1;
}
.pricing-grid span { color: var(--gold-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; }
.pricing-grid strong { display: block; margin: 12px 0; font-size: 48px; line-height: 1; color: var(--ink); }

.testimonials {
  background: var(--surface);
  padding: 70px 36px;
  margin-bottom: 80px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 42px;
  text-align: left;
}
figure {
  margin: 0;
  padding: 34px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(18,18,18,0.06);
}
blockquote { margin: 0 0 22px; color: var(--muted); }
blockquote::before { content: "“"; display: block; color: var(--gold); font-family: Georgia, serif; font-size: 70px; line-height: 0.7; }
figcaption { color: #f0a23a; display: grid; gap: 10px; }
figcaption strong { color: var(--ink); font-family: "Playfair Display", Georgia, serif; }

.split-feature {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  min-height: 580px;
  overflow: hidden;
}
.feature-photo { position: relative; background: #111; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.58; }
.feature-photo::after { content: "✦"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 68px; }
.feature-stack { display: grid; grid-template-rows: 1fr 1fr; }
.feature-stack article { padding: clamp(34px, 5vw, 58px); display: flex; flex-direction: column; justify-content: center; }
.gold-card { background: var(--gold); color: #fff; }
.gold-card p { color: rgba(255,255,255,0.9); }
.white-card { background: var(--surface); }
.feature-stack span { font-size: 40px; }
.feature-stack h3 { margin-top: 8px; }

.numbers { margin-bottom: 90px; }
.numbers h2 { max-width: 740px; margin: 0 auto; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 38px;
}
.numbers-grid div {
  padding: 28px 16px;
  border-top: 1px solid rgba(23,23,23,0.08);
}
.numbers-grid strong { display: block; color: var(--gold); font-size: clamp(38px, 5vw, 62px); line-height: 1; font-weight: 500; }
.numbers-grid span { display: block; margin-top: 14px; font-size: 16px; }

.contact {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 90px;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #080808;
}
.contact > img, .contact-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact > img {
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.08);
}
.contact-overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(0,0,0,0.22), rgba(0,0,0,0.72) 68%),
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.72));
}
.contact-content {
  position: relative;
  width: min(760px, calc(100% - 32px));
  padding: 46px 28px;
  border-radius: 24px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(2px);
}
.contact-content a:not(.button) { color: #fff; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.contact .eyebrow { color: #f4d3ad; }

.site-footer {
  padding: 44px 20px;
  text-align: center;
  background: var(--footer);
  color: rgba(255,255,255,0.72);
}
.site-footer div { justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.site-footer a { border: 1px solid rgba(255,255,255,0.18); color: #fff; padding: 0 16px; }
.site-footer p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.54); }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 28px 0 40px; }
  .hero::after { width: 100%; top: 160px; height: 64%; }
  .services-grid, .pricing-grid, .testimonial-grid, .numbers-grid { grid-template-columns: 1fr 1fr; }
  .split-feature { grid-template-columns: 1fr; }
  .feature-photo { min-height: 320px; }
}

@media (max-width: 640px) {
  .site-header { min-height: 86px; width: min(var(--max), calc(100% - 28px)); }
  .brand img { width: 112px; }
  .social-nav { gap: 4px; }
  .site-footer a { padding: 0 12px; }
  .hero, .frame-banner, .section, .services-grid, .split-feature, .contact { width: calc(100% - 28px); }
  .hero { margin-bottom: 54px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .frame-banner { grid-template-columns: 1fr; margin-bottom: 58px; }
  .services-grid, .pricing-grid, .testimonial-grid, .numbers-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { margin-bottom: 68px; }
  .testimonials { padding: 48px 18px; }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
}

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