/* Ackworth Flowers — Soft Pastel, Editorial Florist */
:root {
  --bg: #faf6f1;
  --cream: #f1eadf;
  --rose: #d99a8e;
  --sage: #94a684;
  --ink: #2d2a26;
  --muted: #6e6962;
  --line: #e6dfd4;
  --accent: #b85c4a;
  --max: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Nav */
.nav { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 38px; font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Hero — asymmetric */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero::before {
  content: '✿';
  position: absolute;
  font-size: 280px;
  color: var(--rose);
  opacity: .08;
  top: 20px; right: 30%;
  font-family: serif;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero p { color: var(--muted); font-size: 19px; max-width: 460px; margin-bottom: 36px; font-family: 'Inter', sans-serif; }
.hero-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 200px 200px 8px 8px;
  position: relative;
  z-index: 1;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s, transform .2s;
}
.btn:hover { background: var(--ink); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }

/* Sections */
section { padding: 100px 40px; }
.container { max-width: var(--max); margin: 0 auto; }
.label-line {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.label-line::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-intro { color: var(--muted); font-family: 'Inter', sans-serif; font-size: 16px; max-width: 580px; margin-bottom: 70px; }

/* Bouquet cards */
.bouquets { background: var(--cream); }
.bouq-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.bouq {
  background: var(--bg);
  padding: 0;
  transition: transform .3s;
}
.bouq:hover { transform: translateY(-6px); }
.bouq-img { aspect-ratio: 3/4; overflow: hidden; }
.bouq-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.bouq:hover .bouq-img img { transform: scale(1.05); }
.bouq-body { padding: 28px 28px 36px; text-align: center; }
.bouq h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; font-weight: 400; margin-bottom: 8px; }
.bouq .price { color: var(--accent); font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

/* Story split */
.story-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.story-img-stack { position: relative; aspect-ratio: 1; }
.story-img-stack .a, .story-img-stack .b { position: absolute; overflow: hidden; border-radius: 4px; box-shadow: 0 20px 50px rgba(45,42,38,.08); }
.story-img-stack .a { top: 0; left: 0; width: 70%; aspect-ratio: 3/4; }
.story-img-stack .b { bottom: 0; right: 0; width: 60%; aspect-ratio: 4/5; }
.story-img-stack img { width: 100%; height: 100%; object-fit: cover; }
.story-split p { color: var(--muted); font-family: 'Inter', sans-serif; font-size: 16px; margin-bottom: 18px; line-height: 1.75; }

/* Press / quotes */
.pull-quote {
  text-align: center;
  background: var(--bg);
  padding: 120px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  line-height: 1.3;
  max-width: 900px; margin: 0 auto 28px;
}
.pull-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}

/* Sub-page hero */
.sub-hero { padding: 80px 40px 60px; background: var(--cream); border-bottom: 1px solid var(--line); }
.sub-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sub-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 7vw, 88px); font-weight: 400; line-height: 1.02; }
.sub-hero h1 em { font-style: italic; color: var(--rose); }
.sub-hero p { font-family: 'Inter', sans-serif; color: var(--muted); font-size: 17px; }
.sub-hero-img { aspect-ratio: 5/4; overflow: hidden; border-radius: 8px; }
.sub-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Process list */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 80px; margin-top: 60px; }
.step { border-top: 1px solid var(--line); padding-top: 24px; }
.step-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 36px; color: var(--rose); margin-bottom: 10px; }
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 10px; }
.step p { color: var(--muted); font-family: 'Inter', sans-serif; font-size: 15px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 50px; }
.gallery-grid > div { overflow: hidden; border-radius: 4px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .6s; }
.gallery-grid > div:hover img { transform: scale(1.06); }

/* CTA */
.cta-section {
  background: var(--accent);
  color: var(--bg);
  text-align: center;
}
.cta-section .label-line { color: var(--bg); }
.cta-section .label-line::before { background: var(--bg); }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 400; margin-bottom: 36px; }
.cta-section .btn { background: var(--bg); color: var(--accent); }
.cta-section .btn:hover { background: var(--ink); color: var(--bg); }

/* Footer */
footer { background: var(--ink); color: var(--cream); padding: 80px 40px 36px; font-family: 'Inter', sans-serif; }
.foot-grid { max-width: var(--max); margin: 0 auto 56px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.foot-grid h4 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; font-weight: 400; margin-bottom: 18px; }
.foot-grid p, .foot-grid a { color: #bdb7ac; font-size: 14px; margin-bottom: 8px; display: block; }
.foot-grid a:hover { color: var(--bg); }
.foot-bottom { max-width: var(--max); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-size: 13px; color: #8b867d; }

/* Legal */
.legal { max-width: 760px; margin: 0 auto; padding: 80px 40px 100px; }
.legal h1 { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 400; margin-bottom: 10px; }
.legal h1 em { font-style: italic; color: var(--rose); }
.legal .updated { font-family: 'Inter', sans-serif; color: var(--muted); font-size: 13px; margin-bottom: 50px; letter-spacing: 1px; }
.legal h2 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin: 40px 0 14px; font-style: italic; }
.legal p { color: var(--muted); font-family: 'Inter', sans-serif; font-size: 15px; margin-bottom: 18px; line-height: 1.75; }

@media (max-width: 880px) {
  .hero, .story-split, .sub-hero .container, .foot-grid, .process { grid-template-columns: 1fr; gap: 48px; }
  .bouq-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 16px; font-size: 11px; }
  section { padding: 70px 24px; }
  .hero { padding: 50px 24px; }
}
