/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF6F0;
  --bg-warm: #F2EBD9;
  --fg: #1C1410;
  --fg-muted: #6B5E52;
  --accent: #C4622D;
  --accent-light: #E8876A;
  --sand: #D9C4A0;
  --sand-dark: #B89E78;
  --ink: #2D1F17;
  --white: #FDFAF5;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 196, 160, 0.3);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--ink); }

.nav__link--cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 5px;
  transition: background 0.2s;
}

.nav__link--cta:hover { background: var(--accent); }

.nav__logo { text-decoration: none; }

/* === RESPONSIVE === */
@media (max-width: 700px) {
  .nav__links { display: none; }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 40px 0;
  overflow: hidden;
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(196, 98, 45, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(184, 158, 120, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 40%, #F5EDE0 100%);
  z-index: 0;
}

.hero__bg-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(196, 98, 45, 0.06) 0%, transparent 35%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(217, 196, 160, 0.07) 80px,
      rgba(217, 196, 160, 0.07) 81px
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.hero__stat-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid rgba(184, 158, 120, 0.35);
  margin-top: auto;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.hero__stat-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.hero__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.hero__stat-div {
  width: 1px;
  height: 40px;
  background: var(--sand);
  margin: 0 40px;
}

/* === SERVICES === */
.services {
  padding: 120px 40px;
  background: var(--white);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}

.services__header {
  max-width: 600px;
  margin-bottom: 72px;
}

.services__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.services__desc {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.services__card {
  padding: 48px 40px;
  background: var(--bg);
  border: 1px solid var(--sand);
  transition: transform 0.2s ease;
}

.services__card:hover {
  transform: translateY(-2px);
}

.services__card-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.services__card-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.services__card-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === PROCESS === */
.process {
  padding: 100px 40px;
  background: var(--ink);
}

.process__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
}

.process__label-line {
  flex: 1;
  height: 1px;
  background: rgba(217, 196, 160, 0.2);
}

.process__label-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sand);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.process__step {
  padding: 0 60px 0 0;
  border-right: 1px solid rgba(217, 196, 160, 0.15);
}

.process__step:last-child {
  border-right: none;
  padding-right: 0;
}

.process__step-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(196, 98, 45, 0.4);
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.process__step-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.process__step-body {
  font-size: 14px;
  color: rgba(217, 196, 160, 0.7);
  line-height: 1.7;
}

/* === PRICING === */
.pricing {
  padding: 120px 40px;
  background: var(--bg-warm);
}

.pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.pricing__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.pricing__desc {
  font-size: 17px;
  color: var(--fg-muted);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing__tier {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 48px 40px;
  position: relative;
}

.pricing__tier--featured {
  background: var(--ink);
  border-color: var(--ink);
}

.pricing__tier--featured .pricing__tier-name,
.pricing__tier--featured .pricing__tier-amount {
  color: var(--white);
}

.pricing__tier--featured .pricing__tier-tag,
.pricing__tier--featured .pricing__tier-period,
.pricing__tier--featured .pricing__tier-features li {
  color: rgba(217, 196, 160, 0.7);
}

.pricing__tier-header {
  margin-bottom: 32px;
}

.pricing__tier-name {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--ink);
}

.pricing__tier-tag {
  font-size: 13px;
  color: var(--fg-muted);
}

.pricing__tier-price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing__tier-amount {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.pricing__tier-period {
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing__tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__tier-features li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.pricing__tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* === ABOUT === */
.about {
  padding: 120px 40px;
  background: var(--white);
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.about__portrait-block {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.about__portrait-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(196, 98, 45, 0.15) 0%, rgba(184, 158, 120, 0.1) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(184, 158, 120, 0.08) 40px,
      rgba(184, 158, 120, 0.08) 41px
    );
}

.about__portrait-label {
  position: relative;
  z-index: 1;
  padding: 32px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__portrait-label span {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.about__portrait-label span:last-child {
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.about__headline {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 28px;
  line-height: 1.1;
}

.about__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* === CLOSING === */
.closing {
  padding: 140px 40px;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: 'DESERT';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(184, 158, 120, 0.15);
  letter-spacing: 0.2em;
  white-space: nowrap;
  user-select: none;
}

.closing__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.closing__line {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  display: block;
  margin-bottom: 12px;
}

.closing__line--secondary {
  color: var(--fg-muted);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  margin-bottom: 48px;
}

.closing__headline {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.closing__body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.closing__divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.closing__locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.closing__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sand-dark);
}

/* === FOOTER === */
.footer {
  background: var(--ink);
  padding: 80px 40px 40px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(217, 196, 160, 0.1);
}

.footer__logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(217, 196, 160, 0.5);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sand);
  margin-bottom: 4px;
}

.footer__link {
  font-size: 14px;
  color: rgba(217, 196, 160, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__link--static {
  cursor: default;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 13px;
  color: rgba(217, 196, 160, 0.4);
}

.footer__built {
  font-size: 12px;
  font-style: italic;
  color: rgba(217, 196, 160, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services__grid,
  .process__steps,
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero__stat-row {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .hero__stat-div {
    display: none;
  }
  
  .process__step {
    border-right: none;
    border-bottom: 1px solid rgba(217, 196, 160, 0.15);
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  
  .process__step:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 0; }
  .services, .pricing, .about, .closing, .footer { padding: 80px 24px; }
  .process { padding: 80px 24px; }
  
  .footer__links {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
