/* ===== Cosmet Florist — shared styles ===== */

:root {
  --cream: #FAF6EC;
  --cream-alt: #F1ECDC;
  --olive-950: #22240F;
  --olive-900: #2E3117;
  --olive-700: #454B27;
  --olive-500: #5F6A3B;
  --olive-300: #97A16C;
  --olive-100: #DCE1C7;
  --ink: #26261C;
  --muted: #6F6C5A;
  --white: #FFFFFF;
  --border: #E5DFC9;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px -14px rgba(38, 38, 28, 0.28);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--olive-950);
  color: var(--ink);
  font-family: "Jost", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: "Fraunces", "Playfair Display", serif;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { margin: 0; color: var(--muted); line-height: 1.6; }

/* Desktop: page reads as a centered "card" document, not fullscreen */
.page {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--cream);
  min-height: 100vh;
  box-shadow: 0 0 80px rgba(0,0,0,0.35);
  overflow: hidden;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--olive-300);
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  position: relative;
  z-index: 30;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg { width: 26px; height: 26px; color: var(--olive-700); }
.logo .word {
  font-family: "Fraunces", serif;
  font-size: 19px;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.logo .word span {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14.5px;
}
.nav-links a { color: var(--olive-900); position: relative; padding: 4px 0; }
.nav-links a.active { color: var(--olive-700); font-weight: 600; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--olive-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.header-actions .action {
  display: flex; align-items: center; gap: 7px;
}
.header-actions svg { width: 18px; height: 18px; }
.cart-count {
  background: var(--olive-700); color: var(--cream);
  font-size: 11px; width: 17px; height: 17px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 2px;
}

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 30px; height: 22px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--olive-900); transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { top: 10px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--olive-700); color: var(--cream);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--olive-900); }
.btn-outline {
  background: transparent; border-color: var(--olive-900); color: var(--olive-900);
}
.btn-outline:hover { background: var(--olive-900); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--olive-900); }
.btn-light:hover { background: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Hero (home) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 40px 56px;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.14;
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 15.5px;
  max-width: 440px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-location {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.hero-location svg { width: 15px; height: 15px; color: var(--olive-500); }
.dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--olive-300); }

.hero-art {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, #EFE9D6 0%, #E3DEC5 55%, #D9D3B7 100%);
  box-shadow: var(--shadow);
}
.hero-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}

/* ---------- Feature strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 40px 40px 56px;
  border-bottom: 1px solid var(--border);
}
.feature {
  text-align: left;
}
.feature .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--olive-700);
}
.feature .icon svg { width: 26px; height: 26px; }
.feature h4 { font-size: 15.5px; margin-bottom: 6px; font-weight: 600; font-family: "Jost", sans-serif; }
.feature p { font-size: 13.5px; }

/* ---------- Section heading ---------- */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 42px;
}
.section-head h2 { font-size: 30px; margin-bottom: 10px; }
.section-head p { font-size: 14.5px; }

.section { padding: 64px 40px; }
.section.alt { background: var(--cream-alt); }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s ease, transform .2s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #EEE9D8, #E1DCC2);
  overflow: hidden;
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--olive-900); color: var(--cream);
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; font-weight: 600;
}
.product-info { padding: 16px 16px 18px; }
.product-info h4 {
  font-family: "Jost", sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 6px;
}
.product-info p.desc { font-size: 12.5px; margin-bottom: 12px; min-height: 48px; }
.price { font-weight: 600; color: var(--olive-900); font-size: 14.5px; margin-bottom: 12px; display: block; }

.order-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 9px; border-radius: 999px;
  border: 1px solid var(--olive-900);
  background: transparent; color: var(--olive-900);
  font-size: 12.5px; font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.order-btn svg { width: 14px; height: 14px; }
.order-btn:hover { background: var(--olive-900); color: var(--cream); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--olive-900);
  color: var(--cream);
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip .cta-item { display: flex; align-items: center; gap: 14px; }
.cta-strip .cta-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-strip .cta-icon svg { width: 20px; height: 20px; }
.cta-strip strong { display: block; font-size: 14.5px; }
.cta-strip span.sub { font-size: 12.5px; color: var(--olive-100); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--olive-950);
  color: var(--olive-100);
  padding: 48px 40px 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
}
.footer-grid h5 {
  color: var(--cream); font-size: 13px; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 16px; font-family: "Jost", sans-serif;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid p { font-size: 13.5px; color: var(--olive-100); }
.footer-grid a:hover { color: var(--cream); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo svg { width: 22px; height: 22px; color: var(--cream); }
.footer-logo .word { font-family: "Fraunces", serif; color: var(--cream); font-size: 17px; letter-spacing: .05em; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--olive-300); flex-wrap: wrap; gap: 10px;
}

/* ---------- About page specific ---------- */
.about-hero {
  background: var(--olive-950);
  color: var(--cream);
  padding: 60px 40px 70px;
  position: relative;
  overflow: hidden;
}
.about-hero-inner { position: relative; z-index: 2; max-width: 480px; }
.about-hero .eyebrow { color: var(--olive-300); margin-bottom: 14px; display: block; }
.about-hero h1 { color: var(--cream); font-size: 36px; line-height: 1.18; margin-bottom: 14px; }
.about-hero p { color: var(--olive-100); font-size: 14.5px; }
.about-hero-art {
  position: absolute; top: 0; right: 0; bottom: 0; width: 52%;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.about-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(51,58,31,.72), rgba(38,43,25,.55) 70%);
}

.honour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.honour-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 26px;
}
.honour-cols .icon { width: 34px; height: 34px; color: var(--olive-700); margin-bottom: 12px; }
.honour-cols h4 { font-size: 14.5px; font-weight: 600; font-family: "Jost", sans-serif; margin-bottom: 6px; }
.honour-cols p { font-size: 12.5px; }
.honour-media {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3.4;
  background: linear-gradient(160deg, #EFE9D6, #DBD5B9);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.honour-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }

.map-order-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
}
.map-card, .steps-card { padding: 4px; }
.map-visual {
  aspect-ratio: 4/3.4;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-top: 18px;
}
.map-visual svg { width: 62%; color: var(--olive-500); }
.tag-row { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.tag { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.tag svg { width: 14px; height: 14px; color: var(--olive-500); }

.steps-list { display: flex; flex-direction: column; gap: 22px; margin-top: 22px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--olive-700); font-size: 14px; font-weight: 600;
  font-family: "Jost", sans-serif;
}
.step h4 { font-size: 14.5px; font-weight: 600; font-family: "Jost", sans-serif; margin-bottom: 3px; }
.step p { font-size: 13px; }

.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.help-list { display: flex; flex-direction: column; gap: 16px; margin: 22px 0 26px; }
.help-row { display: flex; align-items: center; gap: 14px; }
.help-row .icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--cream-alt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--olive-700);
}
.help-row .icon svg { width: 17px; height: 17px; }
.help-row strong { display: block; font-size: 13px; color: var(--muted); font-weight: 500; }
.help-row span { font-size: 14.5px; color: var(--ink); font-weight: 500; }
.help-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.help-media {
  aspect-ratio: 4/3.6;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #EFE9D6, #DBD5B9);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.help-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; background: none; border: none; text-align: left;
  font-size: 14px; font-weight: 500; color: var(--ink); font-family: "Jost", sans-serif;
}
.faq-q svg { width: 16px; height: 16px; color: var(--olive-500); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
  padding: 0 18px;
}
.faq-item.open .faq-a { max-height: 140px; padding-bottom: 16px; }
.faq-a p { font-size: 13px; }

.closing-banner {
  position: relative;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(160deg, #EFE9D6, #DED8BC);
  overflow: hidden;
}
.closing-banner h2 { font-size: 26px; max-width: 560px; margin: 0 auto 22px; line-height: 1.35; }
.closing-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero, .honour-grid, .map-order-grid, .help-grid { grid-template-columns: 1fr; }
  .hero-art, .honour-media, .help-media { order: -1; }
  .feature-strip, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .honour-cols { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 16px 20px; }
  .nav-links { 
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a { padding: 14px 20px; border-top: 1px solid var(--border); width: 100%; }
  .nav-links a::after { display: none; }
  .header-actions .label { display: none; }
  .nav-toggle { display: block; }
  .wrap, .hero, .feature-strip, .section, .about-hero, .cta-strip, .site-footer, .closing-banner {
    padding-left: 20px; padding-right: 20px;
  }
  .hero { padding-top: 40px; padding-bottom: 36px; }
  .hero h1 { font-size: 30px; }
  .feature-strip { grid-template-columns: 1fr 1fr; gap: 22px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section { padding: 44px 20px; }
  .section-head h2 { font-size: 24px; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-hero-art { display: none; }
  .about-hero h1 { font-size: 28px; }
  .honour-cols { grid-template-columns: 1fr; }
  .help-grid { gap: 26px; }
}

@media (max-width: 480px) {
  .feature-strip, .product-grid { grid-template-columns: 1fr; }
}
