/* ============================================================
   WHITE KEY — Global Styles
   ============================================================ */

/* Launch bar */
.launch-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 200;
}
.launch-bar a { color: var(--gold); text-decoration: underline; }
.launch-bar button {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0 4px;
  line-height: 1;
  position: absolute;
  right: 20px;
}
.launch-bar button:hover { color: var(--white); }

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

:root {
  --black:      #0C0C0C;
  --white:      #FFFFFF;
  --off-white:  #F8F7F5;
  --gold:       #B8975A;
  --gold-light: #D4B483;
  --gray-100:   #F2F1EF;
  --gray-200:   #E5E3DF;
  --gray-400:   #9C9890;
  --gray-600:   #5C5A56;
  --gray-800:   #2C2B28;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1120px;
  --section-py: 96px;
  --nav-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); font-size: 16px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--gray-600); line-height: 1.75; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-py) 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--dark p { color: var(--gray-400); }
.section--off  { background: var(--off-white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--black); color: var(--white);
}
.btn-primary:hover { background: var(--gray-800); }

.btn-outline {
  border: 1.5px solid var(--black); color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.5); color: var(--white);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-gold {
  background: var(--gold); color: var(--white);
}
.btn-gold:hover { background: #a3864d; }

/* ---- Label / overline ---- */
.label {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 12px;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--gray-200); }
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img { height: 40px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-600);
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--black); }
.nav__cta { margin-left: 24px; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 1.5px; background: var(--black);
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--white); padding: 40px 24px;
  flex-direction: column; gap: 8px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.5rem; font-family: var(--font-serif); font-weight: 400;
  padding: 12px 0; border-bottom: 1px solid var(--gray-200); color: var(--black);
}
.nav__mobile .btn { margin-top: 24px; width: fit-content; }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  padding-top: var(--nav-h); background: var(--off-white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1080px, 90vw);
  aspect-ratio: 750 / 208;
  background: url('../images/logo-symbol.png') center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  flex: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 80px 24px 0; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}
.hero__content {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 820px; margin-bottom: 56px;
}
.hero__wordmark { height: 140px; width: auto; margin-bottom: 36px; }
.hero__content h1 { margin-bottom: 24px; }
.hero__content h1 em { font-style: italic; color: var(--gold); }
.hero__content p { font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__trust {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--gray-200); justify-content: center;
}
.hero__trust-item strong {
  display: block; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400;
  color: var(--black);
}
.hero__trust-item span { font-size: 0.8rem; color: var(--gray-400); letter-spacing: 0.04em; }
.hero__side {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  margin-top: auto;
}
.hero__tile {
  background: var(--white); padding: 28px 24px; min-height: 210px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__tile--dark  { background: var(--black);      color: var(--white); }
.hero__tile--off   {
  background: var(--off-white);  color: var(--black);
  box-shadow: inset 0 0 0 1.5px var(--gold);
}
.hero__tile--warm  {
  background: linear-gradient(150deg, #D9D9D9 0%, #C3C3C3 55%, #CECECE 100%);
  color: var(--black);
}
.hero__tile--gold  { background: var(--gold);       color: var(--white); }
.hero__tile__label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
  color: var(--gray-400);
}
.hero__tile--dark  .hero__tile__label { color: rgba(255,255,255,0.4); }
.hero__tile--off   .hero__tile__label { color: var(--gold); }
.hero__tile--gold  .hero__tile__label { color: rgba(255,255,255,0.7); }
.hero__tile__value {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 400; line-height: 1.1;
  color: var(--black);
}
.hero__tile--dark .hero__tile__value { color: var(--white); }
.hero__tile--gold .hero__tile__value { color: var(--white); }
.hero__tile p {
  font-size: 0.8rem; margin-top: 8px; color: var(--gray-600);
}
.hero__tile--dark p { color: rgba(255,255,255,0.55); }
.hero__tile--gold p { color: rgba(255,255,255,0.85); }
.hero__tile__arrow {
  margin-top: auto; padding-top: 16px;
  font-size: 1rem; opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
a.hero__tile { text-decoration: none; cursor: pointer; transition: filter 0.2s, transform 0.2s; }
a.hero__tile:hover { filter: brightness(0.93); transform: translateY(-2px); }
a.hero__tile:hover .hero__tile__arrow { opacity: 1; transform: translateX(4px); }

/* ============================
   VALUE PROPS
   ============================ */
.values { }
.values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 56px;
}
.value-card { }
.value-card__icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.value-card__icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.value-card h4 { margin-bottom: 10px; font-weight: 500; }
.value-card p { font-size: 0.9rem; }

/* ============================
   HOW IT WORKS
   ============================ */
.how { }
.how__header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.how__header p { margin-top: 16px; }
.how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative;
}
.how__steps::before {
  content: ''; position: absolute; top: 28px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 1px; background: var(--gray-200); z-index: 0;
}
.step { position: relative; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.step h4 { margin-bottom: 10px; font-size: 1.1rem; font-weight: 500; }
.step p { font-size: 0.9rem; }

/* ============================
   SERVICES
   ============================ */
.services { }
.services__intro { max-width: 560px; margin-bottom: 56px; }
.services__intro p { margin-top: 16px; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--gray-200);
}
.service-item {
  background: var(--white); padding: 36px 32px;
  transition: background 0.2s;
}
.service-item:hover { background: var(--off-white); }
.service-item__icon {
  font-size: 1.5rem; margin-bottom: 16px;
}
.service-item h4 { font-size: 1rem; font-weight: 500; margin-bottom: 8px; }
.service-item p { font-size: 0.875rem; }

/* ============================
   PRICING
   ============================ */
.pricing { }
.pricing__header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.pricing__header p { margin-top: 16px; }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.price-card {
  border: 1px solid var(--gray-200); padding: 40px 36px;
  position: relative; transition: box-shadow 0.25s, transform 0.25s;
}
.price-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-4px); }
.price-card--featured {
  border-color: var(--black); background: var(--black); color: var(--white);
}
.price-card--featured p { color: var(--gray-400); }
.price-card--featured .price-card__tag { background: var(--gold); color: var(--white); }

.price-card__tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; background: var(--off-white); color: var(--gray-600);
  margin-bottom: 24px;
}
.price-card__duration {
  font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; color: var(--gray-400);
}
.price-card--featured .price-card__duration { color: var(--gray-400); }
.price-card__price {
  font-family: var(--font-serif); font-size: 3.2rem; font-weight: 300;
  line-height: 1; margin-bottom: 4px;
}
.price-card__per {
  font-size: 0.8rem; color: var(--gray-400); margin-bottom: 32px;
}
.price-card__divider {
  height: 1px; background: var(--gray-200); margin-bottom: 28px;
}
.price-card--featured .price-card__divider { background: rgba(255,255,255,0.12); }
.price-card__features { margin-bottom: 36px; }
.price-card__features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.875rem; color: var(--gray-600); padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.price-card--featured .price-card__features li { color: var(--gray-400); border-color: rgba(255,255,255,0.08); }
.price-card__features li::before {
  content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; margin-top: 1px;
}
.price-card .btn { width: 100%; justify-content: center; }

.pricing__note {
  text-align: center; margin-top: 32px;
  font-size: 0.85rem; color: var(--gray-400);
}
.pricing__note a { color: var(--gold); border-bottom: 1px solid transparent; }
.pricing__note a:hover { border-bottom-color: var(--gold); }

/* ============================
   TRUST SECTION
   ============================ */
.trust { }
.trust__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: rgba(255,255,255,0.08); margin-top: 56px;
}
.trust-item {
  padding: 48px 40px; background: var(--black);
}
.trust-item__num {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 12px;
}
.trust-item h4 { color: var(--white); margin-bottom: 10px; font-weight: 400; }
.trust-item p { font-size: 0.875rem; }

/* ============================
   CTA STRIP
   ============================ */
.cta-strip {
  background: var(--gold); padding: 72px 0; text-align: center;
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }
.cta-strip .btn-outline-white { border-color: rgba(255,255,255,0.6); }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--black); color: var(--white);
  padding: 72px 0 40px;
}
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { height: 52px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 0.875rem; color: var(--gray-400); max-width: 240px; }
.footer__col h5 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; gap: 16px; flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: var(--gray-600); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.8rem; color: var(--gray-600); }
.footer__legal a:hover { color: var(--gray-400); }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--off-white); border-bottom: 1px solid var(--gray-200);
}
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 20px; }
.page-hero p { max-width: 520px; font-size: 1.1rem; }

/* ============================
   PRICING PAGE
   ============================ */
.pricing-page__activities { margin-top: 80px; }
.activities-intro { max-width: 560px; margin-bottom: 40px; }
.activities-intro p { margin-top: 12px; }
.activities-table {
  width: 100%; border-collapse: collapse;
}
.activities-table thead tr {
  background: var(--black); color: var(--white);
}
.activities-table thead th {
  padding: 14px 20px; text-align: left;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.activities-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.activities-table tbody tr:hover { background: var(--off-white); }
.activities-table tbody td {
  padding: 14px 20px; font-size: 0.9rem; color: var(--gray-600);
}
.activities-table tbody td:first-child { color: var(--black); font-weight: 500; }
.activities-table .section-row td {
  padding: 20px 20px 8px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  border-bottom: none; background: transparent;
}

.addons { margin-top: 56px; }
.addons__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--gray-200); margin-top: 28px;
}
.addon-item {
  background: var(--white); padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.addon-item__info h4 { font-size: 1rem; font-weight: 500; margin-bottom: 4px; }
.addon-item__info p { font-size: 0.85rem; }
.addon-item__price {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300;
  color: var(--gold); white-space: nowrap;
}

/* ============================
   HOW IT WORKS PAGE
   ============================ */
.steps-full { }
.steps-full__list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 56px;
}
.step-full {
  display: grid; grid-template-columns: 80px 1fr; gap: 40px;
  padding: 48px 0; border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.step-full__num {
  font-family: var(--font-serif); font-size: 4rem; font-weight: 300;
  color: var(--gray-200); line-height: 1; padding-top: 4px;
}
.step-full__content h3 { margin-bottom: 16px; }
.step-full__content p { max-width: 560px; }
.step-full__content ul {
  margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.step-full__content ul li {
  font-size: 0.9rem; color: var(--gray-600);
  padding-left: 20px; position: relative;
}
.step-full__content ul li::before {
  content: '–'; position: absolute; left: 0; color: var(--gold);
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-story { }
.about-story__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-story__content p { margin-bottom: 20px; }
.about-story__aside {
  background: var(--off-white); padding: 40px;
}
.about-story__aside h4 { margin-bottom: 20px; font-weight: 500; }
.about-story__aside ul { display: flex; flex-direction: column; gap: 12px; }
.about-story__aside ul li {
  font-size: 0.9rem; color: var(--gray-600); padding-left: 20px; position: relative;
}
.about-story__aside ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-section { }
.contact-section__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info { }
.contact-info__item {
  margin-bottom: 36px;
}
.contact-info__item h4 { font-weight: 500; margin-bottom: 6px; font-size: 1rem; }
.contact-info__item p, .contact-info__item a {
  font-size: 1rem; color: var(--gray-600);
}
.contact-info__item a:hover { color: var(--gold); }

.contact-form { }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-600); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--gray-200); background: var(--white);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--black);
  outline: none; transition: border-color 0.2s;
  appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239C9890' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-submit .btn { width: 100%; justify-content: center; padding: 16px; }
.form-success {
  display: none; background: var(--off-white); border: 1px solid var(--gray-200);
  padding: 24px; text-align: center;
}
.form-success p { color: var(--black); }

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

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { padding: 48px 24px 0; }
  .hero__content { margin-bottom: 48px; }
  .hero__side { grid-template-columns: 1fr 1fr; }
  .hero__tile { min-height: 180px; }
  .hero__trust { gap: 24px; }

  .how__steps { grid-template-columns: 1fr; }
  .how__steps::before { display: none; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }

  .page-hero { padding-top: calc(var(--nav-h) + 40px); }
  .about-story__inner { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .addons__grid { grid-template-columns: 1fr; }

  .step-full { grid-template-columns: 48px 1fr; gap: 24px; }
  .step-full__num { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; gap: 16px; }
}
