/* ============================================
   Cocktail Parties UK — Stylesheet
   Desktop: Pink (#fdbeb7)  |  Mobile: Mint
   ============================================ */

:root {
  --pink: #fdbeb7;
  --pink-deep: #f5a098;
  --pink-soft: #ffe4e0;
  --pink-blush: #fff5f3;

  --mint: #b8e6d1;
  --mint-deep: #8fd2b4;
  --mint-soft: #e0f5ec;
  --mint-blush: #f3fbf7;

  --ink: #2b2520;
  --ink-soft: #5b524d;
  --gold: #a78463;
  --cream: #faf6f1;
  --white: #ffffff;

  /* Live theme tokens — swapped at mobile breakpoint */
  --brand: var(--pink);
  --brand-deep: var(--pink-deep);
  --brand-soft: var(--pink-soft);
  --brand-blush: var(--pink-blush);

  --max-w: 1200px;
  --radius: 14px;
  --shadow-sm: 0 4px 14px rgba(43, 37, 32, 0.08);
  --shadow-md: 0 12px 32px rgba(43, 37, 32, 0.12);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* (mint mobile theme removed — pink applies across all breakpoints) */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .75; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---------- Top Bar (socials + trustpilot) ---------- */
.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--brand); opacity: 1; }
.topbar .contact-quick { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .contact-quick span { opacity: .85; }
.topbar .trust-strip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #00b67a; color: #fff;
  padding: 4px 10px; border-radius: 999px; font-weight: 600;
}
.topbar .trust-strip .stars { letter-spacing: 1px; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--brand);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: background .3s ease;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  color: var(--ink);
}
.brand-logo img {
  height: 56px; width: auto;
  border-radius: 8px;
}
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  font-size: 28px; color: var(--ink); cursor: pointer;
  padding: 4px 8px;
}
.nav-menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a:not(.btn) {
  color: var(--ink);
  font-weight: 500; font-size: 15px;
  letter-spacing: .3px;
  padding: 8px 0;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--ink);
  transition: width .25s ease;
}
.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn).active::after { width: 100%; }
.nav-menu a:hover { opacity: 1; }
.nav-menu a.btn { color: var(--white); }
.nav-menu a.btn:hover { color: var(--white); opacity: 1; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::before {
  content: "▾"; font-size: 10px; margin-right: 4px; opacity: .6;
}
.dropdown {
  position: absolute; top: 100%; left: -16px;
  background: var(--white);
  min-width: 220px;
  list-style: none; margin: 0; padding: 8px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block; padding: 10px 18px; color: var(--ink);
  font-size: 14px;
}
.dropdown li a:hover { background: var(--brand-soft); }
.dropdown li a::after { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink); color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: .5px;
  border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); opacity: 1; box-shadow: var(--shadow-md); }
.btn.btn-light { background: var(--white); color: var(--ink); }
.btn.btn-brand { background: var(--brand-deep); color: var(--ink); }
.btn.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 20% 10%, var(--brand-blush) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute;
  width: 280px; height: 280px;
  background: var(--white); opacity: .25;
  border-radius: 50%;
}
.hero::before { top: -120px; left: -80px; }
.hero::after { bottom: -140px; right: -100px; }
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--ink); margin-bottom: .4em; }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 720px; margin: 0 auto 32px;
  color: var(--ink-soft);
}
.hero .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Inline trust badge under hero */
.hero-trust {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.75);
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-trust .stars { color: #00b67a; font-weight: 700; }

/* ---------- Page Hero (slimmer) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 700px; margin: 0 auto; color: var(--ink-soft); }

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* 4-block grids: 4 → 2x2 → 1 (avoids 3+1 orphan) */
.grid-4 {
  display: grid; gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 37, 32, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-top: 0; }
.card .card-tag {
  display: inline-block;
  background: var(--brand-soft); color: var(--ink);
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 12px;
}

/* Numbered step cards */
.steps { counter-reset: step; }
.steps .step {
  position: relative;
  padding-left: 64px;
}
.steps .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px;
  background: var(--brand); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
}

/* Package list */
.package {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  border-top: 6px solid var(--brand);
}
.package h2 { margin-top: 0; }
.package .recipe {
  font-style: italic; color: var(--gold);
  margin-bottom: 16px; font-size: 15px;
}
.package .best-for {
  margin-top: 16px;
  font-size: 14px; color: var(--ink);
  background: var(--brand-blush);
  padding: 10px 14px;
  border-radius: 8px;
}

/* Review block */
.review {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-deep);
}
.review .stars { color: #f5b50a; font-size: 18px; letter-spacing: 2px; margin-bottom: 6px; }
.review h3 { font-size: 1.1rem; margin-bottom: 12px; }
.review blockquote {
  margin: 0 0 12px;
  font-style: italic;
  color: var(--ink);
  font-size: 15px;
}
.review cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  font-size: 14px;
}

/* What's included list */
.included-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.included-list li {
  padding-left: 32px;
  position: relative;
  color: var(--ink);
}
.included-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--brand); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

/* FAQ accordion */
.faq-group { margin-bottom: 40px; }
.faq-group > h2 {
  border-bottom: 2px solid var(--brand);
  padding-bottom: 10px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600; font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 26px; color: var(--brand-deep);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
}
.faq-item .answer a { color: var(--gold); font-weight: 600; }

/* Coverage list */
.coverage-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 24px;
}
.coverage-tags span {
  background: var(--white);
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; color: var(--ink);
  border: 1px solid var(--brand);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 600px) {
  .contact-form .row { grid-template-columns: 1fr; }
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 6px; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e7dfd9;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: var(--cream);
  transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-deep);
}
.field textarea { min-height: 120px; resize: vertical; }

.contact-info {
  background: var(--brand-blush);
  padding: 36px;
  border-radius: var(--radius);
}
.contact-info h3 { margin-top: 0; }
.contact-info .info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--brand);
}
.contact-info .info-block:last-child { border-bottom: 0; padding-bottom: 0; }

/* Social highlight section */
.social-highlight {
  background: var(--ink);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.social-highlight h2 { color: var(--white); }
.social-highlight p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 28px; }
.social-row {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.social-row a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: var(--ink);
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease;
}
.social-row a:hover { transform: translateY(-3px); opacity: 1; }
.social-row a.trustpilot {
  background: #00b67a; color: #fff;
}
.social-row a svg { width: 20px; height: 20px; }

/* Section heading helper */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading p { max-width: 640px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}

/* CTA strip */
.cta-strip {
  background: var(--brand);
  text-align: center;
  padding: 64px 24px;
}
.cta-strip h2 { margin-bottom: 12px; }
.cta-strip p { color: var(--ink); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--brand); opacity: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; font-size: 14px; }
.footer-brand img { height: 70px; border-radius: 8px; margin-bottom: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-socials a:hover { background: var(--brand); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.copyright {
  padding-top: 24px; font-size: 13px; text-align: center;
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 340px; height: 100vh;
    background: var(--brand);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 20px;
    transition: right .3s ease;
    box-shadow: -12px 0 32px rgba(0,0,0,.15);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 17px; }
  .has-dropdown > a::before { content: ""; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    min-width: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 8px 0; }
  .dropdown li a:hover { background: transparent; opacity: .7; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.bg-soft { background: var(--brand-blush); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
