/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fefcf9;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7B2D8E;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #1a1a1a;
  margin-bottom: 20px;
}
.section-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, #7B2D8E, #D4943A);
  margin-bottom: 32px;
}
.section-line.line--left { margin-left: 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-line { margin: 0 auto 32px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 0;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: #7B2D8E;
  color: #fff;
  border-color: #7B2D8E;
}
.btn--primary:hover {
  background: #632270;
  border-color: #632270;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 142, 0.25);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn--full { width: 100%; justify-content: center; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(254, 252, 249, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(123, 45, 142, 0.1);
  padding-top: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-logo-plum { color: #7B2D8E; }
.nav-logo-amber { color: #D4943A; }
.nav.scrolled .nav-logo-plum { color: #7B2D8E; }
.nav.scrolled .nav-logo-amber { color: #D4943A; }
.menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.menu-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  position: relative;
}
.menu-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4943A;
  transition: width 0.3s ease;
}
.menu-link:hover { color: #fff; }
.menu-link:hover::after { width: 100%; }
.nav.scrolled .menu-link { color: #1a1a1a; }
.nav.scrolled .menu-link:hover { color: #7B2D8E; }
.menu-link--amber { color: #D4943A !important; font-weight: 500; }
.menu-link--amber::after { display: none; }
.menu-link--amber:hover { color: #b87a2e !important; }

/* ─── MOBILE MENU ─── */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 8px;
  transition: color 0.3s;
}
.nav.scrolled .menu-btn { color: #1a1a1a; }
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(254, 252, 249, 0.97);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-overlay.active { opacity: 1; pointer-events: all; }
.menu-overlay-inner { text-align: center; }
.close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  padding: 8px;
}
.menu-overlay-list { display: flex; flex-direction: column; gap: 28px; }
.menu-overlay-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #1a1a1a;
  transition: color 0.3s;
}
.menu-overlay-link:hover { color: #7B2D8E; }
.menu-overlay-link--amber { color: #D4943A !important; font-weight: 500; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d0a35 0%, #7B2D8E 35%, #a8429e 55%, #D4943A 85%, #e8b960 100%);
  z-index: 0;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123, 45, 142, 0.6) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(212, 148, 58, 0.3) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-headline-amber {
  color: #e8b960;
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: #fefcf9;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(123, 45, 142, 0.08);
  border: 1px solid rgba(123, 45, 142, 0.08);
}
.service-card {
  background: #fefcf9;
  padding: 48px 36px;
  transition: all 0.4s ease;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7B2D8E, #D4943A);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: #faf5ff; }
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #7B2D8E;
}
.service-name {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.service-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: #faf5ff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 680px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 82%;
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 65%;
  overflow: hidden;
  border: 6px solid #faf5ff;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-box {
  position: absolute;
  bottom: 52%;
  right: -12px;
  background: linear-gradient(135deg, #7B2D8E, #a8429e);
  padding: 28px 32px;
  text-align: center;
  z-index: 2;
}
.accent-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.accent-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.about-content { max-width: 480px; }
.about-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #333;
}
.value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B2D8E, #D4943A);
  flex-shrink: 0;
}

/* ─── GALLERY ─── */
.gallery {
  padding: 120px 0;
  background: #fefcf9;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 10, 53, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 300;
  font-style: italic;
}
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide { grid-column: span 8; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 4; }

/* ─── VISIT ─── */
.visit {
  padding: 120px 0;
  background: #faf5ff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 45, 142, 0.2);
  color: #7B2D8E;
}
.visit-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.visit-detail p { font-size: 0.95rem; color: #333; line-height: 1.6; }
.visit-detail-link {
  font-size: 0.95rem;
  color: #7B2D8E;
  transition: color 0.3s;
}
.visit-detail-link:hover { color: #D4943A; }
.visit-map { margin-top: 12px; }

/* ─── FORM ─── */
.visit-form-wrap {
  background: #fff;
  padding: 48px;
  border: 1px solid rgba(123, 45, 142, 0.08);
}
.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 36px;
  font-weight: 300;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid #e0d6e8;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus { border-color: #7B2D8E; }
.form-input::placeholder { color: #bbb; }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #166534;
  font-size: 0.88rem;
}
.form-success svg { color: #22c55e; flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer {
  background: #1a1a1a;
  padding: 72px 0 40px;
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-logo-plum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #a8429e;
}
.footer-logo-amber {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #D4943A;
}
.footer-tagline {
  margin-top: 12px;
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: #D4943A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .about-images { height: 500px; }
  .visit-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .menu { display: none; }
  .menu-btn { display: block; }
  .hero { padding: 100px 20px 80px; min-height: 100svh; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; order: -1; }
  .about-content { max-width: 100%; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 1; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-form-wrap { padding: 32px 24px; }
  .footer-top { flex-direction: column; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall, .gallery-item--wide { grid-column: span 1; }
}
