/* ============================================================
   ALEXABLYTHE — Boutique Wardrobe Studio
   LIGHT theme: boutique-linen, blythe-rose, hanger-wood
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  background-color: #FAF8F3;
  color: #2B2622;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: #B84A62;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============ RAIL-HOOK NAV ============ */
.railhook-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.railhook-nav .rail-strip {
  height: 12px;
  width: 100%;
  background: linear-gradient(#B08D5E, #9c7b52);
  position: relative;
}

.railhook-nav .rail-strip .rail-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  height: 5px;
  background: #8f6f47;
}

.railhook-nav .rail-strip .hook {
  position: absolute;
  top: 2px;
  width: 16px;
  height: 10px;
  border: 3px solid #6e5a3a;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.railhook-nav .rail-strip .hook1 { left: 12%; }
.railhook-nav .rail-strip .hook2 { left: 50%; margin-left: -8px; }
.railhook-nav .rail-strip .hook3 { right: 12%; }

.railhook-nav .rail-strip .end-bracket {
  position: absolute;
  top: 1px;
  width: 8px;
  height: 11px;
  background: #6e5a3a;
}

.railhook-nav .rail-strip .bracket-left { left: 0; }
.railhook-nav .rail-strip .bracket-right { right: 0; }

.railhook-nav .nav-row {
  background-color: #FFFDF8;
  border-bottom: 1px solid #EAE3D6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}

.railhook-nav .brand {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2B2622;
  display: flex;
  align-items: center;
  gap: 10px;
}

.railhook-nav .brand .tag-glyph {
  width: 16px;
  height: 20px;
  border: 2px solid #B84A62;
  border-radius: 3px;
  position: relative;
  display: inline-block;
}

.railhook-nav .brand .tag-glyph::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 3px;
  width: 6px;
  height: 6px;
  border: 2px solid #B84A62;
  border-radius: 50%;
}

.railhook-nav .brand .blythe {
  color: #B84A62;
}

.railhook-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.railhook-nav .nav-links a {
  color: #2B2622;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 10px;
  position: relative;
}

.railhook-nav .nav-links a:hover {
  color: #B84A62;
}

.railhook-nav .nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  background: #B84A62;
}

.railhook-nav .nav-links .dot {
  color: #C9B8D4;
  font-size: 6px;
}

.railhook-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #2B2622;
  cursor: pointer;
}

@media (max-width: 820px) {
  .railhook-nav .nav-toggle {
    display: block;
  }

  .railhook-nav .nav-row {
    flex-wrap: wrap;
  }

  .railhook-nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 6px;
    padding-top: 12px;
  }

  .railhook-nav .nav-links.open {
    display: flex;
  }

  .railhook-nav .nav-links .dot {
    display: none;
  }
}

/* ============ FITTING-ROOM HERO ============ */
.fit-wrap {
  background-color: #FAF8F3;
}

.fitting-hero {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px;
  gap: 40px;
}

.fitting-hero .hero-text {
  flex: 55%;
}

.eyebrow {
  display: inline-block;
  background-color: #B84A62;
  color: #FFFDF8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: 46px;
  color: #2B2622;
  margin-bottom: 22px;
}

.hero-headline .rose {
  color: #B84A62;
}

.hero-sub {
  color: #6E665C;
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
}

.btn-primary {
  background-color: #B84A62;
  color: #FFFDF8;
}

.btn-primary:hover {
  background-color: #A34A62;
}

.btn-outline {
  background: transparent;
  color: #B84A62;
  border: 1px solid #B84A62;
}

.btn-outline:hover {
  background-color: #B84A62;
  color: #FFFDF8;
}

/* Hero visual */
.hero-visual {
  flex: 45%;
  position: relative;
  min-height: 460px;
}

.mirror {
  position: absolute;
  right: 6%;
  top: 6%;
  width: 120px;
  height: 300px;
  border: 10px solid #A9B2BA;
  border-radius: 60px 60px 8px 8px;
  background: #E8E9EB;
  transform: rotate(2deg);
}

.mirror::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 16px;
  height: 240px;
  background: #F6F7F8;
  border-radius: 8px;
}

.rail-stand {
  position: absolute;
  left: 34%;
  top: 4%;
  width: 220px;
  height: 340px;
}

.rail-stand .rail-pole {
  position: absolute;
  right: -4px;
  width: 14px;
  height: 320px;
  background: #8f6f47;
  border-radius: 4px;
}

.rail-stand .rail-pole::after {
  content: "";
  position: absolute;
  left: -24px;
  top: -10px;
  width: 260px;
  height: 8px;
  background: #B08D5E;
  border-radius: 4px;
}

.hanger {
  position: absolute;
  top: 0;
  width: 12px;
  height: 40px;
  border: 3px solid #8f6f47;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  transform: rotate(4deg);
}

.hanger-a { left: 30px; }
.hanger-b { left: 78px; }
.hanger-c { left: 126px; }

.garment-dress {
  position: absolute;
  top: 38px;
  left: 18px;
  width: 42px;
  height: 90px;
  background: #B84A62;
  border-radius: 20px 20px 8px 8px;
  transform: rotate(3deg);
}

.garment-blouse {
  position: absolute;
  top: 38px;
  left: 66px;
  width: 42px;
  height: 80px;
  background: #FFFDF8;
  border: 1px solid #EAE3D6;
  border-radius: 18px 18px 8px 8px;
  transform: rotate(-2deg);
}

.garment-coat {
  position: absolute;
  top: 38px;
  left: 114px;
  width: 44px;
  height: 100px;
  background: #3A4750;
  border-radius: 20px 20px 8px 8px;
  transform: rotate(3deg);
}

.scarf {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 60px;
  background: #C9B8D4;
  border-radius: 12px;
  transform: rotate(12deg);
}

.garment-bag {
  position: absolute;
  left: 4%;
  top: 4%;
  width: 60px;
  height: 250px;
  background: #B08D5E;
  border-radius: 6px 6px 0 0;
  border: 1px solid #8f6f47;
}

.garment-bag .zipper {
  position: absolute;
  left: 50%;
  margin-left: -2px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: #f0e6d8;
}

.garment-bag .monogram {
  position: absolute;
  left: 50%;
  margin-left: -12px;
  top: 60px;
  width: 24px;
  height: 24px;
  background: #B84A62;
  border-radius: 50%;
}

.measuring-tape {
  position: absolute;
  bottom: 4%;
  left: 12%;
  width: 130px;
  height: 38px;
  border: 4px solid #d97589;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.measuring-tape::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px dashed #B84A62;
  border-radius: 50%;
}

.lookbook {
  position: absolute;
  left: 30%;
  bottom: 8%;
  width: 180px;
  height: 120px;
  background-color: #FFFDF8;
  border: 1px solid #EAE3D6;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.lookbook::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #F3EEE6;
}

.lookbook::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 0;
  width: 6px;
  height: 100%;
  background: #B84A62;
}

.trinket-tray {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: 70px;
  height: 42px;
  background: #FFFDF8;
  border: 1px solid #EAE3D6;
  border-radius: 8px;
}

.trinket-tray::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -10px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: #C9B8D4;
  border-radius: 50%;
}

/* ============ LOOKBOOK ROWS ============ */
.lookbook-rows {
  background-color: #FAF8F3;
  padding: 70px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  color: #B84A62;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  color: #B84A62;
  margin-bottom: 40px;
}

.lookbook-row {
  display: flex;
  background-color: #FFFDF8;
  border: 1px solid #EAE3D6;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.lookbook-row .look-plate {
  width: 40%;
  background: #ECEFF0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  position: relative;
}

.lookbook-row .look-plate::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #D8DBDD;
}

.lookbook-row .look-detail {
  width: 60%;
  padding: 34px;
}

.lookbook-row h3 {
  color: #2B2622;
  font-size: 22px;
  margin-bottom: 12px;
}

.lookbook-row p {
  color: #6E665C;
  margin-bottom: 16px;
}

.page-chip {
  display: inline-block;
  border: 1px solid #B84A62;
  color: #B84A62;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 2px;
}

/* Garment sketches preserved in markup with classes */
.sketch-coat, .sketch-dress, .sketch-blouse, .sketch-scarf, .sketch-shoe {
  width: 80px;
  height: 120px;
  border: 2px solid #2B2622;
  border-radius: 24px 24px 8px 8px;
  position: relative;
}

.sketch-dress { background: #F0D3DA; }
.sketch-coat { background: #D8E0E3; }
.sketch-blouse { background: #F7F1E6; }
.sketch-scarf { border-radius: 12px; background: #E4DCEB; transform: rotate(-8deg); }
.sketch-shoe { width: 120px; height: 44px; border-radius: 20px 12px 8px 8px; background: #F0D3DA; }

@media (max-width: 680px) {
  .lookbook-row {
    flex-direction: column;
  }

  .lookbook-row .look-plate {
    width: 100%;
    min-height: 120px;
  }

  .lookbook-row .look-plate::after {
    display: none;
  }

  .lookbook-row .look-detail {
    width: 100%;
  }
}

/* ============ FITTING METRIC BAND ============ */
.metric-band {
  background-color: #B84A62;
  padding: 60px 40px;
}

.metric-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.metric-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #FFFDF8;
}

.metric-value {
  font-size: 40px;
  font-weight: 700;
  color: #FFFDF8;
}

.metric-label {
  color: #FFFDF8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

@media (max-width: 680px) {
  .metric-inner {
    flex-direction: column;
    gap: 34px;
  }

  .metric-item:not(:last-child)::after {
    right: 0;
    top: auto;
    left: 8px;
    right: 8px;
    bottom: -18px;
    width: auto;
    height: 1px;
  }
}

/* ============ STATEMENT BAND ============ */
.statement-band {
  background-color: #FFFDF8;
  padding: 80px 40px;
}

.statement-inner {
  max-width: 760px;
  margin: 0 auto;
  border-left: 4px solid #B08D5E;
  padding-left: 36px;
}

.statement-inner p {
  font-size: 22px;
  color: #2B2622;
  line-height: 1.6;
  margin-bottom: 16px;
}

.statement-inner .attribution {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B08D5E;
}

/* ============ CTA BAND ============ */
.cta-band {
  background-color: #FAF8F3;
  text-align: center;
  padding: 80px 40px;
}

.cta-band h2 {
  color: #B84A62;
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-band p {
  color: #6E665C;
  margin-bottom: 28px;
}

/* ============ HANGER-RAIL FOOTER ============ */
.hangerrail-footer {
  background-color: #241F1B;
  color: #FFFDF8;
  padding-bottom: 26px;
}

.swatch-strip {
  height: 14px;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.swatch {
  height: 100%;
  flex: 1;
  border-radius: 0 0 8px 8px;
}

.swatch-rose { background: #B84A62; }
.swatch-lilac { background: #C9B8D4; }
.swatch-cream { background: #FFFDF8; }
.swatch-wood { background: #B08D5E; }

.footer-stack {
  text-align: center;
  padding: 40px 24px 20px;
}

.footer-wordmark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FFFDF8;
  margin-bottom: 24px;
}

.footer-wordmark .blythe {
  color: #E08BA0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 30px;
}

.footer-links a {
  color: #FFFDF8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: #E08BA0;
}

.mirror-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}

.mirror-divider .mirror {
  position: static;
  transform: none;
  width: 34px;
  height: 48px;
  border: 3px solid #A9B2BA;
  border-radius: 18px 18px 4px 4px;
  background: #3A3632;
  display: inline-block;
}

.mirror-divider .mirror::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 34px;
  background: #FFFDF8;
  border-radius: 2px;
}

.mirror-divider .mini-hook {
  width: 10px;
  height: 12px;
  border: 2px solid #B08D5E;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.footer-legal {
  font-size: 13px;
  color: #C9B8D4;
  line-height: 1.8;
}

/* ============ FADE-UP ============ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.inactive {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counters */
.count-number {
  display: inline-block;
}

/* ============ SERVICES PAGE ============ */
.page-hero {
  background-color: #FAF8F3;
  padding: 70px 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  color: #2B2622;
  margin-bottom: 14px;
}

.page-hero h1 .rose {
  color: #B84A62;
}

.page-hero p {
  color: #6E665C;
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
}

.services-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 40px 60px;
}

.service-section {
  background-color: #FFFDF8;
  border: 1px solid #EAE3D6;
  border-radius: 4px;
  padding: 34px 36px;
  margin-bottom: 20px;
}

.service-section h2 {
  color: #B84A62;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-section p {
  color: #6E665C;
  margin-bottom: 10px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.process-step {
  background-color: #FAF8F3;
  border: 1px solid #EAE3D6;
  border-radius: 4px;
  padding: 22px;
}

.process-step .step-num {
  display: block;
  color: #B08D5E;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.process-step h3 {
  color: #2B2622;
  font-size: 17px;
  margin-bottom: 8px;
}

.process-step p {
  color: #6E665C;
  font-size: 15px;
}

.cta-band h2.rose {
  color: #B84A62;
}
