:root {
  --cream: #efe6d7;
  --cream-soft: #f7f1e6;
  --navy: #283b5b;
  --navy-deep: #1d2c45;
  --amber: #f5a51c;
  --amber-deep: #d68f0e;
  --wine: #7d2e3a;
  --ink: #161616;
  --ink-soft: rgba(20,20,20,0.62);
  --rule: rgba(20,20,20,0.16);

  --serif: 'Playfair Display', Georgia, serif;
  --serif-body: 'Lora', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
  background: var(--navy);
  color: var(--cream);
  border-bottom: 2px solid var(--amber);
}
.brand {
  display: inline-flex; align-items: center;
  line-height: 0;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.brand__logo { height: 42px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(0.8rem, 2.5vw, 2rem); font-size: 0.92rem; }
.nav a { color: var(--cream); transition: color .25s; padding: 0.3rem 0; position: relative; }
.nav a:not(.nav__cta)::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--amber); color: var(--ink);
  padding: 0.5rem 1.15rem; font-weight: 600;
  transition: background .25s, transform .25s;
}
.nav__cta:hover { background: var(--cream); transform: translateY(-1px); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 9vw, 7rem);
  max-width: 1400px;
  margin: 0 auto;
}
.kicker {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--amber-deep); font-weight: 500; }
.lede {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 40ch;
  margin-bottom: 2rem;
}
.cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }

.hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 60px -32px rgba(40,59,91,0.4);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__rule {
  position: absolute; left: -10px; bottom: -10px;
  width: 60%; height: 60%;
  border: 2px solid var(--amber);
  z-index: -1;
}

/* ---------- shared sections ---------- */
section.showroom, section.story, section.case, section.visit {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}
section.story { background: var(--navy); color: var(--cream); max-width: none; padding-left: clamp(1.5rem, 5vw, 4rem); padding-right: clamp(1.5rem, 5vw, 4rem); }
section.story .ord { color: var(--amber); }
section.story h2 { color: var(--cream); }

.section-head {
  display: flex; flex-direction: column; gap: 0.7rem;
  margin-bottom: 3rem;
  max-width: 50ch;
}
.ord {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ---------- showroom grid ---------- */
.show-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.8rem;
}
.show-item {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s ease, border-color .3s ease;
}
.show-item:hover { transform: translateY(-6px); border-color: var(--amber); }
.show-item--lg { grid-row: span 1; }
.show-item figure { aspect-ratio: 4/3; overflow: hidden; }
.show-item--lg figure { aspect-ratio: 4/4.4; }
.show-item figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.show-item:hover figure img { transform: scale(1.05); }
.show-meta { padding: 1.4rem 1.5rem 1.6rem; }
.show-meta h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.35rem; margin-bottom: 0.4rem;
}
.show-meta p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.7rem; }
.show-price {
  display: inline-block;
  font-family: var(--serif-body); font-style: italic;
  color: var(--amber-deep); font-weight: 600;
  font-size: 1.05rem;
}

/* ---------- story ---------- */
.story__body {
  max-width: 60ch;
  font-family: var(--serif-body);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
}
.story__body p + p { margin-top: 1.2em; color: rgba(239,230,215,0.75); font-style: italic; }

/* ---------- case ---------- */
.case__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.case__grid ul { border-top: 1px solid var(--rule); }
.case__grid li {
  display: flex; justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 1rem;
}
.case__grid li span:last-child {
  color: var(--amber-deep); font-family: var(--serif-body); font-style: italic;
}

/* ---------- visit ---------- */
.visit__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.lbl {
  font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 0.8rem; font-weight: 600;
}
.visit p { font-family: var(--serif-body); font-size: 1.15rem; line-height: 1.5; }
.visit a { color: var(--ink); border-bottom: 1px solid var(--rule); transition: border-color .25s; }
.visit a:hover { border-color: var(--amber); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-deep); color: var(--cream);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  display: grid; gap: 1.2rem; place-items: center;
  border-top: 2px solid var(--amber);
}
.foot__mark { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--amber); }
.foot__social { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.foot__social a {
  font-size: 0.9rem; color: var(--cream);
  border-bottom: 1px solid rgba(239,230,215,0.2);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.foot__social a:hover { color: var(--amber); border-color: var(--amber); }
.foot__fine { color: rgba(239,230,215,0.5); font-size: 0.82rem; max-width: 60ch; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .show-grid, .case__grid, .visit__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .nav { gap: 0.7rem; font-size: 0.85rem; }
  .nav a:not(.nav__cta) { display: none; }
}
