/* =============================================
   Retold Resale — Elevated Marketing Site
   ============================================= */

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

:root {
  --berry:   #8E0648;
  --sage:    #CCDD92;
  --forest:  #053536;
  --coral:   #E66F4F;
  --blush:   #FFE8EA;
  --cream:   #FBF8F3;
  --white:   #FFFFFF;
  --black:   #1A1A1A;
  --gray:    #6B7280;
  --border:  rgba(26,26,26,0.1);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.1; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem);
  transition: background 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(251,248,243,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem clamp(1.5rem, 5vw, 3rem);
  box-shadow: 0 1px 0 var(--border);
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
}
.nav__brand b { display: block; font-weight: 500; }
.nav__brand span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--berry);
}
.nav__links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--black); }
.nav__cta {
  background: var(--berry) !important;
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px !important;
  letter-spacing: 0.08em;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
  text-transform: uppercase !important;
}
.nav__cta:hover { background: var(--forest) !important; transform: translateY(-1px); }

.logo-mobile { display: none; }

/* Hero on dark (forest) background */
.hero.section--forest { background: var(--forest); }
.hero.section--forest .hero__text h1 { color: var(--white); }
.hero.section--forest .hero__text h1 em { color: var(--sage); }
.hero.section--forest .hero__text p { color: var(--white); }
.hero.section--forest .btn--black { background: var(--berry); color: var(--white); }
.hero.section--forest .btn--black:hover { background: var(--white); color: var(--berry); transform: translateY(-2px); }
.hero.section--forest .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.hero.section--forest .btn--outline:hover { background: var(--white); color: var(--forest); border-color: var(--white); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: none; cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--black { background: var(--forest); color: white; }
.btn--berry { background: var(--berry); color: white; }
.btn--berry:hover { background: var(--white); color: var(--berry); }
.btn--black:hover { background: var(--black); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--black); border: 1px solid rgba(26,26,26,0.3); }
.btn--outline:hover { background: var(--black); color: white; border-color: var(--black); }

/* Nav over dark hero */
.nav--light:not(.scrolled) .nav__brand { color: var(--white); }
.nav--light:not(.scrolled) .nav__brand span { color: var(--sage); }
.nav--light:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.65); }
.nav--light:not(.scrolled) .nav__links a:hover,
.nav--light:not(.scrolled) .nav__links a.active { color: var(--white); }
.nav--light:not(.scrolled) .nav__cta { background: var(--berry) !important; color: var(--white) !important; }
.nav--light:not(.scrolled) .nav__cta:hover { background: var(--white) !important; color: var(--berry) !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 8rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.hero__text h1 {
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  color: var(--black);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.05;
}
.hero__text h1 em { color: var(--berry); font-style: italic; }
.hero__text p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 44ch;
  line-height: 1.85;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
}

/* =============================================
   SECTION COLOR BLOCKS
   ============================================= */
.section--cream   { background: var(--white); }
.section--blush   { background: var(--blush); }
.section--forest  { background: var(--forest); color: var(--white); }
.section--berry   { background: var(--berry);  color: var(--white); }

/* =============================================
   EYEBROW
   ============================================= */
.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--berry); font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: var(--berry); flex-shrink: 0;
}
.section--forest .eyebrow,
.testimonials .eyebrow { color: var(--sage); }
.section--forest .eyebrow::before,
.testimonials .eyebrow::before { background: var(--sage); }
.section--berry .eyebrow { color: rgba(255,255,255,0.55); }
.section--berry .eyebrow::before { background: rgba(255,255,255,0.35); }

/* =============================================
   SECTION HEAD
   ============================================= */
.section-head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--black);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.1;
}
.section-head h2 em { color: var(--berry); font-style: italic; }
.section-head p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 55ch;
  font-weight: 300;
  line-height: 1.85;
}
.section--forest .section-head h2 { color: var(--white); }
.section--forest .section-head h2 em { color: var(--sage); }
.section--forest .section-head p { color: rgba(255,255,255,0.55); }
.testimonials .section-head h2 { color: var(--white); }
.testimonials .section-head p { color: rgba(255,255,255,0.55); }

/* =============================================
   CARDS
   ============================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(26,26,26,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.card__img { aspect-ratio: 3/4; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 2rem; }
.card h3 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.card p { color: var(--gray); font-size: 0.9rem; font-weight: 300; line-height: 1.85; }

/* =============================================
   STEPS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
}
.section--forest .steps { border-color: rgba(255,255,255,0.1); }
.section--cream .steps { border-color: var(--border); }

.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.section--forest .step { border-right-color: rgba(255,255,255,0.1); }
.step:last-child { border-right: none; }

.step__num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(142,6,72,0.1);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.section--forest .step__num { color: rgba(204,221,146,0.22); }
.step h3 {
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.section--forest .step h3 { color: var(--white); }
.step p {
  font-size: 0.85rem;
  line-height: 1.85;
  font-weight: 300;
  color: var(--gray);
}
.section--forest .step p { color: rgba(255,255,255,0.52); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--forest);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
}
.quote { padding: 2.5rem; }
.quote + .quote { border-left: 1px solid rgba(255,255,255,0.1); }
.quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
}
.quote__author { font-size: 0.78rem; color: rgba(255,255,255,0.38); letter-spacing: 0.05em; }
.quote__author b { display: block; color: var(--white); font-weight: 500; margin-bottom: 0.2rem; }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

/* Service list for alterations */
.service-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--berry);
  font-size: 0.7rem;
  top: 0.2em;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.price-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.09); transform: translateY(-3px); }
.price-card--featured {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.price-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.price-card--featured .price-card__label { color: var(--sage); }
.price-card h3 { font-size: 2rem; font-weight: 400; letter-spacing: -0.01em; }
.price-card__amount {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin: 1.25rem 0 0.25rem;
}
.price-card--featured .price-card__amount { color: var(--sage); }
.price-card__period {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.price-card--featured .price-card__period { color: rgba(255,255,255,0.42); }
.price-card ul {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex: 1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.price-card--featured ul { border-top-color: rgba(255,255,255,0.12); }
.price-card li {
  font-size: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.5;
}
.price-card--featured li { color: rgba(255,255,255,0.62); }
.price-card li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--berry);
  font-size: 0.7rem;
  top: 0.2em;
}
.price-card--featured li::before { color: var(--sage); }
.price-card .btn { width: 100%; justify-content: center; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
  background: var(--berry);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
}
.cta h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: 400;
}
.cta h2 em { font-style: italic; color: rgba(255,255,255,0.72); }
.cta p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  max-width: 44ch;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.85;
}
.cta .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta .btn--outline:hover { background: var(--white); color: var(--berry); border-color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--forest);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.footer__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.footer__tag {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  margin-top: 1rem;
  max-width: 30ch;
  line-height: 1.85;
  font-weight: 300;
}
.footer__h {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
  font-weight: 300;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.22); letter-spacing: 0.06em; }

/* =============================================
   SPLIT (two-column with image)
   ============================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.split__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-size: 1rem; font-weight: 500;
  font-family: var(--sans);
  color: var(--black);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  user-select: none;
}
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--berry);
  font-weight: 300; transition: transform 0.3s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding-top: 1rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.85;
  font-size: 0.95rem;
}

/* =============================================
   STATS
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--berry);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__text { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__text p { margin-left: auto; margin-right: auto; }
  .logo-mobile { display: block; }
  .logo-desktop { display: none; }
  .hero__text h1 { font-size: clamp(3rem, 8vw, 5rem); }
  .card-grid,
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step { border-bottom: 1px solid var(--border); }
  .section--forest .step { border-bottom-color: rgba(255,255,255,0.1); }
  .step:nth-child(2n) { border-right: none; }
  .step:last-child { border-bottom: none; }
  .quote-grid { grid-template-columns: 1fr; border: none; }
  .quote + .quote { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split--rev { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  .hero { padding-top: 7rem; }
  .card-grid,
  .card-grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; }
  .step:nth-child(2n) { border-right: none; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
