*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6914;
  --black: #0d0d0d;
  --cream: #f5f0e1;
  --burgundy: #4a0e0e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--black);
  color: var(--cream);
  min-height: 100vh;
  position: relative;
}

.art-deco-border {
  position: fixed;
  left: 0;
  right: 0;
  height: 12px;
  z-index: 200;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 8px,
    var(--black) 8px,
    var(--black) 16px
  );
}
.art-deco-border.top { top: 0; }
.art-deco-border.bottom { bottom: 0; }

.deco-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.header-ornament {
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.deco-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deco-subtitle {
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  font-style: italic;
}

.deco-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  flex-wrap: wrap;
}
.deco-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.deco-nav a:hover { color: var(--gold); }
.nav-diamond { color: var(--gold); font-size: 0.6rem; }

.hero-deco {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-frame {
  border: 2px solid var(--gold);
  padding: 2rem;
  position: relative;
}
.hero-frame::before, .hero-frame::after {
  content: '◆';
  position: absolute;
  color: var(--gold);
  font-size: 0.8rem;
}
.hero-frame::before { top: -8px; left: -8px; }
.hero-frame::after { bottom: -8px; right: -8px; }

.car-silhouette {
  height: 120px;
  position: relative;
  animation: drive 6s ease-in-out infinite alternate;
}

@keyframes drive {
  0% { transform: translateX(-10px); }
  100% { transform: translateX(10px); }
}

.car-body {
  position: absolute;
  bottom: 30px;
  left: 10%;
  width: 80%;
  height: 50px;
  background: linear-gradient(180deg, var(--burgundy), #2a0808);
  border-radius: 40px 40px 5px 5px;
  border: 2px solid var(--gold-dark);
}
.car-body::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 25%;
  width: 50%;
  height: 30px;
  background: linear-gradient(180deg, #1a0505, var(--burgundy));
  border-radius: 20px 20px 0 0;
  border: 2px solid var(--gold-dark);
  border-bottom: none;
}

.car-wheel {
  position: absolute;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #333 30%, var(--gold-dark) 31%, var(--gold-dark) 50%, #222 51%);
  border: 2px solid var(--gold);
  animation: spin 4s linear infinite;
}
.w-left { left: 18%; }
.w-right { right: 18%; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.car-headlight {
  position: absolute;
  bottom: 45px;
  width: 12px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--gold);
  animation: glow 2s ease-in-out infinite alternate;
}
.hl-left { left: 8%; }
.hl-right { right: 8%; }

@keyframes glow {
  0% { opacity: 0.6; box-shadow: 0 0 10px var(--gold); }
  100% { opacity: 1; box-shadow: 0 0 25px var(--gold-light); }
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-words h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-words h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(245, 240, 225, 0.7);
}
.hero-desc-extra {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 225, 0.5);
  margin-top: 1rem;
}

.journal, .testimonials-deco {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.journal-card {
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 2rem;
  transition: border-color 0.3s;
}
.journal-card:hover { border-color: var(--gold); }
.journal-date {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.journal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0.75rem 0;
  color: var(--gold-light);
}
.journal-card p {
  font-size: 0.95rem;
  color: rgba(245, 240, 225, 0.6);
  line-height: 1.7;
}

.testimonials-deco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonials-deco-grid blockquote {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-style: italic;
  color: rgba(245, 240, 225, 0.7);
  line-height: 1.8;
  font-size: 1rem;
  text-align: center;
}

.visit-email {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.visit-email:hover { text-decoration: underline; }

.deco-footer a { color: var(--gold); text-decoration: none; }
.deco-footer a:hover { text-decoration: underline; }

.deco-divider {
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  letter-spacing: 1em;
  font-size: 0.8rem;
}

.section-deco-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

.collection {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.car-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.car-card {
  border: 1px solid rgba(201, 168, 76, 0.3);
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
  cursor: pointer;
}
.car-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.car-card-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.car-card-visual::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 72%;
  height: 62px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    radial-gradient(circle at 82% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    linear-gradient(160deg, transparent 0 18%, rgba(245, 240, 225, 0.18) 19% 42%, transparent 43%),
    linear-gradient(180deg, rgba(232, 213, 163, 0.9), rgba(139, 105, 20, 0.85));
  clip-path: polygon(4% 62%, 18% 44%, 31% 30%, 47% 18%, 66% 24%, 80% 44%, 96% 56%, 92% 75%, 8% 75%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  opacity: 0.9;
  z-index: 2;
}

.car-card-visual::after {
  content: 'CLASSIC PROFILE · ' attr(data-era);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}

.car-card-visual .visual-shine {
  display: none;
}

.c1, .c2, .c3, .c4, .c5, .c6 {
  background:
    radial-gradient(circle at 22% 18%, rgba(232, 213, 163, 0.16), transparent 28%),
    linear-gradient(135deg, var(--paint-a), var(--paint-b));
}
.c1 { --paint-a: #123b19; --paint-b: #061a0b; }
.c2 { --paint-a: #191842; --paint-b: #080719; }
.c3 { --paint-a: #143047; --paint-b: #07151f; }
.c4 { --paint-a: #303030; --paint-b: #111111; }
.c5 { --paint-a: #4b1717; --paint-b: #190707; }
.c6 { --paint-a: #5a1111; --paint-b: #1f0505; }

.c1::before { background:
    radial-gradient(circle at 18% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    radial-gradient(circle at 82% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    linear-gradient(160deg, transparent 0 18%, rgba(245, 240, 225, 0.2) 19% 42%, transparent 43%),
    linear-gradient(180deg, #2f6b35, #0e3116); }
.c2::before { background:
    radial-gradient(circle at 18% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    radial-gradient(circle at 82% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    linear-gradient(160deg, transparent 0 18%, rgba(245, 240, 225, 0.2) 19% 42%, transparent 43%),
    linear-gradient(180deg, #34305f, #111034); }
.c3::before { background:
    radial-gradient(circle at 18% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    radial-gradient(circle at 82% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    linear-gradient(160deg, transparent 0 18%, rgba(245, 240, 225, 0.2) 19% 42%, transparent 43%),
    linear-gradient(180deg, #2e6c94, #0d2b40); }
.c4::before { background:
    radial-gradient(circle at 18% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    radial-gradient(circle at 82% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    linear-gradient(160deg, transparent 0 18%, rgba(245, 240, 225, 0.2) 19% 42%, transparent 43%),
    linear-gradient(180deg, #797979, #252525); }
.c5::before { background:
    radial-gradient(circle at 18% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    radial-gradient(circle at 82% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    linear-gradient(160deg, transparent 0 18%, rgba(245, 240, 225, 0.2) 19% 42%, transparent 43%),
    linear-gradient(180deg, #8a2929, #351010); }
.c6::before { background:
    radial-gradient(circle at 18% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    radial-gradient(circle at 82% 83%, var(--black) 0 10px, var(--gold) 11px 13px, transparent 14px),
    linear-gradient(160deg, transparent 0 18%, rgba(245, 240, 225, 0.2) 19% 42%, transparent 43%),
    linear-gradient(180deg, #b11f1f, #4a0d0d); }

.car-card-info { padding: 1.5rem; }
.era {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.car-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 0.5rem 0;
}
.car-card-info p {
  font-size: 0.95rem;
  color: rgba(245, 240, 225, 0.6);
  line-height: 1.6;
}

.heritage {
  background: linear-gradient(180deg, var(--burgundy), var(--black));
  padding: 5rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.heritage-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.heritage-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.heritage-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(245, 240, 225, 0.7);
  margin-bottom: 1rem;
}

.heritage-stats { display: flex; flex-direction: column; gap: 2rem; }
.h-stat { text-align: center; border: 1px solid rgba(201, 168, 76, 0.3); padding: 1.5rem; }

.h-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.h-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 225, 0.5);
  margin-top: 0.5rem;
  display: block;
}

.services-deco {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-deco {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: border-color 0.3s, background 0.3s;
}
.service-deco:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.service-icon {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.service-deco h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.service-deco p {
  font-size: 0.9rem;
  color: rgba(245, 240, 225, 0.6);
  line-height: 1.6;
}

.visit {
  padding: 4rem 2rem 6rem;
  display: flex;
  justify-content: center;
}

.visit-card {
  max-width: 600px;
  text-align: center;
  border: 2px solid var(--gold);
  padding: 3rem;
  position: relative;
}
.visit-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
}

.visit-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.visit-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  text-align: left;
}

address { font-style: normal; line-height: 1.8; font-size: 1rem; }
address strong { color: var(--gold); display: block; margin-bottom: 0.25rem; letter-spacing: 0.1em; }

.visit-hours { line-height: 1.8; font-size: 1rem; }
.visit-hours strong { color: var(--gold); display: block; margin-bottom: 0.25rem; }

.deco-btn {
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.deco-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.deco-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-ornament {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.deco-footer p {
  font-size: 0.8rem;
  color: rgba(245, 240, 225, 0.4);
}

@media (max-width: 768px) {
  .hero-deco { grid-template-columns: 1fr; }
  .car-showcase { grid-template-columns: 1fr; }
  .heritage-inner { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr 1fr; }
  .journal-grid, .testimonials-deco-grid { grid-template-columns: 1fr; }
  .visit-details { flex-direction: column; align-items: center; }
}

@media (max-width: 500px) {
  .services-row { grid-template-columns: 1fr; }
}
