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

:root {
  --cream: #FAF7F2;
  --warm-white: #FDF9F4;
  --gold: #B8965A;
  --gold-light: #D4AE78;
  --gold-muted: #C8A96820;
  --charcoal: #1E1A18;
  --mid: #5C5047;
  --light: #9B8E83;
  --border: #E2D9CE;
  --section-gap: 20px;
}

html { scroll-behavior: smooth; }

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

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(184,150,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(184,150,90,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-cta {
  margin-top: 56px;
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: var(--gold);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-ornament {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: var(--gold-light);
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ─── PAGE HERO (non-home pages) ─── */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184,150,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

/* ─── SECTION WRAPPER ─── */
section {
  padding: var(--section-gap) 40px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin: 0;
}

/* ─── WHY US ─── */
.why-section {
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-body {
  font-size: 1.15rem;
  color: var(--mid);
  line-height: 1.9;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  min-width: 36px;
}

.feature-text h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 1.05rem;
  color: var(--light);
  line-height: 1.7;
}

/* ─── PLANS ─── */
.plans-section { background: var(--cream); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 0px;
  background: var(--border);
  border: 1px solid var(--border);
}

.plan-card {
  background: var(--warm-white);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.3s;
}

.plan-card:hover { background: var(--cream); }
.plan-card:hover::before { background: var(--gold); }

.plan-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.plan-desc {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.plan-earlybird {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(184,150,90,0.08);
  border: 1px solid rgba(184,150,90,0.25);
  margin-top: 4px;
}

.plan-earlybird-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.plan-earlybird-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.plan-earlybird-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.plan-earlybird-price span {
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.plan-original-price {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--light);
  text-decoration: line-through;
}

.plan-earlybird-expiry {
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.04em;
}

/* ─── HOW TO START ─── */
.how-section { background: var(--warm-white); }

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  min-width: 48px;
  transition: color 0.3s;
}

.step:hover .step-num { color: var(--gold-light); }

.step-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 1.05rem;
  color: var(--light);
}

/* ─── FORM ─── */
.form-section { background: var(--cream);}

.form-section .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  padding:110px 0px 20px;
}

.form-intro .section-title {
  margin-bottom: 20px;
}

.form-intro p {
  font-size: 1.1rem;
  color: var(--light);
  line-height: 1.8;
}

/* Custom form */
.sgdmim-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 48px 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-group label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B8E83' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-section-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.form-section-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
}

.radio-option input[type="radio"]:checked + label {
  border-color: var(--gold);
  background: var(--gold-muted);
  color: var(--charcoal);
}

.radio-option label:hover {
  border-color: var(--gold-light);
  color: var(--charcoal);
}

.form-submit-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.form-submit-btn {
  display: inline-block;
  padding: 18px 52px;
  background: var(--gold);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.form-submit-btn:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.9rem;
  color: var(--light);
  transition: opacity 0.3s;
}

.form-status.success { color: #5a8a6a; }
.form-status.error   { color: #b85a5a; }

.form-success-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success-state .success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.form-success-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.form-success-state p {
  font-size: 1rem;
  color: var(--light);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--cream);
  text-align: center;
  padding: 80px 40px;
}

.cta-section.bg-warm-white {
  background: var(--warm-white);
}

.cta-section .section-label {
  margin-bottom: 20px;
}

.cta-section .section-title {
  margin-bottom: 40px;
}

.cta-section .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  background: var(--gold);
  color: rgba(250,247,242,0.75);
  padding: 60px 60px 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250,247,242,0.25);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(250,247,242,0.6);
  margin-top: 6px;
  text-transform: uppercase;
}

.footer-company {
  text-align: right;
}

.footer-company-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.footer-company-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-company-details span {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.65);
  letter-spacing: 0.04em;
}

.footer-company-details a {
  font-size: 0.82rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-company-details a:hover {
  color: rgba(250,247,242,0.75);
}

.footer-bottom {
  padding-top: 24px;
  font-size: 0.72rem;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.08em;
}

.footer-policy-link {
  color: rgba(250,247,242,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(250,247,242,0.25);
  transition: color 0.2s, border-color 0.2s;
}

.footer-policy-link:hover {
  color: var(--cream);
  border-color: rgba(250,247,242,0.6);
}

/* ─── ARTICLE ─── */
article {
  max-width: 740px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}

article > h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

article > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-top: 64px;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

article > h2:first-of-type {
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
  margin-top: 32px;
}

article section {
  padding: 40px 0 0;
}

article section h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

article section p {
  font-size: 1.08rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

article section p:last-child {
  margin-bottom: 0;
}

article section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

article section ul li {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
}

article section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
}

article hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin: 40px 0 0;
}

@media (max-width: 900px) {
  article {
    padding: 120px 28px 80px;
  }
}

@media (max-width: 600px) {
  article {
    padding: 100px 20px 60px;
  }

  article > h2 {
    margin-top: 48px;
  }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HAMBURGER BUTTON ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.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); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0; right: 0;
    width: 260px;
    height: 100vh;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(16px);
    padding: 80px 28px 32px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
    border-left: 1px solid var(--border);
    z-index: 99;
    overflow-y: auto;
  }

  .nav-links.nav-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:first-child {
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1rem;
    letter-spacing: 0.2em;
  }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .plans-grid { grid-template-columns: 1fr 1fr; }

  .form-section .container { grid-template-columns: 1fr; gap: 40px; }

  footer { padding: 40px 28px 32px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-company { text-align: left; }
}

@media (max-width: 600px) {
  :root { --section-gap: 72px; }
  .plans-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}
