@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --ink:        #0F0F0F;
  --ink-soft:   #1C1C1C;
  --mid:        #3A3A3A;
  --muted:      #6B6B6B;
  --rule:       #2A2A2A;
  --surface:    #141414;
  --surface-2:  #1A1A1A;
  --surface-3:  #222222;
  --accent:     #C8973A;
  --accent-dim: #8A6520;
  --light:      #F5F2EE;
  --light-2:    #EDE9E3;
  --white:      #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Barlow', sans-serif;
  --ff-label:   'Barlow Condensed', sans-serif;

  --max-w: 1160px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--light);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.label {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.label--muted {
  color: var(--muted);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(12px);
  border-color: var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--light);
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__links a {
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--light); }
.nav__cta {
  font-family: var(--ff-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--accent);
  padding: 10px 22px;
  border: 1px solid var(--accent);
  transition: background 0.2s, color 0.2s !important;
}
.nav__cta:hover {
  background: transparent !important;
  color: var(--accent) !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--light);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(15,15,15,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  padding: 32px 48px 40px;
  z-index: 99;
  flex-direction: column;
  gap: 24px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-label);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.nav__mobile a:hover { color: var(--light); }
.nav__mobile .nav__cta {
  margin-top: 8px;
  text-align: center;
  padding: 14px;
  color: var(--ink) !important;
}

/* ── LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }
.section--dark { background: var(--ink); }
.section--mid { background: var(--surface); }
.section--light {
  background: var(--light);
  color: var(--ink);
}
.rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}
.rule--center { margin: 0 auto 32px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.5) 100%),
    url('../img-hero.jpg') center center / cover no-repeat;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 60px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero__title {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--light);
  max-width: 820px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}
.hero__stat-row {
  display: flex;
  gap: 64px;
  margin-top: 100px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.hero__stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn--ghost {
  background: transparent;
  color: var(--light);
  border-color: var(--rule);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--light);
}
.btn--lg { padding: 18px 44px; font-size: 0.82rem; }

/* ── INTRO STATEMENT ─────────────────────────────────────── */
.intro {
  background: var(--surface);
  padding: 100px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.intro__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--light);
  max-width: 820px;
  line-height: 1.5;
}
.intro__quote strong {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.intro__attribution {
  margin-top: 32px;
  font-family: var(--ff-label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SERVICES GRID ───────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s var(--ease);
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.service-card:hover { background: var(--surface-3); }
.service-card:hover::after { width: 100%; }
.service-card__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-card:hover .service-card__num { color: var(--accent-dim); }
.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-card__price {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
}
.service-card__price span {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 4px;
}
.service-card__arrow {
  position: absolute;
  top: 48px; right: 40px;
  font-size: 1.2rem;
  color: var(--rule);
  transition: color 0.3s, transform 0.3s;
}
.service-card:hover .service-card__arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.process__steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.process__step:first-child { border-top: 1px solid var(--rule); }
.process__step-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  padding-top: 4px;
}
.process__step-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 12px;
}
.process__step-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── PRICING TABLE ───────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pricing-card {
  background: var(--surface);
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: var(--surface-3);
}
.pricing-card--featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -1px; right: 28px;
  font-family: var(--ff-label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 12px;
}
.pricing-card__type {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-card__price {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-card__price-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.pricing-card__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--light);
  margin-bottom: 16px;
}
.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-card__includes {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-bottom: 32px;
}
.pricing-card__includes li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card__includes li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TESTIMONIAL / STATEMENT ─────────────────────────────── */
.statement {
  background: var(--accent);
  padding: 80px 0;
}
.statement__text {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  max-width: 900px;
  line-height: 1.4;
}
.statement__text strong { font-weight: 600; }

/* ── FAQ / ACCORDION ─────────────────────────────────────── */
.faq__item {
  border-bottom: 1px solid var(--rule);
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--light);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq__icon::before { width: 1px; height: 100%; left: 50%; top: 0; }
.faq__icon::after  { width: 100%; height: 1px; top: 50%; left: 0; }
.faq__item.open .faq__icon::before { transform: rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__a-inner {
  padding-bottom: 28px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 720px;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-wrap {
  max-width: 680px;
}
.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  color: var(--light);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--accent);
}
.form-check label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--ff-body);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.page-hero__label { margin-bottom: 20px; }
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--light);
  max-width: 720px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.page-hero__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
}

/* ── INCLUDES LIST ───────────────────────────────────────── */
.includes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.includes-item {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--accent);
}
.includes-item__num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
}
.includes-item__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 12px;
}
.includes-item__body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  padding: 64px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 16px;
}
.footer__brand span { color: var(--accent); }
.footer__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--light); }
.footer__bottom {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--ff-label);
  letter-spacing: 0.08em;
}

/* ── UTILITIES ───────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted); }
.text-light  { color: var(--light); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.flex   { display: flex; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.items-center { align-items: center; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { padding: 24px; }
  .container { padding: 0 24px; }
  .hero__content { padding: 0 24px; padding-top: 40px; }
  .hero__stat-row { gap: 32px; flex-wrap: wrap; }
  .services__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .process__step { grid-template-columns: 48px 1fr; gap: 24px; }
  .includes-list { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2.6rem; }
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; text-align: center; }
}
