/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum: #6B2D5B;
  --plum-dark: #4A1E3F;
  --plum-deeper: #351730;
  --plum-light: #8C4072;
  --amber: #D4A04A;
  --amber-light: #E8C078;
  --amber-dark: #B8862E;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --text: #2A1F24;
  --text-light: #5C4A52;
  --text-muted: #8A7580;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --shadow-sm: 0 1px 3px rgba(107,45,91,0.08);
  --shadow-md: 0 4px 20px rgba(107,45,91,0.10);
  --shadow-lg: 0 8px 40px rgba(107,45,91,0.14);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, [role="img"] { display: block; max-width: 100%; }

a { color: var(--plum); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--plum-dark);
  border-color: var(--white);
}

.btn-amber {
  background: var(--amber);
  color: var(--plum-deeper);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  color: var(--plum-deeper);
}

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 14px 36px; font-size: 0.95rem; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  transition: color var(--transition);
}

.site-header.scrolled .logo { color: var(--plum-dark); }

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--amber);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.site-header.scrolled .main-nav a { color: var(--text-light); }
.site-header.scrolled .main-nav a:hover { color: var(--plum); }

.nav-cta {
  background: var(--amber);
  color: var(--plum-deeper) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--amber-light); color: var(--plum-deeper) !important; }

/* ── Mobile Nav ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: all var(--transition);
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--white);
  left: 0;
  transition: all var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after { background: var(--plum-dark); }
.site-header.scrolled .nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.site-header.scrolled .nav-toggle[aria-expanded="true"] .hamburger::before { background: var(--plum-dark); }
.site-header.scrolled .nav-toggle[aria-expanded="true"] .hamburger::after { background: var(--plum-dark); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/2067552/pexels-photo-2067552.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(53,23,48,0.82) 0%,
    rgba(107,45,91,0.68) 50%,
    rgba(42,31,36,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}

.hero-frame {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards 0.3s;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-greeting {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--amber-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 28px;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin: 0 auto 24px;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: url('https://images.pexels.com/photos/34724509/pexels-photo-34724509.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=600&h=750') center center / cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--plum);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about-text .section-title { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; color: var(--text-light); }

/* ── Experience ── */
.experience {
  padding: 100px 0;
  background: var(--plum-deeper);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.experience .container { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-eyebrow { color: var(--amber-light); }
.section-header .section-title { color: var(--white); }
.section-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.exp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}

.exp-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,160,74,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.exp-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,160,74,0.12);
  border-radius: 50%;
  color: var(--amber);
}

.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── Visit ── */
.visit {
  padding: 100px 0;
  background: var(--cream-dark);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-address,
.visit-phone {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.visit-address svg,
.visit-phone svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--plum);
}

.visit-phone a:hover { color: var(--amber-dark); }

.visit-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  aspect-ratio: 16/10;
  background: url('https://images.pexels.com/photos/38565616/pexels-photo-38565616.png?auto=compress&cs=tinysrgb&fit=crop&w=800&h=500') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  position: relative;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,45,91,0.7), rgba(53,23,48,0.8));
}

.map-placeholder > * { position: relative; z-index: 1; }

.map-placeholder svg { color: var(--amber-light); }
.map-placeholder p { font-size: 0.9rem; opacity: 0.9; text-align: center; }
.map-placeholder .btn { margin-top: 4px; }

/* Hours */
.hours-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 24px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(107,45,91,0.1);
  font-size: 0.95rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list .day {
  font-weight: 600;
  color: var(--text);
}

.hours-list .time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hours-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hours-note a { color: var(--plum); font-weight: 500; }
.hours-note a:hover { color: var(--amber-dark); }

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text .section-title { margin-bottom: 20px; }
.contact-text p { color: var(--text-light); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107,45,91,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(107,45,91,0.12);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(107,45,91,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.form-note a { color: var(--plum); font-weight: 500; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(107,45,91,0.06);
  border-radius: var(--radius);
  color: var(--plum-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success svg { flex-shrink: 0; color: var(--plum); }

/* ── Footer ── */
.site-footer {
  background: var(--plum-deeper);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-light { color: var(--white) !important; margin-bottom: 16px; }
.logo-light:hover { color: var(--white); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-contact a { color: var(--amber); }
.footer-contact a:hover { color: var(--amber-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--plum-deeper);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 30px rgba(0,0,0,0.2);
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .main-nav a {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
  }
  .main-nav a:hover { color: var(--white); }

  .nav-cta {
    background: var(--amber) !important;
    color: var(--plum-deeper) !important;
  }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }

  .experience-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .about-image-accent { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
