/* Fenella Cakes — shared stylesheet
   Palette: soft lilac paper, raspberry ink/accent, sage + gold highlights
   Type: Bodoni Moda (display) / Poppins (body)
   Layout notes: centered boutique hero, numbered process band, two-up featured
   cake types instead of a 3-grid gallery — different structure from prior builds.
*/

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

:root{
  --paper: #F6F1F5;
  --paper-deep: #ECE1E9;
  --ink: #362B33;
  --ink-soft: #6E5F69;
  --raspberry: #C14C6D;
  --raspberry-deep: #9B3856;
  --sage: #8FA888;
  --sage-deep: #6D8567;
  --gold: #C9A566;
  --line: rgba(54,43,51,0.13);
  --radius: 2px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin:0; background: var(--paper); color: var(--ink); font-family:'Poppins', sans-serif; font-size:16px; line-height:1.7; font-weight:300; }
h1,h2,h3{ font-family:'Bodoni Moda', serif; font-weight:600; line-height:1.15; margin:0 0 0.5em 0; color: var(--ink); }
p{ margin:0 0 1em 0; max-width:62ch; font-weight:300; }
a{ color: var(--raspberry-deep); }
.wrap{ max-width:1080px; margin:0 auto; padding:0 32px; }

/* Header */
header.site{ padding:22px 0; border-bottom:1px solid var(--line); }
header.site .wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color: var(--ink); }
.brand svg{ width:32px; height:32px; }
.brand-name{ font-family:'Bodoni Moda', serif; font-weight:600; font-size:1.35rem; font-style:italic; }
nav.main{ display:flex; gap:28px; }
nav.main a{ text-decoration:none; color: var(--ink-soft); font-weight:500; font-size:0.88rem; padding-bottom:4px; border-bottom:2px solid transparent; }
nav.main a:hover, nav.main a.active{ color: var(--raspberry-deep); border-bottom-color: var(--raspberry); }
.header-cta{ background: var(--raspberry); color:#F9F3F6; padding:10px 20px; border-radius: var(--radius); text-decoration:none; font-weight:600; font-size:0.85rem; white-space:nowrap; }
@media (max-width:720px){ nav.main{ display:none; } header.site .wrap{ flex-wrap:wrap; } }

/* Hero — centered boutique style */
.hero{ padding:72px 0 56px; text-align:center; }
.hero .eyebrow{ font-size:0.82rem; letter-spacing:0.14em; text-transform:uppercase; color: var(--raspberry-deep); font-weight:600; margin-bottom:18px; }
.hero h1{ font-size: clamp(2.3rem, 4.8vw, 3.6rem); max-width:16ch; margin:0 auto 20px; font-style:italic; }
.hero p.lead{ font-size:1.08rem; color: var(--ink-soft); max-width:48ch; margin:0 auto 26px; font-weight:300; }
.hero .cta-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn{ display:inline-block; padding:13px 26px; border-radius: var(--radius); text-decoration:none; font-weight:600; font-size:0.88rem; border:1.5px solid transparent; }
.btn-primary{ background: var(--raspberry); color:#F9F3F6; }
.btn-primary:hover{ background: var(--raspberry-deep); }
.btn-outline{ border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--paper); }

/* Process band — numbered horizontal steps, replaces card-grid/tag-cloud pattern */
.process-band{ background: var(--paper-deep); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:56px 0; }
.section-head{ max-width:60ch; margin:0 auto 36px; text-align:center; }
.section-head h2{ font-size: clamp(1.8rem, 3.2vw, 2.3rem); }
.section-head p{ color: var(--ink-soft); margin:0 auto; }
.process-steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:32px; position:relative; }
.pstep{ text-align:center; }
.pstep .pnum{ width:52px; height:52px; border-radius:50%; background: var(--raspberry); color:#F9F3F6; display:flex; align-items:center; justify-content:center; font-family:'Bodoni Moda', serif; font-size:1.3rem; margin:0 auto 16px; }
.pstep h3{ font-size:1.15rem; margin-bottom:6px; }
.pstep p{ color: var(--ink-soft); font-size:0.92rem; margin:0 auto; max-width:26ch; }
@media (max-width:780px){ .process-steps{ grid-template-columns:1fr; gap:28px; } }

.section{ padding:70px 0; }

/* Featured cake types — two-up large panels, replaces 3-grid gallery pattern */
.featured-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:26px; }
.featured-card{ background: var(--paper-deep); border-radius:6px; overflow:hidden; }
.featured-card .photo-placeholder{ border-radius:0; min-height:220px; }
.featured-card .fc-body{ padding:22px; }
.featured-card h3{ font-size:1.25rem; margin-bottom:6px; }
.featured-card p{ color: var(--ink-soft); font-size:0.94rem; margin:0; }
@media (max-width:680px){ .featured-grid{ grid-template-columns:1fr; } }

/* Feature band */
.feature-band{ background: var(--ink); color:#F6F1F5; padding:60px 0; text-align:center; }
.feature-band h2{ color:#F9F3F6; max-width:22ch; margin:0 auto 14px; font-style:italic; }
.feature-band p{ color: rgba(246,241,245,0.78); max-width:52ch; margin:0 auto; }

/* Testimonial */
.testimonial{ padding:64px 0; text-align:center; }
.testimonial .wrap{ max-width:680px; }
.testimonial p.quote{ font-family:'Bodoni Moda', serif; font-style:italic; font-size:1.5rem; color: var(--ink); margin:0 auto 14px; }
.testimonial .attrib{ font-weight:600; font-size:0.85rem; color: var(--ink-soft); }
.placeholder-flag{ display:inline-block; margin-top:12px; font-size:0.74rem; font-weight:700; letter-spacing:0.03em; color: var(--raspberry-deep); background: rgba(193,76,109,0.12); padding:5px 10px; border-radius:2px; }

/* CTA */
.cta-band{ background: var(--sage); color:#F9F3F6; padding:54px 0; text-align:center; }
.cta-band h2{ color:#F9F3F6; font-style:italic; }
.cta-band p{ color: rgba(249,243,246,0.88); margin:0 auto 20px; }
.cta-band .btn-primary{ background: var(--ink); }

/* Photo placeholders */
.photo-placeholder{ background: repeating-linear-gradient(135deg, var(--raspberry) 0px, var(--raspberry) 14px, var(--raspberry-deep) 14px, var(--raspberry-deep) 28px); border-radius:6px; min-height:240px; display:flex; align-items:center; justify-content:center; padding:24px; text-align:center; }
.photo-placeholder span{ background: rgba(54,43,51,0.72); color:#F9F3F6; font-size:0.82rem; padding:10px 16px; border-radius:3px; max-width:30ch; }

/* About */
.about-block{ display:grid; grid-template-columns: 1fr 1fr; gap:44px; align-items:center; }
@media (max-width:780px){ .about-block{ grid-template-columns:1fr; } }
.pullquote{ font-family:'Bodoni Moda', serif; font-style:italic; font-size:1.4rem; color: var(--raspberry-deep); border-left:3px solid var(--raspberry); padding-left:20px; margin:26px 0; }

/* Contact */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; }
@media (max-width:780px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{ background: var(--paper-deep); border-radius:6px; padding:32px; border:1px solid var(--line); }
.contact-card dl{ margin:0; }
.contact-card dt{ font-weight:700; color: var(--raspberry-deep); font-size:0.76rem; text-transform:uppercase; letter-spacing:0.06em; margin-top:16px; }
.contact-card dt:first-child{ margin-top:0; }
.contact-card dd{ margin:2px 0 0; color: var(--ink-soft); }
.map-placeholder{ background: var(--paper-deep); border:1px dashed var(--ink-soft); border-radius:6px; min-height:300px; display:flex; align-items:center; justify-content:center; text-align:center; padding:24px; }
.map-placeholder span{ color: var(--ink-soft); font-size:0.88rem; max-width:26ch; }

footer.site{ border-top:1px solid var(--line); padding:30px 0; margin-top:16px; }
footer.site .wrap{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:0.84rem; color: var(--ink-soft); }
