/* ============================================
   AFTER HEELS LONDON — Stylesheet
   Palette: Ivory / Deep Burgundy / Champagne Gold / Action Red
   ============================================ */

:root {
  --ivory:         #FFFFFF;
  --ivory-tint:    #F8F6F3;
  --burgundy:      #6B1A2A;
  --burgundy-deep: #4A0F1C;
  --red-action:    #E10600;
  --red-hover:     #C8102E;
  --gold:          #C9A96E;
  --gold-light:    #DFC08A;
  --text-body:     #2C2420;
  --text-mid:      #5C4A42;
  --text-light:    rgba(253, 251, 247, 0.78);
  --charcoal:      #1C1C1C;
  --white:         #FFFFFF;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', Arial, sans-serif;

  --container-max: 1100px;
  --radius:        2px;
  --transition:    0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

/* ---- LAYOUT ---- */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 2rem;
}

.section-ivory    { background: var(--ivory); }
.section-tint     { background: var(--ivory-tint); }
.section-burgundy { background: var(--burgundy); }
.section-charcoal { background: var(--charcoal); }

.text-center { text-align: center; }

.max-width {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- SECTION LABELS ---- */

.section-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---- SECTION HEADINGS ---- */

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.section-heading.on-dark { color: var(--ivory); }

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

/* ---- BODY COPY ---- */

.section-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.section-body.on-dark {
  color: var(--text-light);
}

/* ---- GOLD RULE ---- */

.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-rule.centered {
  margin: 1.5rem auto;
}

/* ---- BUTTONS ---- */

.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  background: #2C2420;
  border: 1px solid #2C2420;
  padding: 1rem 2.6rem;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.45);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* On the burgundy nav, ghost button uses ivory text */
.site-header .btn-ghost {
  color: var(--ivory);
  border-color: rgba(253, 251, 247, 0.4);
}

.site-header .btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #5C1220 0%, #7A1A2E 50%, #5C1220 100%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}

.logo-name {
  font-size: 1.75rem;
  color: #E8E4DE; /* platinum */
  letter-spacing: 0.05em;
}

.logo-accent {
  font-size: 1.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.logo-img {
  height: 38px;
  width: auto;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  align-items: center;
  padding: 0 2rem 3rem;
  padding-top: 90px;
  position: relative;
}

/* Delicate gold border inset */
.hero::before {
  content: '';
  position: absolute;
  top: 105px;
  left: 2.5rem;
  right: 2.5rem;
  bottom: 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.18);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2.5rem 0;
}

/* Left: text content */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Right: logo image area */
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Subtle right-side placeholder until logo is supplied */
.hero-logo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px dashed rgba(201, 169, 110, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
}

.hero-location {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D4A84B;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Playfair Display', var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--burgundy);
  letter-spacing: 0.02em;
  line-height: 1.18;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B8903A;
  line-height: 1.7;
  margin-top: 0.6rem;
  margin-bottom: 1.75rem;
}

/* ============================================
   CONCEPT + PROBLEM (Merged, seamless)
   ============================================ */

/* ============================================
   EDITORIAL SECTIONS (Concept + Problem)
   ============================================ */

.editorial-section {
  padding: 3rem 2rem 7rem;
  background: var(--ivory);
}

.editorial-section + .editorial-section {
  padding-top: 0;
}

.editorial-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 4rem;
  align-items: center;
}

/* Vertical gold divider */
.editorial-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  min-height: 300px;
}

.editorial-text {
  padding: 1rem 0;
}

/* Image placeholder */
.editorial-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  border: 1px dashed rgba(201, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.editorial-img-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
}

/* Real image when swapped in */
.editorial-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* For nearly square images — show full image without cropping */
.editorial-img--contain {
  object-fit: contain;
  background: var(--ivory);
}

/* Legacy intro styles kept for safety */
.intro-block {
  padding: 7rem 2rem;
  background: var(--ivory);
}

.intro-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.intro-col .section-label { margin-bottom: 0.75rem; }

.intro-col .section-heading {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 1.25rem;
}

/* Editorial pull-quote card for the Problem */
.pullquote-card {
  margin-top: 3rem;
  padding: 3rem 2.5rem;
  border-left: 2px solid var(--gold);
  background: transparent;
}

.pullquote-card p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1.65;
}

/* ============================================
   PRODUCT FEATURE
   ============================================ */

.product-feature {
  padding: 6rem 2rem;
  background: var(--ivory-tint);
}

.product-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* Placeholder for product image */
.product-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-placeholder span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-text .section-heading {
  margin-bottom: 1.25rem;
}

/* ============================================
   COLLECTION GRID
   ============================================ */

.collection-section {
  padding: 2rem 0 4rem;
  background: var(--ivory);
}

.collection-section .container {
  text-align: left;
  margin-bottom: 3.5rem;
}

.collection-intro {
  max-width: 560px;
  margin-top: 0.5rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.15);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.collection-card {
  background: var(--ivory);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* Image area — parallax-ready via background-attachment */
.collection-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

/* Number label on placeholder */
.collection-img-placeholder::after {
  content: var(--ph-num, '');
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
}

/* Real product image — same class used when swapping in photos */
.collection-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background: var(--ivory);
  display: block;
  transition: transform 0.6s ease;
}

/* Crimson — tall portrait, fill edge to edge */
.collection-img--cover {
  aspect-ratio: unset;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

/* Noir — white background, scaled up to match Crimson visual size */
.collection-img--noir {
  aspect-ratio: unset;
  height: 420px;
  object-fit: contain;
  object-position: center;
  background: var(--ivory);
  transform: scale(1.08);
}

/* Nude — match Silver exactly */
.collection-img--nude {
  aspect-ratio: unset;
  height: 420px;
  object-fit: contain;
  object-position: center;
}

/* Silver — fixed height, centred */
.collection-img--silver {
  aspect-ratio: unset;
  height: 420px;
  object-fit: contain;
  object-position: center;
}

.collection-card:hover .collection-img,
.collection-card:hover .collection-img-placeholder {
  transform: scale(1.03);
}

.collection-card-body {
  padding: 1.5rem 1.75rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.collection-category {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8903A;
  margin-bottom: 0.4rem;
}

.collection-name {
  font-family: 'Playfair Display', var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.collection-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.collection-cta {
  text-align: center;
  padding: 3.5rem 2rem 0;
}

/* ============================================
   PARTNERS GRID
   ============================================ */

.partners-section {
  padding: 7rem 2rem;
  background: var(--ivory);
}

.partners-section .section-label,
.partners-section .section-heading {
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.partner-card {
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.partner-card:hover {
  border-color: rgba(201, 169, 110, 0.6);
  box-shadow: 0 12px 40px rgba(107, 26, 42, 0.07);
  transform: translateY(-4px);
}

.partner-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.partner-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}

.partner-card p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ============================================
   WHY AFTER HEELS — Burgundy anchor block
   ============================================ */

.why-section {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #5C1220 0%, #7A1A2E 50%, #5C1220 100%);
}

.why-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.why-list {
  list-style: none;
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.why-marker {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.why-item strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ============================================
   PREVIEW / STATUS CTA
   ============================================ */

.preview-section {
  padding: 8rem 2rem;
  background: var(--ivory);
  text-align: center;
}

.preview-section .section-body {
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-section {
  padding: 7rem 2rem;
  background: var(--ivory);
}

.contact-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-intro {
  max-width: 560px;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* Minimalist underline fields */
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44, 36, 32, 0.25);
  border-radius: 0;
  padding: 0.65rem 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-body);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group select option {
  background: var(--ivory);
  color: var(--text-body);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(44, 36, 32, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--burgundy);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--charcoal);
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.06em;
}

.footer-address {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(253, 251, 247, 0.4);
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(253, 251, 247, 0.25);
  margin-top: 0.4rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
  }

  .editorial-divider {
    width: 48px;
    height: 1px;
    min-height: unset;
    background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    align-self: auto;
  }

  .editorial-section + .editorial-section {
    padding-top: 4.5rem;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .product-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-img-wrap {
    order: -1;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid .collection-card:nth-child(n+3) {
    border-top: 1px solid rgba(201, 169, 110, 0.15);
  }
}

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

@media (max-width: 600px) {
  .section,
  .intro-block,
  .product-feature,
  .partners-section,
  .why-section,
  .preview-section,
  .contact-section {
    padding: 4.5rem 1.25rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    padding: 8rem 1.25rem 5rem;
  }

  .hero::before {
    left: 1rem;
    right: 1rem;
    top: 72px;
    bottom: 1rem;
  }

  .pullquote-card {
    padding: 2rem 1.5rem;
  }

  .nav-inner {
    padding: 1rem 1.25rem;
  }
}
