/*
Theme Name: BeeFoundSEO
Theme URI: https://www.beefoundseo.com
Author: Moyglass Investments Ltd
Description: Custom-coded theme for BeeFoundSEO — SEO & AI search visibility (GEO) for Irish and UK businesses.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: beefoundseo
*/

/* =========================================================
   BeeFoundSEO — site stylesheet
   Brand: Honey Gold / Ink Charcoal / Honeycomb Cream / Meadow Teal
   Fonts: Poppins (headings/UI), Lora (body/quotes) — self-hosted
   ========================================================= */

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("fonts/Lora-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("fonts/Lora-Italic-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --gold: #E8A33D;
  --gold-dark: #C77F1B;
  --ink: #211D18;
  --cream: #FFF6E8;
  --teal: #2F6E62;
  --teal-dark: #234F46;
  --slate: #6B675F;
  --light: #FBF1DF;
  --hairline: #E4D6B8;
  --white: #FFFFFF;

  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Lora", Georgia, serif;

  --radius: 14px;
  --container: 1120px;
  --shadow: 0 10px 30px rgba(33, 29, 24, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.6em;
  display: block;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--light); }
.section--ink h2, .section--ink h3, .section--ink .eyebrow { color: var(--white); }
.section--ink a { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gold); color: var(--ink); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--gold-dark); color: var(--white); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--ink); }
.btn--outline-dark { border-color: var(--ink); color: var(--ink); }
.btn--outline-dark:hover { background: var(--ink); color: var(--white); }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 40px; height: 40px; }
.brand span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink);
}
.brand span em { color: var(--gold-dark); font-style: normal; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: var(--ink); text-decoration: none;
}
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a.is-active { color: var(--gold-dark); }
.main-nav .nav-cta {
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  background: var(--ink); color: var(--white) !important; padding: 10px 20px; border-radius: 999px; text-decoration: none;
}
.main-nav .nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }
.nav-toggle-checkbox { display: none; }
.nav-toggle-label {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; cursor: pointer; border-radius: 8px;
}
.nav-toggle-label span { display: block; height: 2px; width: 24px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--light) 55%, #FDEBC7 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy p.lead { font-size: 1.15rem; color: var(--ink); max-width: 46ch; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-art { display: flex; justify-content: center; align-items: center; }
.hero-art svg { width: 100%; max-width: 340px; }
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--hairline);
}
.stat-strip .stat b {
  display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--gold-dark);
}
.stat-strip .stat span { font-size: 0.88rem; color: var(--slate); }

/* Cards / grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.card--tier { display: flex; flex-direction: column; gap: 14px; position: relative; }
.card--tier.is-featured { border-color: var(--gold); box-shadow: 0 16px 40px rgba(200,127,27,0.18); }
.card--tier .tier-badge {
  position: absolute; top: -14px; right: 24px; background: var(--gold); color: var(--ink);
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; padding: 5px 14px; border-radius: 999px;
}
.card--tier h3 { font-size: 1.35rem; }
.card--tier .price { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--teal-dark); margin: 4px 0 10px; }
.card--tier .price small { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: var(--slate); }
.card--tier ul { margin: 0; padding-left: 1.1em; color: var(--ink); }
.card--tier ul li { margin-bottom: 8px; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
  border: 1px solid var(--hairline);
}
.icon-badge svg { width: 26px; height: 26px; }

/* Table */
table.price-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
table.price-table th, table.price-table td {
  text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--hairline);
}
table.price-table th { font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); }
table.price-table td.figure { font-family: var(--font-head); font-weight: 600; color: var(--teal-dark); }

/* CTA band */
.cta-band {
  background: var(--teal); color: var(--white); border-radius: 20px; padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: #DCEAE6; margin: 0; }

/* Footer */
.site-footer { background: var(--ink); color: #C9C3B6; padding: 56px 0 28px; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.site-footer a { color: #C9C3B6; text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand svg { width: 32px; height: 32px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.legal-strip {
  border-top: 1px solid #3A342A; margin-top: 40px; padding-top: 22px;
  font-size: 0.78rem; color: #93897A; line-height: 1.7;
}
.legal-strip .placeholder { color: var(--gold); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.98rem; background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { background: var(--cream); border: 1px solid var(--hairline); border-radius: 10px; padding: 16px 18px; font-size: 0.88rem; color: var(--slate); }

/* Contact details */
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-detail .icon-badge { flex: none; }

.breadcrumb-hero {
  background: var(--cream); padding: 46px 0 40px; border-bottom: 1px solid var(--hairline);
}
.breadcrumb-hero .eyebrow { margin-bottom: 10px; }
.breadcrumb-hero p.lead { max-width: 60ch; font-size: 1.05rem; color: var(--slate); }

.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; }
.list-check li svg { flex: none; width: 20px; height: 20px; margin-top: 3px; }

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 220px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; gap: 18px; }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
  .nav-toggle-label { display: flex; }
  .main-nav {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid var(--hairline); padding: 10px 24px 20px;
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .main-nav a { padding: 10px 0; width: 100%; }
  .main-nav .nav-cta { margin-top: 8px; }
  .nav-toggle-checkbox:checked ~ .main-nav { max-height: 400px; }
  .cta-band { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
}
