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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F5EDE6;
  margin-bottom: 24px;
}
.section-title--center { text-align: center; }
.section-subtitle {
  font-size: 1.05rem;
  color: #B8A498;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, #C9A96E 0%, #A8884E 100%);
  color: #0E0A0B;
}
.btn-gold:hover { background: linear-gradient(135deg, #D4B87A 0%, #B8985A 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.3); }
.btn-outline-light {
  background: transparent;
  color: #F5EDE6;
  border: 1.5px solid rgba(245,237,230,0.4);
}
.btn-outline-light:hover { border-color: #C9A96E; color: #C9A96E; transform: translateY(-2px); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(14,10,11,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid #C9A96E;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #C9A96E;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F5EDE6;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B8A498;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: #C9A96E; }
.nav-cta {
  padding: 10px 24px !important;
  border: 1.5px solid #C9A96E !important;
  border-radius: 4px;
  color: #C9A96E !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover { background: #C9A96E; color: #0E0A0B !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #F5EDE6;
  transition: all 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.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); }

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(14,10,11,0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.nav-overlay.active { opacity: 1; visibility: visible; }
.nav-overlay-list { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.nav-overlay-list a {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #B8A498;
  transition: color 0.3s ease;
}
.nav-overlay-list a:hover { color: #C9A96E; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,10,11,0.55) 0%,
    rgba(14,10,11,0.45) 40%,
    rgba(14,10,11,0.70) 80%,
    rgba(14,10,11,0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #F5EDE6;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: #C9A96E;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #D4C4B8;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.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;
  color: #C9A96E;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1.5px solid #C9A96E;
  border-radius: 6px;
  z-index: -1;
  opacity: 0.4;
}
.about-text p {
  color: #B8A498;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C9A96E;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8125rem;
  color: #B8A498;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== OFFERINGS ===== */
.offerings {
  padding: 120px 0;
  background: linear-gradient(180deg, #0E0A0B 0%, #150E10 50%, #0E0A0B 100%);
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.offering-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
}
.offering-card:hover {
  border-color: rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.05);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.offering-icon { margin-bottom: 20px; }
.offering-card h3 {
  font-size: 1.25rem;
  color: #F5EDE6;
  margin-bottom: 12px;
}
.offering-card p {
  font-size: 0.9rem;
  color: #B8A498;
  line-height: 1.7;
}

/* ===== CRAFT ===== */
.craft { padding: 120px 0; }
.craft-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.craft-text p {
  color: #B8A498;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.craft-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.craft-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #D4C4B8;
  font-size: 0.95rem;
}
.craft-list-icon { flex-shrink: 0; margin-top: 3px; }
.craft-images { display: grid; gap: 16px; }
.craft-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}
.craft-images img:first-child { height: 420px; }

/* ===== GALLERY ===== */
.gallery {
  padding: 0 0 120px;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  animation: galleryScroll 30s linear infinite;
}
.gallery-track img {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-416px * 5)); }
}

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: linear-gradient(180deg, #0E0A0B 0%, #150E10 100%);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.visit-address {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #D4C4B8;
  font-size: 1rem;
  margin: 24px 0;
  line-height: 1.6;
}
.visit-icon { flex-shrink: 0; }
.visit-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.visit-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #D4C4B8;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.visit-contact-item:hover { color: #C9A96E; }
.visit-hours { margin-bottom: 32px; }
.visit-hours h3 {
  font-size: 1.1rem;
  color: #F5EDE6;
  margin-bottom: 12px;
}
.visit-hours p {
  color: #B8A498;
  font-size: 0.95rem;
  line-height: 1.8;
}
.visit-map {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.15);
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-form { margin-top: 40px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 4px;
  color: #F5EDE6;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #6B5B52; }
.form-group input:focus,
.form-group textarea:focus { border-color: #C9A96E; }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px;
  color: #C9A96E;
  font-size: 0.95rem;
  text-align: center;
}
.form-success.visible { display: block; }

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 0;
  background: #080607;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-mark {
  width: 48px;
  height: 48px;
  border: 1.5px solid #C9A96E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #C9A96E;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F5EDE6;
}
.footer-brand p { color: #6B5B52; font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-nav h4,
.footer-contact h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  color: #6B5B52;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: #C9A96E; }
.footer-contact p { color: #6B5B52; font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: #6B5B52; transition: color 0.3s ease; }
.footer-contact a:hover { color: #C9A96E; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(201,169,110,0.08);
  text-align: center;
}
.footer-bottom p { color: #4A3F38; font-size: 0.8125rem; }

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.75rem); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 360px; }
  .about-image-accent { display: none; }
  .offerings-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .craft-split { grid-template-columns: 1fr; }
  .craft-images img:first-child { height: 280px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-track img { width: 280px; height: 210px; }
  @keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-296px * 5)); }
  }
}

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