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

:root {
  --ink: #0E0E0E;
  --cream: #F7F3EC;
  --gold: #B8933E;
  --gold-light: #D4AE6A;
  --slate: #2C3340;
  --muted: #6B6B6B;
  --border: rgba(184,147,62,0.25);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(247,243,236,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-toggle { display: none; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -5%; top: 10%; bottom: 10%;
  width: 55%;
  background: var(--slate);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.07;
}

.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: var(--gold);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: var(--gold); transform: translateY(-1px); }
.hero-cta .arrow { font-size: 1rem; }

.hero-card {
  position: relative; z-index: 1;
  background: var(--slate);
  color: var(--cream);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.hero-card-headline {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #fff;
}
.offer-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offer-item:last-of-type { border-bottom: none; }
.offer-icon {
  width: 36px; height: 36px;
  background: rgba(184,147,62,0.15);
  border: 1px solid rgba(184,147,62,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.offer-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}
.offer-desc {
  font-size: 0.8rem;
  color: rgba(247,243,236,0.55);
  line-height: 1.5;
}
.price-tag {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(184,147,62,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.spots-notice {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(184,147,62,0.1);
  border-left: 2px solid var(--gold);
  font-size: 0.8rem;
  color: var(--gold-light);
  line-height: 1.5;
}

/* ── SECTION BASE ── */
section { padding: 6rem 3rem; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block; width: 1.5rem; height: 1px;
  background: var(--gold);
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}
.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

/* ── SERVICES ── */
.services-bg {
  background: var(--slate);
  color: var(--cream);
}
.services-bg .section-intro { color: rgba(247,243,236,0.6); }
.services-bg h2 { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card {
  background: var(--slate);
  padding: 2.5rem;
  transition: background 0.2s;
}
.service-card:hover { background: #3a4352; }
.service-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: rgba(184,147,62,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 0.85rem;
  color: rgba(247,243,236,0.5);
  line-height: 1.7;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.portfolio-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.portfolio-thumb {
  width: 100%; height: 200px;
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.portfolio-thumb-1 { background: linear-gradient(135deg, #1a2332 0%, #2C3340 100%); }
.portfolio-thumb-2 { background: linear-gradient(135deg, #1f1a0f 0%, #3d2e0e 100%); }
.portfolio-thumb-3 { background: linear-gradient(135deg, #0d1f1a 0%, #0e3028 100%); }
.thumb-label {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--serif);
  font-size: 1.1rem;
  padding: 1rem;
  letter-spacing: 0.05em;
}
.thumb-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(184,147,62,0.15);
  border: 1px solid rgba(184,147,62,0.4);
  color: var(--gold-light);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.portfolio-body { padding: 1.75rem; }
.portfolio-type {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.portfolio-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.portfolio-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.portfolio-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
  transition: color 0.2s;
}
.portfolio-link:hover { color: var(--gold); }

/* ── PRICING ── */
.pricing-section { background: #FDFAF5; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}
.pricing-card.featured {
  background: var(--slate);
  color: var(--cream);
  border-color: var(--gold);
}
.pricing-badge {
  position: absolute; top: -0.75rem; left: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 0.25rem 0.8rem;
}
.pricing-name {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: inherit;
}
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.pricing-card.featured .pricing-period { color: rgba(247,243,236,0.5); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 0.75rem; align-items: flex-start;
  color: var(--muted);
  line-height: 1.5;
}
.pricing-card.featured .pricing-features li {
  color: rgba(247,243,236,0.65);
  border-color: rgba(255,255,255,0.08);
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pricing-btn {
  display: block; text-align: center;
  padding: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.pricing-btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.pricing-btn-outline:hover { background: var(--ink); color: var(--cream); }
.pricing-btn-filled {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.pricing-btn-filled:hover { background: var(--gold-light); }

/* ── FAQ ── */
.faq-grid { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.4;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* ── CONTACT ── */
.contact-section { background: var(--slate); color: var(--cream); }
.contact-section h2 { color: #fff; }
.contact-section .section-intro { color: rgba(247,243,236,0.55); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  border: 1px solid rgba(184,147,62,0.2);
  padding: 2rem;
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  display: block;
}
.contact-card:hover {
  border-color: var(--gold);
  background: rgba(184,147,62,0.05);
}
.contact-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}
.contact-method {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.contact-note {
  font-size: 0.78rem;
  color: rgba(247,243,236,0.4);
}
.availability {
  padding: 1.5rem 2rem;
  border: 1px solid rgba(184,147,62,0.2);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(247,243,236,0.6);
}
.avail-dot {
  width: 8px; height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(247,243,236,0.35);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem;
}
footer span { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DEMO MODAL ── */
.demo-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(14,14,14,0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.demo-modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.demo-modal {
  width: 90vw; max-width: 1000px;
  height: 85vh;
  background: var(--cream);
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  transform: translateY(20px);
  transition: transform 0.25s;
}
.demo-modal-overlay.active .demo-modal {
  transform: translateY(0);
}
.demo-modal-header {
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.demo-modal-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.demo-modal-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,147,62,0.1);
  border: 1px solid rgba(184,147,62,0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}
.demo-modal-body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.demo-loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  z-index: 1;
}
.demo-loading.hidden { display: none; }
.demo-spinner {
  width: 28px; height: 28px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.demo-modal-body iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.demo-modal-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 0.75rem;
  flex-shrink: 0;
}
.demo-btn {
  padding: 0.75rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.demo-btn-cancel {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
}
.demo-btn-cancel:hover { border-color: var(--ink); color: var(--ink); }
.demo-btn-open {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.demo-btn-open:hover { background: var(--gold); border-color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }

  /* Mobile nav toggle button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile nav drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: rgba(247,243,236,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    z-index: 99;
  }
  .nav-links.open {
    max-height: 400px;
    padding: 0.5rem 0 1rem;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    gap: 2.5rem;
  }
  section { padding: 4rem 1.5rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Modal mobile */
  .demo-modal {
    width: 100vw;
    height: 92vh;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    align-self: flex-end;
  }
  .demo-modal-overlay { align-items: flex-end; }
  .demo-modal-header { padding: 1rem 1.25rem; }
  .demo-modal-footer {
    padding: 0.85rem 1.25rem;
    gap: 0.5rem;
  }
  .demo-btn { flex: 1; text-align: center; padding: 0.85rem 1rem; }
}
