/* ===========================================================
   LeFay Faux Florals — Design System
   "Blush Romance" — per Brand Identity System V1
   =========================================================== */

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

:root {
  /* Blush Romance palette */
  --blush: #EAC2CC;        /* Dusky Blush */
  --chocolate: #4A2E27;    /* Rich Chocolate */
  --gold: #C9A66B;         /* Champagne Gold */
  --pink: #C6417E;         /* Vibrant Hot Pink */
  --emerald: #2F5D50;      /* Emerald Green */
  --ivory: #FAF3EC;        /* Soft Ivory */
  --cream: #F0E4D3;        /* Warm Cream */
  --charcoal: #2B211D;     /* Charcoal Heading */
  --grey: #8C8078;         /* Warm Grey */
  --divider: #E4D6CC;      /* Border / Divider */
  --sage: #6E8B6B;         /* Success Sage */
  --terracotta: #B3554A;   /* Error Terracotta */
  --gold-dark: #a9865a;    /* hover state for gold */
  --pink-dark: #a8365f;    /* hover state for pink */

  /* Type */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;

  /* Radius */
  --r-button: 100px;
  --r-card: 14px;
  --r-input: 8px;
  --r-image: 6px;

  --shadow-soft: 0 8px 24px rgba(43,33,27,0.08);
  --tracked: 0.12em;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--chocolate);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* -------- Eyebrow / labels -------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* -------- Headings -------- */
h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.12;
}
h1, .h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2, .h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
h3, .h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }

p { margin: 0 0 1em; color: var(--chocolate); }
.lede {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--chocolate);
}

/* -------- Buttons -------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: var(--r-button);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }

/* Primary — Hot Pink fill, Ivory text — used everywhere */
.btn-primary, .nav-cta {
  background: var(--pink);
  color: var(--ivory);
  border-color: var(--pink);
}
.btn-primary:hover, .nav-cta:hover { background: var(--pink-dark); border-color: var(--pink-dark); }

/* Secondary — Dusky Pink fill, Chocolate text */
.btn-secondary {
  background: var(--blush);
  color: var(--chocolate);
  border-color: var(--blush);
}
.btn-secondary:hover { background: #e3aebb; }

/* Gold — special case, only on Rich Chocolate background */
.btn-gold {
  background: var(--gold);
  color: var(--chocolate);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); }

/* Ghost — outline, for use on light backgrounds as tertiary */
.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border-color: var(--chocolate);
}
.btn-outline:hover { background: var(--chocolate); color: var(--ivory); }

/* -------- Header / Nav -------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,243,236,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--divider);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--chocolate);
}
.wordmark span { color: var(--gold); }

nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--grey);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a.nav-link:hover { color: var(--gold); }
nav.main-nav a.nav-link.current { color: var(--gold-dark); border-bottom: 1px solid var(--gold); }

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ivory);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  min-width: 230px;
  padding: 10px 0;
  margin-top: 8px;
  box-shadow: var(--shadow-soft);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--chocolate);
}
.dropdown a:hover { background: var(--cream); color: var(--gold-dark); }

.nav-cta {
  font-size: 0.8rem;
  padding: 11px 24px;
}

/* -------- Botanical sprig divider (signature motif) -------- */
.sprig-divider {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 220px;
  opacity: 0.7;
}
.sprig-divider svg { width: 100%; height: auto; }
.sprig-divider path, .sprig-divider circle { stroke: var(--gold); fill: none; }

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: 110px 32px 80px;
  background: var(--blush);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.hero h1 { color: var(--chocolate); }
.hero .lede { color: var(--chocolate); opacity: 0.85; margin: 22px auto 34px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-sprig {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}
.hero-sprig svg { width: 100%; height: 100%; }
.hero-sprig path, .hero-sprig circle { stroke: var(--chocolate); fill: none; }

/* -------- Sections -------- */
section { padding: 90px 0; }
section.tight { padding: 60px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }

.band-chocolate { background: var(--chocolate); color: var(--blush); }
.band-chocolate h2, .band-chocolate h3 { color: var(--ivory); }
.band-cream { background: var(--cream); }
.band-blush { background: var(--blush); }
.band-charcoal { background: var(--charcoal); color: var(--cream); }

/* -------- Buy / Hire badges -------- */
.crest {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-button);
}
.crest svg { width: 11px; height: 11px; }
/* Buy — blush chip, chocolate text (per spec) */
.crest-own {
  background: var(--blush);
  color: var(--chocolate);
}
.crest-own svg { stroke: var(--chocolate); fill: none; }
/* Hire — emerald accent, per "second bold accent — badges, tags" */
.crest-hire {
  background: rgba(47,93,80,0.12);
  color: var(--emerald);
  border: 1px solid var(--emerald);
}
.crest-hire svg { stroke: var(--emerald); fill: none; }

/* -------- Cards / grids -------- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--ivory);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease;
}
.card:hover { border-color: var(--gold); }
.card h3 { margin-bottom: 12px; }

/* -------- Photo placeholder slots -------- */
.photo-slot {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--cream) 0%, var(--blush) 100%);
  border: 1px solid var(--divider);
  border-radius: var(--r-image);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-slot.wide { aspect-ratio: 16 / 10; }
.photo-slot.square { aspect-ratio: 1 / 1; }
.photo-slot .slot-sprig {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.photo-slot .slot-sprig svg { width: 100%; height: 100%; }
.photo-slot .slot-sprig path { stroke: var(--gold); fill: none; }
.photo-slot .slot-label {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--chocolate);
  background: rgba(250,243,236,0.85);
  border: 1px solid var(--divider);
  border-radius: var(--r-input);
}

/* -------- Category tiles -------- */
.tile { position: relative; display: block; overflow: hidden; }
.tile .photo-slot { transition: transform 0.5s ease; }
.tile:hover .photo-slot { transform: scale(1.03); }
.tile-caption { margin-top: 16px; display: flex; justify-content: space-between; align-items: baseline; }
.tile-caption h3 { font-style: italic; }
.tile-caption .arrow { color: var(--gold); font-family: var(--font-heading); font-size: 1.2rem; }

/* -------- Trust strip -------- */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  text-align: center;
  padding: 40px 32px;
  background: var(--cream);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.trust-item .eyebrow { display: block; margin-bottom: 6px; }
.trust-item p { margin: 0; font-size: 0.92rem; color: var(--chocolate); }

/* -------- Testimonials -------- */
.testimonial-grid { display: grid; gap: 40px; grid-template-columns: repeat(2, 1fr); }
.testimonial {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.testimonial .t-photos { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.testimonial .t-photos img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--r-image);
  border: 1px solid rgba(74,46,39,0.2);
}
.testimonial .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial blockquote {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--chocolate);
  font-size: 1.08rem;
  line-height: 1.5;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}
@media (max-width: 700px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial { flex-direction: column; }
  .testimonial .t-photos { flex-direction: row; }
}

/* -------- Forms -------- */
form.enquiry { max-width: 640px; margin: 0 auto; background: var(--cream); border-radius: var(--r-card); padding: 40px; box-shadow: var(--shadow-soft); }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chocolate);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--r-input);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--chocolate);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,166,107,0.2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.note-box {
  border: 1px solid var(--gold);
  background: rgba(201,166,107,0.1);
  border-radius: var(--r-card);
  padding: 18px 20px;
  font-size: 0.88rem;
  margin-bottom: 30px;
  color: var(--chocolate);
}
.note-box strong { color: var(--pink); }

/* -------- Steps / process -------- */
.steps { display: grid; gap: 30px; grid-template-columns: repeat(4, 1fr); }
.step .num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

/* -------- FAQ accordion -------- */
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--pink);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item .faq-a { padding-bottom: 22px; max-width: 700px; color: var(--chocolate); }

/* -------- Footer -------- */
footer.site {
  background: var(--charcoal);
  color: var(--cream);
  padding: 70px 0 30px;
}
footer.site .wordmark { color: var(--ivory); }
footer.site .wordmark span { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(240,228,211,0.15);
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--tracked);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.footer-grid a, .footer-grid p { color: rgba(240,228,211,0.85); font-size: 0.9rem; }
.footer-grid a { display: block; margin-bottom: 10px; }
.footer-grid a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(240,228,211,0.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-strip { gap: 28px; }
  section { padding: 60px 0; }
  form.enquiry { padding: 26px; }
}

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
