:root{
  --bg: #fffef7;          /* off-white base */
  --ink: #3E2F1C;         /* dark brown text */
  --muted: #1b1a18;       /* softer brown for secondary text */
  --accent: #FFD93D;      /* main bright yellow highlight */
  --accent-2: #FFC300;    /* deeper golden yellow for gradients */
  --radius: 18px;
  --shadow: 0 6px 30px rgba(62,47,28,.15);
  --shadow-2: 0 12px 40px rgba(62,47,28,.22);
  --maxw: 1200px;
  --on-image: #fff;
  --on-image-glow: 0 2px 4px rgba(0,0,0,.6), 0 0 12px rgba(0,0,0,.45);
}

*{ box-sizing: border-box; }

html, body { 
  height: 100%; 
}
body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;

  /* soft yellow halos like your flyer */
  background:
    radial-gradient(1200px 800px at 50% 50%, rgba(255,217,61,.25), var(--bg) 80%),
    var(--bg);
  
  font-family: var(--font-sans);
  font-size: 1.05rem;   /* bump up size slightly */
  line-height: 1.7;
}

img{ 
  max-width: 100%; 
  display: block; 
}

.container{
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  color: var(--muted);
  margin: 0 0 .6rem;
}

h1, h2, h3{
  letter-spacing: .06em;
  line-height: 1.1;
  font-weight: 700;
}

h1{ 
  font-size: clamp(2.2rem, 5vw, 3.8rem); 
  margin: .2rem 0 .6rem; 
}

h2{ 
  font-size: clamp(1.6rem, 3.2vw, 2.4rem); 
  margin: 0 0 .8rem; 
}

h3{ 
  font-size: 1.15rem; 
  margin: 0; 
}

.lede{ 
  color: var(--muted); 
  max-width: 60ch; 
}

.link{ 
  color: var(--ink); 
  text-decoration: none; 
}

.site-header{
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(6px);
  background: color-mix(in srgb, var(--bg) 90%, white);
  border-bottom: 1px solid rgba(62,47,28,.08);
}

.header-row{
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem 0;
}

.logo{ 
  text-decoration: none; 
  color: var(--ink); 
  font-weight: 800; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
}

.nav{ 
  margin-left: auto; 
  display: flex; 
  align-items: center; 
  gap: 1rem; 
}

.nav a{
  color: var(--ink); text-decoration: none; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .6rem; border-radius: 10px;
}

.nav a:hover{ 
  background: rgba(255,217,61,.22); 
}

.nav-toggle{ 
  display: none; 
  font-size: 1.2rem; 
  background: none; 
  border: 0; 
  color: var(--ink); 
}

.btn{
  display: inline-block;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: var(--shadow);
}

.btn:hover{
  background: var(--accent-2);
  transform: translateY(-1px);
}

.btn.small{ 
  padding: .5rem .8rem; 
  font-size: .8rem; 
  box-shadow: none; 
}

.badge{
  display: inline-block;
  margin-top: .6rem;
  background: var(--accent);
  color: var(--ink);
  font-size: .72rem;
  padding: .3rem .6rem;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero{ padding: 3.5rem 0 2rem; }

/* tabs */
.tabs{
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 1.2rem 0 1.4rem;
}

.tab{
  border: 2px solid color-mix(in srgb, var(--ink) 40%, transparent);
  background: white;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 600;
}

.tab.active, .tab:hover{
  border-color: var(--ink);
  background: color-mix(in srgb, var(--accent) 45%, white);
  font-weight: 700;
}

/* card grid */
.card-grid{
  --cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: 1.2rem;
}

.card{
  position: relative;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(62,47,28,.06);
}

.card:hover{ 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-2); 
}

.card-media{ 
  aspect-ratio: 5 / 6; 
  overflow: hidden; 
  background: #fff; 
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-media img{ 
  width: 100%; 
  height: auto; 
  object-fit: cover; 
  display: block;
}

.card-body{ 
  padding: .9rem .95rem 1.05rem; 
}

.card-meta{ 
  color: var(--muted); 
  margin: .35rem 0 0; 
  font-size: .95rem; 
}

.locations{ 
  padding: 3rem 0; 
}

.loc-grid{ 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1rem; 
}

.loc-card{
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem; border: 1px solid rgba(62,47,28,.06);
}

.faqs{ 
  padding: 3rem 0; 
}

details{
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .9rem 1rem; margin: .6rem 0;
  border: 1px solid rgba(62,47,28,.06);
}

.site-footer{ padding: 1.2rem 0; }

.footer-row{ 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.social a{ 
  margin-left: .5rem; 
  text-decoration: none; 
  color: var(--ink); 
}

@media (max-width: 1000px){
  .card-grid{ --cols: 3; }
}
@media (max-width: 760px){
  .card-grid{ --cols: 2; }
  .loc-grid{ grid-template-columns: 1fr; }

  .nav{
    position: fixed; inset: 56px 0 auto 0; background: var(--bg);
    border-bottom: 1px solid rgba(62,47,28,.12);
    padding: .8rem 1rem;
    transform: translateY(-120%); transition: transform .2s ease;
    display: grid; gap: .6rem;
  }
  .nav[data-open="true"]{ transform: translateY(0); }
  .nav-toggle{ display: inline-block; margin-left: auto; }
}


/* ---------- FAQ Page ---------- */

/* Container (matches your markup: <div class="faq" id="faqList">) */
.faq {
  max-width: 1100px;
  margin: 0 auto 6rem;
}

/* Big rounded bubble for each item */
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 32px;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
  margin: 1.25rem 0;
  overflow: hidden;
}

/* Button row */
.faq-q {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1.85rem 2rem;
  font-size: 1.3rem;   /* ~20–21px */
  font-weight: 700;
  cursor: pointer;
  line-height: 1.3;
  gap: 1rem;
}

/* Focus ring for keyboard accessibility */
.faq-q:focus-visible {
  outline: 3px solid #ffda66;
  outline-offset: 2px;
  border-radius: 22px;
}

/* Place the arrow at the far right */
.faq-q .faq-icon {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Big arrow (down by default) */
.faq-q .faq-icon::before {
  content: "▾";                 
  font-size: 2rem;              
  line-height: 1;
  display: inline-block;        
  transition: transform .3s ease;
  transform-origin: center;
}

.faq-item.open .faq-q .faq-icon::before {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 2rem 1.75rem;
  font-size: 1.05rem;
  color: #42372b;
  line-height: 1.6;
}

@media (hover:hover) {
  .faq-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
  }
}



/* ---------- Catering ---------- */

.pill-row {
  list-style: none;   
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill-row li {
  list-style: none;  
}

.pill {
  background:#fff; border:1px solid rgba(0,0,0,.08);
  padding:.5rem .9rem; border-radius:999px; font-weight:600; font-size:.95rem;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.section-title { 
  font-size:1.9rem; 
  margin:0 0 1rem; 
  margin-top: 3rem;   
  margin-bottom: 1rem; 
}

.card-grid { 
  display:grid; 
  gap:1rem; 
}

.card-grid.three { 
  grid-template-columns:repeat(1,minmax(0,1fr)); 
}

@media (min-width:768px){ .card-grid.three{ grid-template-columns:repeat(3, minmax(0,1fr)); } }

.card { 
  background:#fff; 
  border:1px solid rgba(0,0,0,.08); 
  border-radius:20px; 
  box-shadow:0 10px 28px rgba(0,0,0,.05); 
}

.card-body { 
  padding:1.25rem 1.25rem 1rem; 
}

.price { 
  font-weight:800; 
  font-size:1.25rem; 
  margin:.2rem 0 .4rem; 
}

.bullets { 
  margin:.5rem 0 0 1rem; 
}

.bullets li { 
  margin:.25rem 0; 
}

.section--tint {
  position: relative;
  isolation: isolate;
  background: transparent;
  z-index: 0;   
}

.section--tint::before{
  content:"";
  position:absolute;
  inset:-60px 0 auto 0;        /* a touch above the title */
  height:180px;
  z-index:-1;
  pointer-events:none;

  --y:255,214,76;
  background:
    radial-gradient(380px 140px at 15% 30%,
      rgba(var(--y), .07) 0%, rgba(var(--y),0) 70%),
    radial-gradient(380px 140px at 85% 30%,
      rgba(var(--y), .07) 0%, rgba(var(--y),0) 70%);
}

/* HOW IT WORKS – responsive grid */
/* HOW IT WORKS – reset + responsive grid */
.steps {
  /* remove default list indentation/bullets that cause the offset */
  list-style: none;
  padding: 0;                /* << important: kills the left indent */
  margin: .75rem 0 0;        /* keep a little top space */

  display: grid;
  grid-template-columns: 1fr;   /* phones: 1 per row */
  gap: 1rem;
  align-items: stretch;         /* equal heights */
}

@media (min-width: 600px) {
  .steps { grid-template-columns: repeat(2, 1fr); }  /* small tablets: 2 per row */
}

@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(4, 1fr); }  /* desktop: 4 per row */
}

/* Cards inside the steps */
.steps li {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
  height: 100%;          
}

/* number circle */
.step-num {
  width: 36px; 
  height: 36px;
  border-radius: 999px;
  background: #1f1a12; 
  color: #fff;
  display: inline-grid; 
  place-items: center;
  font-weight: 800;
  flex: 0 0 36px;
  flex-shrink: 0;
}

.step-text {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  gap: 0.35rem;        
}

.step-text h4 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;     
  line-height: 1.3;
}

.step-text p {
  margin: 0;
  color: #42372b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.steps li h4 {
  margin: 0 0 0.6rem 0;  
  font-weight: 700;
  font-size: 1rem;
}

.steps li p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #42372b;
}

.form.card { 
  padding:1.25rem; 
  position: relative;
  z-index: 1; 
  background: #fff; 
}

.form-row { 
  display:grid; 
  gap:1rem; 
  margin-bottom:1rem; 
}

.form-row.two { 
  grid-template-columns:1fr; 
}

.form-row.three { 
  grid-template-columns:1fr; 
}

@media (min-width:768px){ 
  .form-row.two{ grid-template-columns:repeat(2,1fr); }
  .form-row.three{ grid-template-columns:repeat(3,1fr); }
}

label { 
  font-weight:700; 
  display:grid; 
  gap:.4rem; 
}

input, textarea, select {
  width:100%; 
  border:1px solid rgba(0,0,0,.12); 
  border-radius:12px; 
  padding:.85rem 1rem;
  font:inherit; 
  background:#fff;
}

.inline-group { 
  border:0; 
  padding:0; 
  margin:0; 
  display:flex; 
  gap:1rem; 
  align-items:center; 
}

.inline-group legend { 
  font-weight:700; 
  margin-right:.5rem; 
}

.form-actions { 
  display:flex; 
  gap:.75rem; 
  flex-wrap:wrap; 
  margin-top:.5rem; 
}

.muted { 
  color:#6a5e4f; 
}

.mini-faq { 
  margin:.5rem 0 0 1rem; 
}

.mini-faq li { 
  margin:.35rem 0; 
}

.catering-form {
  margin-bottom: 5rem; 
}



/* === Home / Hero Split === */
.hero-split{
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.hero-split__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;  /* text a bit wider */
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items:center;
  min-height: clamp(520px, 80vh, 760px);
}
.hero-split__copy{
  max-width: 56ch;
}
.hero-headline{
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 .7rem;
  letter-spacing: .02em;
}
.hero-sub{
  color: #534636;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  margin: 0 0 1.25rem;
}
.hero-cta{ font-size: 1rem; }

.hero-split__media{
  position:relative;
  aspect-ratio: 4/3;
  height: 100%;
  border-radius: 20px;
  overflow:hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.hero-split__media img{
  width:100%; height:100%; object-fit:cover; object-position:center;
  display:block;
}
.hero-split__fade{
  position:absolute; inset:0 auto 0 0; width:45%;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
  pointer-events:none;
}

.hero-dots{ display:flex; gap:.45rem; margin:.9rem 0 0; padding:0; list-style:none; }
.hero-dots li{
  flex:0 0 auto;
  width:8px; 
  height:8px; 
  border-radius:999px;
  aspect-ratio:1 / 1; 
  background:#c2b49f; 
  opacity:.6;
}
.hero-dots li.active{ opacity:1; background:#8b7a61; }

/* === Tiles === */
.home-tiles{ padding: clamp(2rem, 4vw, 3rem) 0 3.5rem; }
.tiles-grid{
  display:grid; gap:1rem;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.tile{
  position:relative; overflow:hidden; border-radius:20px; display:block;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.tile img{ width:100%; height:100%; object-fit:cover; display:block; aspect-ratio: 3/2; }
.tile__label{
  position:absolute; left:1rem; bottom:1rem;
  background: rgba(255,255,255,.92); color:#1b120a;
  font-weight: 800; letter-spacing:.05em;
  padding:.55rem .8rem; border-radius:999px;
}
.tile--accent .tile__label{
  background:#991b1b; color:#fff;
}
.tile:hover{ transform: translateY(-2px); transition: transform .18s ease; }

/* Responsive */
@media (max-width: 1000px){
  .hero-split__grid{ grid-template-columns: 1fr; min-height: auto; }
  .hero-split__media{ order:-1; height: 48vh; min-height: 320px; }
  .hero-split__fade{ width:60%; }
  .tiles-grid{ grid-template-columns: 1fr; }
}


/* Front Slider */
.front-slider {
  position: relative;
  width: 100%;
  height: 100vh;    /* full screen */
  overflow: hidden;
  background: #FFD93D;  /* optional: safe fallback color that matches your theme */
}

.front-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* adjust darkness */
  z-index: 1;
}

.slider-bg { 
  position: absolute;
  inset: 0;        /* top:0; right:0; bottom:0; left:0 */
  margin: 0;       /* <-- important */
  z-index: 1;
}

.slider-bg img {
  position: absolute;
  top: -1px; left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-media{
  position: absolute;
  inset: 0 0 0 40%;
  margin: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.slider-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  border-radius: 20px 0 0 20px;
}

.front-slider.ready .slider-media img{
  opacity: 1;
  transform: translateY(0);
}

.slider-copy {
  position: relative;
  z-index: 2;
  color: white; /* or dark overlay for contrast */
  max-width: 700px;
  padding: 3rem;
}

.slide-title{
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 .6rem;
}
.slide-text{ max-width: 55ch; margin: 0 0 1rem; color: var(--muted,#6b5b3e); }

.slider-dots {
  display: flex;
  justify-content: center;   /* center dots horizontally */
  align-items: center;       /* keep them vertically aligned */
  gap: 0.5rem;               /* spacing between dots */
  margin-top: 1rem;
  flex-wrap: nowrap;         /* prevent them from wrapping/squishing */
}

/* the dots */
.slider-dots button{
  box-sizing:content-box;     /* width/height are the visual size */
  flex:0 0 auto;              /* do not let flexbox shrink/stretch */
  width:10px;
  aspect-ratio:1 / 1;         /* <-- guarantees a square = perfect circle */
  min-width:10px;             /* belt + suspenders */
  min-height:10px;
  border-radius:50%;
  border:0;
  background:rgba(0,0,0,.25);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease;
}

.slider-dots button.active{
  background:#1f1a12;
  transform:scale(1.2);
}

@media (max-width: 900px){
  .slider-media{ inset: 45% 0 0 0; }
  .slider-media img{ border-radius: 20px 20px 0 0; }
}


/* ===== Values Section ===== */
.values{
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  background: radial-gradient(900px 420px at 50% -10%, rgba(255,221,96,.12), transparent 60%);
}

.values-title{
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}

/* circular cards */
.value-card{
  --size: clamp(220px, 28vw, 300px);
  width: var(--size);
  height: var(--size);
  margin-inline: auto;                 /* center each circle in its grid cell */
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0,0,0,.10), 0 3px 0 rgba(0,0,0,.04) inset;
  border: 1px solid rgba(0,0,0,.06);

  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
}

.value-card h3{
  margin: 0 0 .5rem;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.value-card p{
  margin: 0;
  color: var(--muted, #6b5b3e);
  line-height: 1.55;
  max-width: 28ch;
  font-size: .98rem;
}

/* Responsive layout */
@media (max-width: 1100px){
  .values-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
  .values-grid{ grid-template-columns: 1fr; }
}


/* ---------- Reviews ---------- */
.reviews { padding: clamp(2rem, 4vw, 3rem) 0; }
.reviews .section-title { margin: 0 0 .35rem; }
.reviews .section-sub { color: var(--muted, #6b5b3e); margin: 0 0 1.25rem; }

.reviews-grid{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.review-card{
  grid-column: span 12;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  border-radius:18px;
  padding:1rem;
  display:grid;
  grid-template-rows:auto 1fr auto;
}

@media (min-width: 720px){
  .review-card{ grid-column: span 6; }
}
@media (min-width: 1040px){
  .review-card{ grid-column: span 4; }
}

.rev-head{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:.75rem;
  align-items:center;
  margin-bottom:.25rem;
}
.rev-avatar{
  width:44px; height:44px; border-radius:50%;
  background:#eee; object-fit:cover; display:block;
}

.rev-name{ font-weight:800; font-size: 1rem; }
.rev-meta{ color:#6b5b3e; font-size:.9rem; }

.rev-stars{
  display:inline-flex; align-items:center; gap:.25rem;
  font-size:0; /* hide white space around inline svg */
}
.rev-stars svg{ width:16px; height:16px; fill:#f4c84d; }

.rev-text{
  color:#3e2f1c;
  line-height:1.55;
  margin-top:.35rem;
  display:-webkit-box;
  -webkit-line-clamp: 6;          /* show ~6 lines initially */
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.rev-text.expanded{
  -webkit-line-clamp: unset;       /* expand fully */
}

.read-more{
  margin-top:.5rem;
  border:0;
  background:transparent;
  font-weight:700;
  color:#8b6b2c;
  cursor:pointer;
  padding:0;
}

.reviews-actions{
  display:flex; justify-content:center;
  margin-top:1.25rem;
}
.reviews-fallback{ text-align:center; margin-top:1rem; }



/* === BUBBLY UPGRADE === */
:root{
  --font-sans: "Quicksand", "Nunito Rounded", system-ui, sans-serif;
  --font-display: "Fredoka", "Baloo 2", sans-serif;   /* for headings */
  --font-accent: "Fredoka", sans-serif;               /* for buttons, badges */
}

/* Base sizing a touch larger = cuter */
html { font-size: 17px; }  /* was ~16; small bump helps */

/* Headings = extra round + bigger + less tracking */
h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .005em;       /* less spacing = softer */
  text-transform: none;
  text-wrap: balance;
}

h1{
  font-size: clamp(2.6rem, 6vw, 4.6rem);  /* bigger hero */
  line-height: 1.02;                      /* tight + bouncy */
  margin: .1rem 0 .65rem;
}
h2{ font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
h3{ font-size: 1.2rem; }

/* Hero subcopy a hair bigger + warmer color */
.hero-sub { font-size: clamp(1.05rem, 1.9vw, 1.25rem); color:#5a4a35; }

/* Logo + nav feel rounder and less corporate */
.logo{
  font-family: var(--font-display);
  letter-spacing: .04em;
  font-weight: 800;
}
.nav a{
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: none;
  letter-spacing: .015em;
  border-radius: 999px;
  background: transparent;
}
.nav a:hover{
  background: rgba(255,217,61,.28);
}

/* Buttons = pillowy + “sticker” vibe */
.btn, .badge, .tile__label{
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
}
.btn{
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border-width: 3px;                            /* thicker outline = sticker */
  box-shadow:
    0 10px 0 rgba(62,47,28,.12),                /* drop */
    inset 0 -2px 0 rgba(0,0,0,.06);             /* soft inner */
  transform: translateY(0);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{
  transform: translateY(0);
  box-shadow:
    0 6px 0 rgba(62,47,28,.10),
    inset 0 -1px 0 rgba(0,0,0,.08);
}

/* Pills/tabs look bubblier */
.tab{
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: .02em;
  padding: .65rem 1.25rem;
  border-radius: 999px;
}

/* Review text slightly larger for cozy reading */
.rev-text, .faq-a, .card-meta { font-size: 1rem; line-height: 1.6; }

/* Optional: gentle text shadow on light-on-yellow hero headings */
.hero .hero-headline,
.slide-title{
  text-shadow: 0 2px 0 rgba(255,255,255,.35);
}


/* Space the button below the tiles */
#menu .cta-row{
  display: flex;
  justify-content: center;          /* keep the button centered */
  margin-top: clamp(2rem, 5vw, 3.5rem);   /* PUSH IT LOWER */
}

/* A little extra bottom padding for the section so it doesn't hug the footer */
#menu.hero{
  padding-bottom: 4.5rem;           /* was 2rem in .hero – gives more air below */
}

/* === Recommended duck badge === */
.rec-badge{
  position: absolute;
  top: .6rem;
  left: .6rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.rec-badge img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* tooltip */
.rec-badge::after{
  content: attr(data-tip);
  position: absolute;
  left: calc(100% + .4rem);   /* move it to the right of the duck */
  top: 50%;                   /* vertically center with the duck */
  transform: translateY(-50%);
  background: #1f1a12;
  color: #fff;
  padding: .4rem .55rem;
  border-radius: 10px;
  font: 700 12px/1 var(--font-sans, system-ui, sans-serif);
  white-space: normal;
  max-width: 7rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.rec-badge:hover::after{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --- HERO TEXT: white + soft black glow --- */
.front-slider .slide-text{
  color: var(--on-image) !important;
  -webkit-text-fill-color: var(--on-image);   /* WebKit edge cases */
  text-shadow: var(--on-image-glow) !important;
}

.front-slider .slide-title{
  color: var(--on-image) !important;
  text-shadow: 0 2px 4px rgba(0,0,0,.45);     /* a little lighter on the title */
}



/* Make FAQ links match your text color */
.faq a, 
.accordion a {
  color: #1f1a12;   /* or whatever your body text color is */
  text-decoration: underline; /* optional, keep if you want */
}

/* Optional: style for hover/tap states */
.faq a:hover,
.accordion a:hover {
  color: #8b7a61; /* your accent color */
}



/* iOS Safari: force FAQ headers to your ink color */
.faq-q,
.faq-q:link,
.faq-q:visited,
.faq-q:hover,
.faq-q:active,
.faq-q:focus {
  color: #1f1a12 !important;           /* your ink color */
  -webkit-text-fill-color: #1f1a12;    /* iOS text color override */
  text-decoration: none;               /* prevent link underline */
  appearance: none;
  -webkit-appearance: none;
}

/* make sure children (icons/spans) don’t re-blue themselves */
.faq-q * { color: inherit !important; }
