:root{
  --bg: #f5f1eb;
  --paper: #fcfbf8;
  --white: #ffffff;
  --text: #1e1a17;
  --muted: #70665f;
  --line: rgba(30,26,23,.12);
  --gold: #b8935b;
  --wine: #8e1d24;
  --shadow: 0 24px 60px rgba(24,19,16,.08);
  --radius-lg: 28px;
  --container: 1160px;
}

*,
*::before,
*::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(184,147,91,.10), transparent 32%),
    linear-gradient(180deg, #fbf9f5 0%, #f4efe8 100%);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

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

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 1000;
  padding: .8rem 1rem;
  border-radius: 8px;
  background: var(--wine);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus{ left: 1rem; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(30,26,23,.07);
  background: rgba(252,251,248,.90);
  backdrop-filter: blur(14px);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 90px;
}

.brand{ display: block; width: clamp(230px, 27vw, 365px); }
.brand img{ width: 100%; height: auto; }

.header-link{
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.header-link:hover,
.header-link:focus{ color: var(--wine); }

section{ padding: 48px 0; }
.hero{ padding: 58px 0 56px; }

.hero-grid{
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.hero-copy{
  min-width: 0;
  max-width: 650px;
}

.eyebrow,
.section-label{
  margin: 0 0 .9rem;
  color: var(--wine);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2{
  margin: 0 0 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.01em;
  line-height: 1.06;
}

h1{
  font-size: clamp(2.85rem, 4.9vw, 4.25rem);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
h2{ font-size: clamp(2.3rem, 4.6vw, 3.8rem); }

p{
  margin: 0 0 1.1rem;
  color: #423a35;
  font-size: 1.04rem;
}

.hero-copy .button,
.showroom-copy .button{ margin-top: .8rem; }

.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus{ transform: translateY(-1px); }

.button-primary{
  background: linear-gradient(135deg, #9a1d25, #6d0d12);
  box-shadow: 0 16px 30px rgba(109,13,18,.22);
  color: var(--white);
}

.hero-media,
.showroom-image{
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30,26,23,.08);
  border-radius: var(--radius-lg);
  background: #eee7de;
  box-shadow: var(--shadow);
}

.hero-brandmark{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: clamp(34px, 5vw, 70px);
  background:
    radial-gradient(circle at 70% 18%, rgba(184,147,91,.18), transparent 32%),
    rgba(255,255,255,.78);
}

.hero-brandmark img{ width: min(100%, 430px); height: auto; }

.showroom-section{ padding: 64px 0 76px; }

.showroom-grid{
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 32px;
}

.showroom-image img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.showroom-copy{
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(30,26,23,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}

.address,
.opening{ color: var(--text); font-weight: 700; }

.address{
  padding: .8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.opening{ margin-bottom: 0; }

:focus-visible{
  border-radius: 6px;
  outline: 3px solid rgba(142,29,36,.35);
  outline-offset: 3px;
}

.site-footer{
  border-top: 1px solid rgba(30,26,23,.08);
  background: rgba(255,255,255,.62);
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-logo{ width: 220px; height: auto; }

.footer-links{
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a{
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus{ color: var(--wine); }

@media (max-width: 900px){
  .hero-grid,
  .showroom-grid{ grid-template-columns: 1fr; }

  .hero-media{ order: -1; }
  .hero-brandmark{ min-height: 300px; }
}

@media (max-width: 640px){
  .container{ width: min(var(--container), calc(100% - 32px)); }
  .header-inner{ min-height: 76px; }
  .brand{ width: min(280px, 78vw); }
  .header-link{ display: none; }
  section{ padding: 34px 0; }
  .hero{ padding-top: 28px; }
  h1{ font-size: 2.5rem; }
  .hero-brandmark{ min-height: 230px; padding: 32px 24px; }
  .showroom-copy{ padding: 26px 21px; }
  .button{ width: 100%; }

  .footer-inner{
    flex-direction: column;
    text-align: center;
  }

  .footer-logo{ width: 200px; }
}
