*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f0e8;
  --cream-dark: #e8e0d4;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --gold-pale: #f0dfa0;
  --charcoal: #1c1c1c;
  --charcoal-light: #2a2a2a;
  --text: #3a3a3a;
  --text-light: #7a7a7a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

em { font-style: italic; color: var(--gold); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

.label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s;
}

.navbar.scrolled {
  background: rgba(28,28,28,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.nav-logo em { color: var(--gold-light); }

.nav-menu { display: flex; gap: 36px; align-items: center; }

.nav-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-menu a:hover { color: var(--gold-light); }

.nav-book {
  border: 1px solid var(--gold) !important;
  padding: 10px 24px !important;
  color: var(--gold) !important;
  transition: all 0.3s !important;
}

.nav-book:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28,28,28,0.7) 0%, rgba(28,28,28,0.4) 50%, rgba(184,134,11,0.2) 100%),
    radial-gradient(ellipse at 30% 50%, #2a2520 0%, #1c1c1c 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 32px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 40px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,134,11,0.3);
}

.btn-gold.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 16px 40px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 32px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
}

.btn-outline:hover { background: var(--gold); color: var(--white); }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  margin: 12px auto 0;
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee */
.marquee {
  background: var(--charcoal);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,134,11,0.2);
  border-bottom: 1px solid rgba(184,134,11,0.2);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-track .dot { color: var(--gold); font-size: 0.6rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Experience */
.experience { padding: 120px 0; }

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.exp-text h2 { font-size: 3rem; margin-bottom: 24px; }
.exp-text p { color: var(--text-light); margin-bottom: 16px; }

.exp-numbers {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 600;
}

.num-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.image-frame {
  aspect-ratio: 4/5;
  border: 1px solid var(--gold);
  padding: 20px;
  position: relative;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 1px solid var(--gold-pale);
  z-index: -1;
}

.frame-inner {
  height: 100%;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.frame-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.frame-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

/* Services */
.services {
  padding: 120px 0;
  background: var(--white);
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 3rem; }

.services-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.service-item {
  padding: 40px;
  border: 1px solid var(--cream-dark);
  transition: all 0.4s;
  position: relative;
}

.service-item:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(184,134,11,0.08);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-pale);
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-item > p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-item ul { list-style: none; }

.service-item li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
}

.service-item li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Philosophy */
.philosophy {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--cream);
}

.philosophy blockquote {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.philosophy blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.pillar h4 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.pillar p { font-size: 0.9rem; color: rgba(245,240,232,0.6); }

/* Testimonials */
.testimonial-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

.testimonial-slider { text-align: center; max-width: 700px; margin: 0 auto; }

.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeUp 0.6s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.testimonial-slide cite {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: normal;
  letter-spacing: 0.05em;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.t-prev, .t-next {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.t-prev:hover, .t-next:hover {
  background: var(--gold);
  color: var(--white);
}

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.t-dot.active { background: var(--gold); }

/* Membership */
.membership { padding: 120px 0; }

.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.member-card {
  padding: 48px 36px;
  border: 1px solid var(--cream-dark);
  text-align: center;
  background: var(--white);
  position: relative;
  transition: all 0.4s;
}

.member-card:hover { transform: translateY(-4px); }

.member-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(184,134,11,0.12);
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 4px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-card h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.member-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.member-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  padding: 8px 20px;
  margin-bottom: 32px;
}

.member-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.member-card li {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--cream);
}

.member-card li::before { content: '✓ '; color: var(--gold); }

/* Contact */
.contact { padding: 120px 0; background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-text h2 { font-size: 3rem; margin-bottom: 16px; }
.contact-text > p { color: var(--text-light); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 28px; }

.detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.detail p { color: var(--text-light); font-size: 0.95rem; }
.detail a { color: var(--gold); text-decoration: none; }
.detail a:hover { text-decoration: underline; }

.enquiry-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; }

.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: rgba(245,240,232,0.6);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p { font-size: 0.9rem; margin-bottom: 4px; }
.footer-contact a { color: var(--gold-light); text-decoration: none; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .exp-grid, .services-showcase, .contact-layout, .membership-cards, .philosophy-pillars, .footer-top { grid-template-columns: 1fr; }
  .member-card.featured { transform: none; }
  .nav-menu { display: none; }
}

@media (max-width: 768px) {
  .exp-numbers { flex-direction: column; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
}
