:root {
  --cream: #f4f0e8;
  --cream-2: #eee8de;
  --ink: #22201d;
  --muted: #756f66;
  --gold: #b47a32;
  --line: rgba(49, 42, 34, .20);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}
.page-shell {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(390px, 35%) 1fr;
}
.intro {
  padding: 40px 48px 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255,255,255,.6), transparent 34%),
    var(--cream);
}
.brand { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.brand-mark {
  width: 72px; height: 64px; position: relative;
  border-right: 1px solid var(--line);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  line-height: .8;
}
.brand-mark span { position: absolute; }
.brand-mark span:first-child { left: 0; top: 3px; }
.brand-mark span:last-child { left: 26px; top: 24px; }
.brand-name { font-size: 24px; letter-spacing: .24em; white-space: nowrap; }
.brand-tagline { color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .31em; margin-top: 4px; }
.small-rule { width: 52px; height: 1px; background: var(--line); margin: 10px 0 20px; }
.eyebrow, .interest-form h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
}
h1 {
  margin: 0 0 12px;
  max-width: 440px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(49px, 4.1vw, 68px);
  line-height: .94;
  font-weight: 600;
}
.lead { max-width: 450px; margin: 0 0 17px; font-size: 15px; }
.details { margin-bottom: 18px; max-width: 460px; }
.detail-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.icon { color: var(--gold); font-size: 31px; line-height: 1; }
.icon.car { display: flex; align-items: center; justify-content: flex-start; }
.icon.car svg { width: 34px; height: 26px; display: block; fill: currentColor; transform: none; }
.interest-form { max-width: 480px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
label { position: relative; }
label span { position: absolute; left: 12px; top: 10px; font-size: 11px; color: #3f3b36; pointer-events: none; }
input, select, textarea {
  width: 100%;
  min-height: 42px;
  padding: 23px 11px 7px;
  border: 1px solid #cfc6b9;
  border-radius: 0;
  background: rgba(255,255,255,.18);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
}
select { padding-top: 17px; }
textarea { resize: vertical; min-height: 70px; }
.full { grid-column: 1 / -1; }
button {
  width: 100%;
  margin-top: 10px;
  padding: 13px 18px;
  border: 0;
  background: linear-gradient(90deg, #ad722c, #c18842);
  color: #fff;
  font: 600 12px "Montserrat", sans-serif;
  letter-spacing: .22em;
  cursor: pointer;
}
button span { float: right; font-size: 18px; line-height: 13px; }
button:hover { filter: brightness(1.04); }
.privacy-note { margin: 10px 0 0; font-size: 10px; }
a { color: inherit; text-decoration-color: var(--gold); text-underline-offset: 2px; }

.visuals { display: grid; grid-template-rows: minmax(380px, 1.65fr) minmax(210px, .83fr) auto; min-width: 0; }
.hero-image, .interior-image { overflow: hidden; background: #1e1b17; }
.hero-image img, .interior-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.benefits article {
  position: relative;
  padding: 20px 22px 22px;
  text-align: center;
}
.benefits article + article::before {
  content: "";
  position: absolute;
  left: 0; top: 20px; bottom: 20px;
  width: 1px; background: var(--line);
}
.benefit-icon { color: var(--gold); font-size: 35px; line-height: 1; margin-bottom: 10px; }
.benefits h3 { margin: 0 0 8px; font-size: 12px; line-height: 1.45; letter-spacing: .17em; }
.benefits p { margin: 0 auto; max-width: 160px; font-size: 12px; }


.social {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.social-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.social-icon:hover {
  opacity: .72;
  transform: translateY(-1px);
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon .social-fill {
  fill: currentColor;
  stroke: none;
}

footer {
  min-height: 84px;
  padding: 18px 48px;
  display: grid;
  grid-template-columns: 1.7fr 1fr .9fr 1.4fr 1fr .7fr;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  font-size: 11px;
}
footer > * + * { border-left: 1px solid var(--line); padding-left: 22px; }
.footer-brand { display: flex; flex-direction: column; color: var(--gold); }
.footer-brand strong { color: #6f5435; font-size: 19px; letter-spacing: .22em; font-weight: 500; }
.footer-brand span { font-size: 8px; letter-spacing: .28em; }

@media (max-width: 1100px) {
  .page-shell { grid-template-columns: 43% 57%; }
  .intro { padding: 34px 32px; }
  .brand-name { font-size: 19px; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefits article:nth-child(3)::before { display: none; }
  .benefits article:nth-child(n+3) { border-top: 1px solid var(--line); }
  
.social {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.social-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.social-icon:hover {
  opacity: .72;
  transform: translateY(-1px);
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon .social-fill {
  fill: currentColor;
  stroke: none;
}

footer { grid-template-columns: repeat(3, 1fr); }
  footer > * + * { border-left: 0; padding-left: 0; }
}
@media (max-width: 780px) {
  .page-shell { display: flex; flex-direction: column; }
  .intro { display: contents; }
  .intro-copy { order: 1; padding: 28px 22px 26px; background: var(--cream); }
  .visuals { order: 2; display: block; }
  .details { order: 3; padding: 16px 22px 0; margin: 0; background: var(--cream); }
  .interest-form { order: 4; padding: 22px 22px 32px; max-width: none; background: var(--cream); }
  .hero-image { height: 54vh; min-height: 390px; }
  .interior-image { height: 280px; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .brand { margin-top: 3px; }
  h1 { font-size: 55px; }
  .details, .lead { max-width: none; }
  
.social {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.social-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.social-icon:hover {
  opacity: .72;
  transform: translateY(-1px);
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon .social-fill {
  fill: currentColor;
  stroke: none;
}

footer { grid-template-columns: 1fr 1fr; padding: 24px 22px; }
}
@media (max-width: 500px) {
  .brand-name { font-size: 15px; letter-spacing: .17em; }
  .brand-tagline { font-size: 8px; }
  .brand-mark { width: 61px; }
  h1 { font-size: 47px; }
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article + article::before { display: none; }
  .benefits article + article { border-top: 1px solid var(--line); }
  
.social {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.social-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}
.social-icon:hover {
  opacity: .72;
  transform: translateY(-1px);
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon .social-fill {
  fill: currentColor;
  stroke: none;
}

footer { grid-template-columns: 1fr; }
}


/* Contact form status and spam-trap styles */
.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid;
  font-size: 13px;
}
.form-message-success { color: #285c3b; background: #edf7f0; border-color: #9dc4a9; }
.form-message-error { color: #7c2929; background: #fff0f0; border-color: #d8a1a1; }


/* Privacy policy modal */
body.modal-open { overflow: hidden; }
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, .72);
  backdrop-filter: blur(3px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(88vh, 900px);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(180, 122, 50, .45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}
.modal-content {
  max-height: min(88vh, 900px);
  overflow-y: auto;
  padding: 42px 48px 50px;
}
.modal-content h2 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: 1;
}
.modal-content h3 {
  margin: 30px 0 8px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.modal-content p,
.modal-content li {
  font-size: 13px;
  line-height: 1.7;
}
.modal-content ul {
  margin: 8px 0 18px;
  padding-left: 22px;
}
.modal-content a { color: var(--gold); }
.modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 300 34px/1 Arial, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
}
.modal-close:hover {
  filter: none;
  color: var(--gold);
}
.privacy-summary {
  margin-top: 32px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(180, 122, 50, .08);
}
@media (max-width: 600px) {
  .modal { padding: 10px; }
  .modal-dialog,
  .modal-content { max-height: 92vh; }
  .modal-content { padding: 38px 22px 34px; }
  .modal-content h2 { font-size: 39px; }
}
