/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --bg: #faf7f2;
  --bg-dark: #f0ebe0;
  --fg: #1a1714;
  --fg-muted: #6b6259;
  --fg-faint: #a09487;
  --accent: #c17f4a;
  --accent-dark: #9a6235;
  --accent-light: #e8c9a4;
  --border: #ddd6ca;
  --white: #ffffff;
  --plan-featured-bg: #1a1714;
  --plan-featured-fg: #faf7f2;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent-light);
  color: var(--fg);
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}

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

/* ===========================
   HERO
   =========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 60px 80px;
  min-height: 600px;
  align-items: center;
  overflow: hidden;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero__headline {
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 380px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--fg-muted);
}

/* Hero Visual - CSS-only illustration */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__visual {
  position: relative;
  width: 300px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero__shelf {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

.hero__bag {
  width: 80px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 23, 20, 0.12);
}

.hero__bag--1 {
  height: 120px;
  background: linear-gradient(160deg, #c17f4a 0%, #9a6235 100%);
}

.hero__bag--2 {
  height: 160px;
  background: linear-gradient(160deg, #e8c9a4 0%, #c17f4a 100%);
}

.hero__bag--3 {
  height: 100px;
  background: linear-gradient(160deg, #faf7f2 0%, #e8c9a4 100%);
  border: 1px solid var(--border);
}

.bag-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.08) 6px,
    rgba(255,255,255,0.08) 8px
  );
}

/* Time indicator */
.hero__time {
  position: absolute;
  top: 20px;
  right: 0;
  text-align: right;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.hero__time-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  display: block;
}

.hero__time-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  line-height: 1.4;
  margin-top: 4px;
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.features__header {
  margin-bottom: 56px;
}

.features__header h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.features__header p {
  color: var(--fg-muted);
  font-size: 16px;
}

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

.feature__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--fg);
}

.feature p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===========================
   PHILOSOPHY
   =========================== */
.philosophy {
  padding: 80px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.philosophy__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.philosophy__mark {
  flex-shrink: 0;
  width: 48px;
}

.philosophy__quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  line-height: 0.5;
  color: var(--accent-light);
  display: block;
}

.philosophy__text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 20px;
}

.philosophy__byline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.pricing__header {
  margin-bottom: 48px;
}

.pricing__header h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pricing__header p {
  color: var(--fg-muted);
  font-size: 16px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}

.plan--featured {
  background: var(--plan-featured-bg);
  color: var(--plan-featured-fg);
  border-color: var(--plan-featured-bg);
}

.plan--featured .plan__name,
.plan--featured .plan__price,
.plan--featured .plan__features li {
  color: var(--plan-featured-fg);
}

.plan--featured .plan__features li::before {
  border-color: rgba(250,247,242,0.4);
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

.plan__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.plan__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 28px;
}

.plan__price span {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  color: var(--fg-muted);
}

.plan--featured .plan__price span {
  color: rgba(250,247,242,0.6);
}

.plan__features {
  list-style: none;
}

.plan__features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.plan__features li:last-child {
  border-bottom: none;
}

.pricing__note {
  font-size: 13px;
  color: var(--fg-faint);
  text-align: center;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.testimonials__header {
  margin-bottom: 48px;
}

.testimonials__header h2 {
  font-size: 36px;
  font-weight: 400;
}

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

.review__stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 16px;
}

.review__author {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  padding: 100px 60px;
  text-align: center;
  background: var(--bg);
}

.closing__inner {
  max-width: 560px;
  margin: 0 auto;
}

.closing__rule {
  width: 1px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.closing__headline {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.05;
}

.closing__sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.closing__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.closing__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

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

.footer__meta {
  font-size: 12px;
  color: var(--fg-faint);
}

.footer__meta a {
  color: var(--fg-faint);
  text-decoration: none;
}

.footer__meta a:hover {
  color: var(--accent);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 28px;
    gap: 48px;
  }
  .hero__right { justify-content: flex-start; }
  .features { padding: 60px 28px; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .philosophy { padding: 60px 28px; }
  .pricing { padding: 60px 28px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .testimonials { padding: 60px 28px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 28px; }
  .closing__headline { font-size: 40px; }
  .footer { padding: 32px 28px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .features__grid { grid-template-columns: 1fr; }
}