@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #9A6F2A;
  --gold-light: #C9A84C;
  --gold-dark: #6B4A14;
  --crimson: #B8102A;
  --crimson-dark: #8A0C1F;
  --black: #F7F3EE;
  --dark: #EFE9DF;
  --dark-2: #E6DDD0;
  --dark-3: #DAD0C0;
  --grey: #9A8A78;
  --light-grey: #6A5A48;
  --white: #1C1008;
  --off-white: #2E2010;
}

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

.serif { font-family: 'Cormorant Garamond', serif; }
.gold { color: var(--gold); }
.crimson { color: var(--crimson); }

/* ============ ORNAMENT ============ */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 60px;
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  transition: all 0.4s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(247,243,238,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(154,111,42,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--crimson);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 0.68rem !important;
  letter-spacing: 0.2em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--crimson-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,243,238,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mob-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--crimson);
  padding: 14px 36px;
  border-radius: 2px;
}
.mobile-close {
  position: absolute;
  top: 28px; right: 5%;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(184,16,42,0.05) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(247,243,238,0.55) 100%),
    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(154,111,42,0.06) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 5% 80px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(154,111,42,0.4);
  padding: 6px 18px;
  margin-bottom: 28px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 8px;
}
.hero h1 .line-gold { color: var(--gold); display: block; }
.hero h1 .line-red { color: var(--crimson); display: block; font-style: italic; font-size: 0.7em; }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--off-white);
  opacity: 0.8;
  margin: 20px 0 40px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
  transition: all 0.3s;
  border: 1px solid var(--crimson);
}
.btn-primary:hover { background: transparent; color: var(--crimson); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  padding: 16px 36px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid rgba(154,111,42,0.5);
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(154,111,42,0.1); border-color: var(--gold); }

.hero-stats {
  position: absolute;
  bottom: 40px; right: 5%;
  display: flex;
  gap: 40px;
  z-index: 2;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-top: 4px;
  display: block;
}

/* ============ SECTION COMMON ============ */
section { padding: 100px 5%; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--light-grey);
  max-width: 540px;
}

/* ============ DIVIDER ============ */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  margin: 0;
}

/* ============ SERVICES STRIP ============ */
.services-strip {
  background: var(--crimson);
  padding: 20px 5%;
  overflow: hidden;
  position: relative;
}
.strip-track {
  display: flex;
  gap: 60px;
  animation: stripScroll 20s linear infinite;
  white-space: nowrap;
}
.strip-item {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.strip-item::after {
  content: '◆';
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
}
@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}
.about-image-border {
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid rgba(154,111,42,0.3);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--crimson);
  padding: 24px;
  text-align: center;
}
.about-badge span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-badge span:last-child {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 36px; height: 36px;
  background: rgba(154,111,42,0.1);
  border: 1px solid rgba(154,111,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.feature-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 2px;
}
.feature-desc {
  font-size: 0.72rem;
  color: var(--light-grey);
}

/* ============ SERVICES PAGE ============ */
.services-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 5% 60px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, rgba(247,243,238,0.82) 100%),
    url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=1600&q=80') center/cover;
  position: relative;
}
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 5% 60px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(247,243,238,0.82) 100%),
    url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&q=80') center/cover;
  position: relative;
}
.page-hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(154,111,42,0.1);
  border: 1px solid rgba(154,111,42,0.15);
}
.price-card {
  background: var(--dark);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.price-card:hover { background: var(--dark-3); }
.price-card:hover::before { transform: scaleX(1); }
.price-service {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.price-desc {
  font-size: 0.75rem;
  color: var(--light-grey);
  margin-bottom: 20px;
  line-height: 1.6;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
}
.price-amount sup {
  font-size: 1rem;
  vertical-align: super;
  font-weight: 400;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(154,111,42,0.08);
  line-height: 1;
  pointer-events: none;
}
.testimonials-columns {
  display: flex;
  gap: 24px;
  justify-content: center;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  max-height: 680px;
  overflow: hidden;
  margin-top: 60px;
}
.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 360px;
}
.testimonials-col-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: colScroll 18s linear infinite;
}
.testimonials-col:nth-child(2) .testimonials-col-inner { animation-duration: 14s; }
.testimonials-col:nth-child(3) .testimonials-col-inner { animation-duration: 16s; }

@keyframes colScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(154,111,42,0.1);
  padding: 28px;
  border-radius: 2px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(154,111,42,0.5); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star { color: var(--gold); font-size: 0.8rem; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px; height: 38px;
  background: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}
.review-date {
  font-size: 0.68rem;
  color: var(--light-grey);
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 8px;
  margin-top: 50px;
}
.gallery-item {
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154,111,42,0.08);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
}
.gallery-placeholder {
  text-align: center;
  color: var(--grey);
}
.gallery-placeholder svg {
  width: 36px; height: 36px;
  margin-bottom: 12px;
  opacity: 0.4;
}
.gallery-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184,16,42,0.0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(184,16,42,0.75);
  color: var(--white);
}

/* ============ CONTACT/MAP ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(154,111,42,0.08);
  border: 1px solid rgba(154,111,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-value a:hover { color: var(--gold); }

.map-wrap {
  border: 1px solid rgba(154,111,42,0.15);
  overflow: hidden;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
  filter: grayscale(60%) contrast(1.1);
}
.map-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--crimson);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Social links */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.social-link {
  width: 44px; height: 44px;
  border: 1px solid rgba(154,111,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
}
.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============ HOURS BANNER ============ */
.hours-banner {
  background: var(--dark-2);
  border-top: 1px solid rgba(154,111,42,0.15);
  border-bottom: 1px solid rgba(154,111,42,0.15);
  padding: 50px 5%;
  text-align: center;
}
.hours-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.hours-item { text-align: center; }
.hours-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light-grey);
  margin-bottom: 6px;
}
.hours-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.hours-divider {
  width: 1px;
  height: 50px;
  background: rgba(154,111,42,0.2);
}

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(154,111,42,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--light-grey);
  line-height: 1.8;
  max-width: 280px;
}
.footer-heading {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--light-grey);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--grey);
}

/* ============ BOOK FORM ============ */
.book-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 5% 60px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(247,243,238,0.82) 100%),
    url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?w=1600&q=80') center/cover;
}
.book-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid rgba(154,111,42,0.15);
  padding: 56px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(154,111,42,0.3);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 2px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-select option { background: var(--dark-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.submit-btn {
  width: 100%;
  background: var(--crimson);
  color: var(--white);
  border: none;
  padding: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--crimson);
  border-radius: 2px;
}
.submit-btn:hover { background: transparent; color: var(--crimson); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success h3 {
  color: var(--gold);
  margin-bottom: 12px;
}
.form-success p { color: var(--light-grey); font-size: 0.85rem; }

/* ============ ACTIVE NAV ============ */
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SERVICES EXTRA GRID ============ */
.services-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.svc-tag {
  font-size: 0.72rem;
  padding: 6px 14px;
  background: rgba(154,111,42,0.07);
  border: 1px solid rgba(154,111,42,0.15);
  color: var(--off-white);
  border-radius: 2px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrap { max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  
  section { padding: 70px 5%; }
  
  .hero-stats { position: static; margin-top: 50px; justify-content: flex-start; }
  .hero-stats { gap: 24px; }
  
  .testimonials-col:nth-child(2),
  .testimonials-col:nth-child(3) { display: none; }
  .testimonials-columns { max-height: 500px; }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: span 1; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .hours-content { gap: 30px; }
  .hours-divider { display: none; }
  
  .book-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  
  .about-features { grid-template-columns: 1fr; }
  
  .services-extra-grid { grid-template-columns: 1fr; }
  .services-extra-grid > div:first-child { border-right: none; border-bottom: 1px solid rgba(154,111,42,0.1); }
  
  .price-grid { grid-template-columns: 1fr; }
  
  .hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .map-wrap iframe { height: 320px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}
