:root {
  color-scheme: light;
  --ink: #17120f;
  --paper: #f3eee6;
  --bone: #fffaf3;
  --mist: #d8ded3;
  --sage: #586450;
  --clay: #a65f39;
  --gold: #c89458;
  --muted: #6b6259;
  --line: rgba(23, 18, 15, 0.14);
  --shadow: 0 32px 90px rgba(23, 18, 15, 0.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px clamp(16px, 4vw, 56px);
  background: rgba(243, 238, 230, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}
.nav { display: flex; align-items: center; gap: clamp(12px, 2.1vw, 26px); font-size: 14px; }
.nav a { color: rgba(23, 18, 15, 0.74); text-decoration: none; }
.nav-cta { padding: 9px 15px; color: var(--bone) !important; background: var(--ink); border-radius: 999px; }
.hero-showcase {
  min-height: min(860px, calc(100vh - 62px));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  grid-template-rows: 1fr auto;
  background: radial-gradient(circle at 78% 24%, rgba(216,222,211,0.9), transparent 34%), linear-gradient(135deg, var(--bone) 0%, #eadfd2 48%, #22201d 48%, #161210 100%);
  overflow: hidden;
}
.hero-copy {
  align-self: center;
  padding: clamp(36px, 7vw, 108px) clamp(18px, 5vw, 78px);
}
.drop-label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: 0; }
h1 { margin-bottom: 18px; font-size: clamp(64px, 10vw, 138px); line-height: 0.84; }
h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 76px); line-height: 0.95; }
.hero-subtitle { max-width: 560px; color: var(--muted); font-size: clamp(18px, 2vw, 25px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}
.button.primary { color: var(--bone); background: var(--ink); border-color: var(--ink); }
.button.ghost { color: var(--ink); background: rgba(255,250,243,0.52); }
.hero-visual { align-self: center; padding: clamp(18px, 4vw, 58px) clamp(16px, 5vw, 76px) clamp(18px, 4vw, 58px) 0; }
.hero-visual picture {
  display: block;
  overflow: hidden;
  background: #d7c6b3;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: min(70vh, 680px); object-fit: cover; object-position: center center; }
.hero-specs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--bone);
}
.hero-specs span { min-height: 112px; padding: 24px clamp(18px, 4vw, 52px); border-right: 1px solid rgba(255,255,255,0.16); }
.hero-specs small { display: block; margin-bottom: 7px; color: rgba(255,250,243,0.58); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.hero-specs strong { font-size: clamp(22px, 2.4vw, 34px); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.section { padding: clamp(64px, 9vw, 132px) clamp(18px, 5vw, 84px); border-bottom: 1px solid var(--line); }
.section-label { margin-bottom: 18px; color: var(--clay); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.intro-grid, .living-section, .order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: center;
}
.intro-copy { color: var(--muted); font-size: clamp(18px, 1.8vw, 23px); }
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--bone); border-bottom: 1px solid var(--line); }
.value-strip article { padding: clamp(28px, 4vw, 54px); border-right: 1px solid var(--line); }
.value-strip article:last-child { border-right: 0; }
.value-strip span { color: var(--gold); font-size: 12px; font-weight: 950; }
.value-strip strong { display: block; margin: 12px 0 8px; font-size: clamp(25px, 2.8vw, 42px); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.value-strip p { margin: 0; color: var(--muted); }
.object-section { color: var(--bone); background: #15110f; }
.object-heading { max-width: 980px; }
.object-section .drop-label { color: var(--gold); }
.object-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(36px, 5vw, 72px); background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.18); }
.object-specs article { min-height: 270px; padding: 26px; background: #241d19; }
.object-specs small { color: var(--gold); font-weight: 900; text-transform: uppercase; }
.object-specs strong { display: block; margin: 16px 0 18px; font-size: clamp(28px, 3vw, 46px); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.object-specs p { margin: 0; color: rgba(255,250,243,0.68); }
.gallery-section { background: var(--bone); }
.gallery-heading { max-width: 900px; margin-bottom: clamp(28px, 5vw, 68px); }
.editorial-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 2vw, 28px); align-items: start; }
.editorial-shot { margin: 0; }
.editorial-shot picture { display: block; overflow: hidden; background: #dfd0c0; }
.editorial-shot img { width: 100%; height: auto; object-fit: contain; }
.editorial-shot figcaption { margin-top: 10px; color: var(--muted); font-size: 14px; }
.shot-1 { grid-column: span 7; }
.shot-2 { grid-column: span 5; padding-top: 7vw; }
.shot-3, .shot-4, .shot-5 { grid-column: span 4; }
.shot-6 { grid-column: span 5; }
.shot-7 { grid-column: span 7; padding-top: 4vw; }
.living-section { background: var(--mist); }
.living-image picture { display: block; overflow: hidden; box-shadow: var(--shadow); background: #d5c7b8; }
.living-copy p, .living-copy li { color: var(--muted); font-size: 19px; }
.living-copy ul { margin: 24px 0 0; padding-left: 20px; }
.faq-section { background: var(--paper); }
.faq { display: grid; gap: 10px; max-width: 980px; }
details { padding: 22px 24px; background: var(--bone); border: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 850; }
details p { margin: 14px 0 0; color: var(--muted); }
.order-section { color: var(--bone); background: var(--ink); }
.order-section .drop-label { color: var(--gold); }
.order-section p { color: rgba(255,250,243,0.68); font-size: 19px; }
.order-panel { display: grid; gap: 14px; padding: clamp(24px, 4vw, 46px); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); }
.order-panel strong { font-size: clamp(48px, 6vw, 88px); font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 0.95; }
.order-panel span { color: rgba(255,250,243,0.68); }
.order-panel .button.primary { color: var(--ink); background: var(--bone); border-color: var(--bone); }
.order-panel .button.ghost, .phone-link { color: var(--bone); }
.phone-link { font-weight: 850; text-decoration: none; }
.site-footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px clamp(18px, 5vw, 84px); color: var(--muted); }
@media (max-width: 1040px) {
  .hero-showcase { grid-template-columns: 1fr; grid-template-rows: auto auto auto; background: var(--bone); }
  .hero-copy { padding: 26px 18px 24px; }
  .hero-visual { padding: 0 18px 26px; }
  .hero-visual img { height: auto; object-fit: contain; }
  .hero-specs, .value-strip, .object-specs { grid-template-columns: 1fr 1fr; }
  .intro-grid, .living-section, .order-section { grid-template-columns: 1fr; }
  .editorial-gallery { display: block; }
  .editorial-shot { margin-bottom: 28px; padding-top: 0 !important; }
}
@media (max-width: 640px) {
  .site-header { padding: 12px 14px; }
  .brand { font-size: 20px; }
  .nav { gap: 10px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 13px; font-size: 13px; }
  h1 { font-size: clamp(54px, 17vw, 78px); line-height: 0.86; }
  h2 { font-size: clamp(34px, 10vw, 44px); line-height: 1; }
  .hero-subtitle { font-size: 17px; line-height: 1.42; }
  .hero-actions { margin-top: 22px; }
  .button { width: 100%; min-height: 48px; }
  .hero-visual { order: -1; padding: 0; }
  .hero-visual picture { border-left: 0; border-right: 0; box-shadow: none; }
  .hero-specs { grid-template-columns: 1fr 1fr; }
  .hero-specs span { min-height: 84px; padding: 16px 18px; }
  .hero-specs strong { font-size: 20px; }
  .section { padding: 52px 18px; }
  .value-strip { grid-template-columns: 1fr; }
  .value-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .object-specs { grid-template-columns: 1fr; }
  .object-specs article { min-height: 0; padding: 22px; }
  .site-footer { flex-direction: column; }
}
