﻿:root {
  --ink: #302722;
  --muted: #75685f;
  --paper: #fffaf3;
  --cream: #f3e7d8;
  --blush: #d8aaa2;
  --sage: #8a9b83;
  --moss: #576956;
  --clay: #a46f5d;
  --gold: #b8955a;
  --line: rgba(48, 39, 34, 0.14);
  --shadow: 0 24px 70px rgba(67, 45, 34, 0.18);
  --radius: 8px;
}

* { 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(--paper);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(40, 31, 27, 0.62), rgba(40, 31, 27, 0));
}

.brand, .nav-links { display: flex; align-items: center; gap: 12px; }
.brand { font-weight: 700; letter-spacing: 0; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
}
.nav-links { gap: clamp(14px, 3vw, 30px); font-size: 14px; color: rgba(255,255,255,0.88); }
.nav-links a:hover { color: #fff; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #d9c9b7;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 29, 25, 0.74) 0%, rgba(63, 46, 38, 0.48) 35%, rgba(255,255,255,0.02) 72%),
    linear-gradient(0deg, rgba(48, 39, 34, 0.30), rgba(48, 39, 34, 0.08));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 56px;
  color: #fff;
}
.eyebrow, .tiny-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1, .section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(46px, 7vw, 92px); max-width: 760px; }
.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: #fff; box-shadow: 0 14px 34px rgba(27, 21, 18, 0.24); }
.hero .button.primary { background: #fff; color: var(--ink); }
.button.secondary { border-color: rgba(255,255,255,0.58); color: #fff; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); }

.intro-band { background: #fff; border-bottom: 1px solid var(--line); }
.intro-grid {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.intro-grid > div { padding: 30px; background: #fff; }
.intro-grid strong { display: block; font-size: 18px; }
.intro-grid p { margin: 8px 0 0; color: var(--muted); line-height: 1.55; }
.tiny-label { display: block; color: var(--clay); margin-bottom: 8px; }

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}
.split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 6vw, 78px); align-items: center; }
.section-copy p:not(.eyebrow), .order-copy p, .section-heading + p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.section h2 { font-size: clamp(34px, 5vw, 60px); }
.variant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.variant {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(83, 59, 45, 0.08);
  cursor: pointer;
}
.variant.selected { border-color: rgba(164, 111, 93, 0.56); box-shadow: var(--shadow); }
.variant h3, .steps h3, .preview-details h3 { margin: 18px 0 8px; font-size: 21px; }
.variant p, .steps p, .preview-details p, .site-footer p { color: var(--muted); line-height: 1.6; margin: 0; }
.variant-visual {
  height: 210px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #efe0cf);
  position: relative;
  overflow: hidden;
}
.variant-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.variant:hover .variant-visual img,
.variant.selected .variant-visual img {
  transform: scale(1.035);
}
.variant.selected .variant-visual img {
  filter: saturate(1.04) contrast(1.02);
}
.process { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.steps article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.steps span { color: var(--clay); font-weight: 800; font-size: 13px; }

.order-section { padding-top: clamp(72px, 9vw, 124px); }
.order-copy { max-width: 720px; margin-bottom: 30px; }
.order-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 22px; align-items: start; }
.order-form, .preview-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.order-form { padding: clamp(18px, 3vw, 30px); }
fieldset { border: 0; padding: 0; margin: 0 0 26px; }
legend { margin-bottom: 14px; font-weight: 800; font-size: 18px; }
.segmented { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 14px; }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: grid; place-items: center; min-height: 46px; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 700; background: #fff; }
.segmented input:checked + span { background: #efe0d5; border-color: rgba(164,111,93,.5); color: #6f4437; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.field { display: grid; gap: 7px; margin-bottom: 12px; }
.field span { font-size: 13px; font-weight: 800; color: var(--muted); }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 12px; font: inherit; color: var(--ink); background: #fffdf9; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(138, 155, 131, 0.35); border-color: var(--sage); }
.upload-box { min-height: 136px; display: grid; place-items: center; text-align: center; gap: 4px; padding: 22px; margin-bottom: 14px; border: 1px dashed rgba(48,39,34,.28); border-radius: var(--radius); background: #fffaf4; cursor: pointer; }
.upload-box input { position: absolute; opacity: 0; pointer-events: none; }
.upload-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: #fff; font-size: 26px; line-height: 1; }
.upload-box small { color: var(--muted); }
.form-submit { width: 100%; border: 0; }
.form-submit:disabled { opacity: .72; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--muted); line-height: 1.5; }
.form-status.success { color: var(--moss); font-weight: 700; }
.form-status.error { color: #9a3f32; font-weight: 700; }
.form-status.pending { color: var(--clay); }
.preview-panel { position: sticky; top: 92px; overflow: hidden; }
.blueprint-preview { min-height: 430px; position: relative; overflow: hidden; background: linear-gradient(145deg, #f8efe4, #fffaf3 58%, #edf3e8); display: grid; place-items: center; }
.blueprint-grid { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(164,111,93,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(164,111,93,.16) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(circle at center, #000 35%, transparent 78%); }
.blueprint-drawing { position: relative; z-index: 1; width: min(92%, 520px); height: auto; filter: drop-shadow(0 18px 24px rgba(83,59,45,.08)); }
.sketch-line { fill: none; stroke: #8f6f62; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.sketch-line.light { stroke-width: 2; opacity: .55; }
.sketch-line.soft { stroke-width: 2.4; opacity: .72; }
.sketch-line.tiny { stroke-width: 1.8; opacity: .7; }
.sketch-cloud { display: none; }
.blueprint-preview.is-cloud .sketch-basket { display: none; }
.blueprint-preview.is-cloud .sketch-cloud { display: block; }
.blueprint-plaque { position: absolute; left: 50%; bottom: 34px; z-index: 2; width: min(356px, calc(100% - 52px)); min-height: 82px; display: grid; place-items: center; text-align: center; padding: 15px 22px; border: 1px solid rgba(143,111,98,.35); border-radius: 999px; background: rgba(255,253,249,.78); box-shadow: 0 18px 44px rgba(66,46,36,.12); transform: translateX(-50%); backdrop-filter: blur(8px); }
.blueprint-plaque p { margin: 0 0 5px; font-family: "Playfair Display", serif; font-size: clamp(25px, 3.2vw, 34px); line-height: 1.05; max-width: 100%; overflow-wrap: anywhere; }
.blueprint-plaque small { color: var(--muted); line-height: 1.35; }
.preview-details { padding: 24px; }
.preview-details h3 { margin-top: 0; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 34px clamp(18px, 4vw, 56px); border-top: 1px solid var(--line); background: #fff; }
.site-footer span { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; }
.site-footer p { max-width: 620px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: 820px; align-items: end; }
  .hero-image { object-position: 62% center; }
  .hero-scrim { background: linear-gradient(0deg, rgba(38,29,25,.82) 0%, rgba(38,29,25,.48) 45%, rgba(38,29,25,.08) 100%); }
  .hero-content { margin: 0 auto; padding: 0 0 44px; }
  .intro-grid, .split, .steps, .order-layout { grid-template-columns: 1fr; }
  .variant-grid, .field-grid { grid-template-columns: 1fr; }
  .preview-panel { position: static; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .hero h1 { font-size: 42px; }
  .hero-copy { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .intro-grid > div, .steps article, .variant, .order-form { padding: 18px; }
  .mini-sculpture { min-height: 360px; padding: 30px 16px; }
}





