/* ======================================================
   Holly Jolly Co.  •  GLOBAL, HEADER & HERO STYLES
   ====================================================== */

/* ----------  COLOUR VARIABLES  ---------- */
:root{
  --hj-gold : #d4af37;
  --hj-black: #000000;
}

/* ----------  GLOBAL FONTS  ---------- */
body  { font-family: sans-serif; } /* Keep fallback as default */
.brand{ font-family: 'Oleo Script Swash Caps', cursive; letter-spacing:-0.5px; }


/* ---------- CUSTOM FONT ASSIGNMENTS ---------- */

/* All heading tags use Swash Caps */
h1, h2, h3, h4, h5, h6,
.hero-title,
.cd-title,
.pitch-title,
.services-title,
.why-title,
.t-title,
.about-h1,
.core-title,
.approach-h,
.spec-h2,
.sec-h {
  font-family: 'Oleo Script', cursive !important;
}

/* Menu text and all CTA buttons use Oleo Script */
.nav-link,
.ftr-nav a,
.booking-form input[type="submit"],
.booking-form button[type="submit"] {
  font-family: 'Oleo Script', cursive !important;
}

.btn-main {
  font-family: 'Oleo Script', cursive;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  background:#000;
  color: var(--hj-gold);
  padding:.9rem 2.2rem;
  border: 1px solid var(--hj-gold);
  text-transform: capitalize;
  letter-spacing:.04em;
  transition:background .25s, color .25s;
  border-radius: 9999px;
}
.btn-main i{ font-size:1.5rem; }
.btn-main:hover {border: 1px solid var(--hj-gold);background: var(--hj-gold); color:#000;}

/* ----------  GOLD PULSE ANIMATION (CTA)  ---------- */
@keyframes pulse-gold{
  0%   { box-shadow:0 0 0 0   rgba(212,175,55,.7); }
  70%  { box-shadow:0 0 0 15px rgba(212,175,55,0); }
  100% { box-shadow:0 0 0 0   rgba(212,175,55,0); }
}
.btn-pulse{ animation:pulse-gold 2.5s infinite; }

/* ----------  CUSTOM SCROLLBAR (Desktop)  ---------- */
::-webkit-scrollbar        { width:8px; }
::-webkit-scrollbar-track  { background:var(--hj-black); }
::-webkit-scrollbar-thumb  { background:var(--hj-gold); }

/* ======================================================
   HEADER
   ====================================================== */

/* Header container (initial state) */
#siteHeader{
  backdrop-filter:blur(14px);
  transition:background 0.3s ease;
}

/* Header when page is scrolled > 40 px */
#siteHeader.scrolled{
  background-color:#000;                  /* solid black */
  background-image:url('https://www.transparenttextures.com/patterns/black-paper.png');
  background-size:180px;
  background-blend-mode:overlay;
}

/* ----------  1. HEADER  NAV‑LINK GOLD  UNDERLINE  ---------- */
.nav-link{
  position:relative;
  transition:color .2s ease;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--hj-gold);
  transition:width .3s ease;
}
.nav-link:hover{ color:var(--hj-gold); }
.nav-link:hover::after{ width:100%; }

header nav a{ @apply nav-link; }

/* Desktop / Tablet icon buttons (phone, WhatsApp) */
.icon-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:2.5rem;           /* 40 px circle */
  height:2.5rem;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,0.3);
  color:#fff;
  transition:background 0.2s ease, transform 0.2s ease;
}
.icon-link:hover{
  background:rgba(255,255,255,0.10);
  transform:scale(1.05);
  background:var(--hj-gold);
  color:#000;
}
header .cta-head {font-family: 'Oleo Script', cursive;background: #000;border: 1px solid var(--hj-gold);color: var(--hj-gold);text-transform: capitalize;}
header .cta-head:hover {border: 1px solid var(--hj-gold);background: var(--hj-gold); color:#000; }

/* Gold text hover utility for Tailwind‑generated links */
.hover\:text-hj-gold:hover{ color:var(--hj-gold); }

/* ======================================================
   HERO
   ====================================================== */

/* Wrapper section */
#hero{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  padding-top:8rem;        /* clearance for fixed header (desktop) */
  padding-bottom:10rem;
  overflow:hidden;
}

/* Hero headline */
.hero-title{
  font-family:'Playfair Display',serif;
  letter-spacing:-0.5px;
  line-height:1.15;
  color:var(--hj-gold);
  font-size:clamp(2.5rem,6vw,5rem);       /* 40–64 px fluid */
  text-align:left;
}
#hero p {  text-align:left;}
#hero a {
font-family: 'Oleo Script', cursive;
  border: 1px solid var(--hj-gold);
  background: black;
  color: var(--hj-gold);
}
#hero a:hover {  border: 1px solid var(--hj-gold);background: var(--hj-gold); color:#000;}
 
/* Textured gradient overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background-image:
      linear-gradient(to bottom,
                      rgba(0,0,0,0.85) 0%,
                      rgba(0,0,0,0.55) 50%,
                      rgba(0,0,0,0.90) 100%),
      url('https://www.transparenttextures.com/patterns/black-paper.png');
  background-size:cover,180px;
  background-blend-mode:overlay;
  z-index:1;
}

.video-btn{
  position:relative;
  transition:transform .4s ease;
  border-color: var(--hj-gold);
}
.video-btn i{
  transition:transform .4s ease;
  color:var(--hj-gold);
}
.video-btn::before{
  content:"";
  position:absolute;
  inset:-6px;
  border:2px solid rgba(212,175,55,.45);
  border-radius:50%;
  opacity:0;
  transform:scale(.8);
  transition:opacity .4s ease, transform .4s ease;
}
.group:hover .video-btn{
  transform:scale(1.08);
}
.group:hover .video-btn i{
  transform:scale(1.15) rotate(3deg);
}
.group:hover .video-btn::before{
  opacity:1;
  transform:scale(1.25);
}

/* Elegant divider at the bottom of hero */
.hero-divider{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  z-index:2;
}
.hero-divider .chevi{
  position:absolute;
  left:50%;
  bottom: -5px;
  transform:translateX(-50%) rotate(180deg); /* point downward */
  background:
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgNTAiPjxwYXRoIGQ9Ik0xMDAgMGwtNTAgNTAtNTAtNTAiIGZpbGw9IiMwMDAwMDAiLz48L3N2Zz4=")
    no-repeat center/contain;
  width:150px;        /* make bigger here */
  height:75px;
  pointer-events:none;
  text-align:center;
  align-content: center;
}
.divider-line{
  flex:1;
  height:2px;
  background:linear-gradient(to right,
              rgba(212,175,55,0),
              var(--hj-gold));
}
.divider-line:last-child{
  background:linear-gradient(to left,
              rgba(212,175,55,0),
              var(--hj-gold));
}

/* ----------  RESPONSIVE  ---------- */
@media (max-width:1024px){
  /* Keep hero content below header on smaller screens */
  #hero{ padding-top:7.5rem; }
  /* In mobile menu we rely on Tailwind's .md:hidden / .hidden */
}


/* ======================================================
   CHRISTMAS COUNTDOWN – luxury split row
   ====================================================== */

/* Optional parallax hero background */
.cd-section{
  background:
   url('../images/count-down.jpg')
    center/cover fixed no-repeat;
  color:#fff;
  padding:6rem 0 7rem;                       /* added bottom padding */
  position:relative;
  overflow:hidden;
}
@media(max-width:767px){
  .cd-section{ background-attachment:scroll; } /* disable parallax on mobile */
}
/* dark overlay */
.cd-section::before{
  content:""; position:absolute; inset:0;
  background:rgba(0,0,0,0.75);
  pointer-events:none;
}

/* layout wrapper */
.cd-wrap{
  position:relative; z-index:1;
  max-width:70rem;              /* narrower core width */
  margin:0 auto; padding:0 2rem;
  display:grid; gap:2.8rem 3.5rem;
  grid-template-columns:1fr 1fr;
  align-items:center;
}
.cd-text{ max-width:28rem; }
.cd-right{
  display:flex; flex-direction:column; align-items:flex-start; gap:2rem;
}

/* text column */
.cd-date{
  font-size:.95rem; color:#c6c6c6; text-transform:uppercase; letter-spacing:.05em;
  margin-bottom:.4rem;
}
.cd-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.9rem,3.4vw,2.6rem);
  color:var(--hj-gold); margin-bottom:1rem;
}
.cd-lead{
  font-size:1.12rem; line-height:1.65; max-width:36rem; color:#e6e6e6;
}

/* timer column */
.cd-timer{
  display:flex; gap:1.2rem 2.2rem; flex-wrap:nowrap;
  justify-content:center;
}
.cd-item{
  display:flex; flex-direction:column; align-items:center;
  min-width:6.2rem; padding:1.1rem .4rem;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:.75rem;
  box-shadow:0 4px 12px rgba(0,0,0,0.35);
  backdrop-filter:blur(3px);
}
.cd-item span{
  font-size:2.4rem; font-weight:700; color:var(--hj-gold);
  letter-spacing:-0.5px; line-height:1;
}
.cd-item em{
  font-style:normal; margin-top:.25rem;
  font-size:.85rem; letter-spacing:.05em; text-transform:uppercase;
  color:#cfcfcf;
}

/* snowflake animation */
.cd-snow{
  position:absolute; right:6%; top:12%;
  font-size:3.2rem; color:var(--hj-gold);
  animation:twinkle 8s infinite ease-in-out;
  z-index:1; pointer-events:none;
}

@keyframes twinkle{
  0%,100%{ opacity:0; transform:scale(.6) rotate(0deg); }
  50%   { opacity:.9; transform:scale(1) rotate(45deg); }
}


/* ----------  Breakpoints ---------- */
@media(max-width:991px){               /* tablet */
  .cd-wrap{ grid-template-columns:1fr; text-align:center; }
  .cd-right{ align-items:center; }
  .cd-btn{ align-self:center; }
  .cd-timer{flex-wrap:wrap; justify-content:center; }
}
@media(max-width:639px){               /* mobile */
  .cd-item{ min-width:5.6rem; padding:.9rem .35rem; }
  .cd-item span{ font-size:1.9rem; }
  .cd-timer{ gap:1rem 1.6rem;}
  .cd-lead{ margin:0 auto; font-size:1rem; }
  .cd-item span{ font-size:2.1rem; }
}

/* mobile centering & smaller digits */
@media(max-width:639px){


}



/* ----------  Pitch section background ---------- */
#pitch{
  background:#000;
}
.pitch-overlay{
  position:absolute;
  inset:0;
  background-image:url('https://www.transparenttextures.com/patterns/dark-matter.png');
  opacity:0.15;                       /* subtle star texture */
}

/* ----------  Pitch title ---------- */
.pitch-title{
  font-family:'Playfair Display',serif;
  letter-spacing:-0.4px;
  line-height:1.2;
  color:var(--hj-gold);
  font-size:clamp(2rem,5vw,3rem);     /* 32–48 px fluid */
}

/* ----------  Icon styling within pitch ---------- */
#pitch i{
  display:inline-block;
  margin-bottom:0.75rem;
}
/* ======================================================
   SANTA EXPERIENCES  –  FULL‑WIDTH GRID (v3)
   ====================================================== */

/* ----------  Section Heading  ---------- */
.services-title{
  font-family:'Playfair Display',serif;
  letter-spacing:-0.4px;
  line-height:1.2;
  color:var(--hj-gold);
  font-size:clamp(2.25rem,5vw,3.25rem);      /* 36–52 px fluid */
}

/* ----------  Grid  ---------- */
.service-grid{ width:100%; }

/* ----------  Card Shell  ---------- */
.service-card{
  position:relative;
  height:30rem;                              /* 480 px */
  overflow:hidden;                           /* allows image zoom without scrollbars */
  box-shadow:0 12px 28px -6px rgba(0,0,0,0.45);
}

/* ----------  Background Image (shared placeholder URL)  ---------- */
.service-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform 1.2s ease;            /* smooth zoom */
}
.service-card:hover .service-bg{ transform:scale(1.12); }

.service-bg-2 {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:bottom;
  transition:transform 1.2s ease;            /* smooth zoom */
}
/* ----------  Dark Overlay  ---------- */
.service-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,
              rgba(0,0,0,0.60) 0%,
              rgba(0,0,0,0.55) 40%,
              rgba(0,0,0,0.90) 100%);
  z-index:1;
  transition:background .6s ease;
}
.service-card:hover .service-overlay{
  background:linear-gradient(180deg,
              rgba(0,0,0,0.45) 0%,
              rgba(0,0,0,0.45) 40%,
              rgba(0,0,0,0.85) 100%);
}

/* ----------  Inner Content  ---------- */
.service-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:1.15rem;
  padding:2.5rem;                            /* roomier */
  text-shadow:0 2px 4px rgba(0,0,0,0.45);    /* extra legibility */
}

/* Icon disc */
.service-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:3.5rem;
  height:3.5rem;
  border-radius:9999px;
  background:rgba(255,255,255,0.12);
  border:2px solid var(--hj-gold);
  color:var(--hj-gold);
  font-size:1.5rem;
  margin-bottom:0.25rem;
}

/* Heading & body */
.service-heading{
  font-size:2.5rem;
  font-weight:700;
  color:var(--hj-gold);
  line-height:1.25;
}
.service-text{
  font-size:1.12rem;
  color:#e6e6e6;
  line-height:1.5;
}
.service-content .btn-main {
max-width: fit-content;
text-align: center;
display: inline-block;
padding:.5rem 1.5rem;
}

/* CTA underline animation */
.service-cta{
  position:relative;
  align-self:flex-start;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  padding-bottom:3px;
}
.service-cta::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--hj-gold);
  transition:width .3s ease;
}
.service-cta:hover{
  color:var(--hj-gold);
}
.service-cta:hover::after{ width:100%; }

/* ----------  Responsive height tweak  ---------- */
@media(max-width:640px){
  .service-card{ height:22rem; }             /* 352 px */
}

/* ======================================================
   WHY CHOOSE  –  glass card + accent bar
   ====================================================== */

/* base section (keep your existing dark texture) */
.why-section{ position:relative; padding:7rem 0; }

.why-inner{
  max-width:78rem; margin:0 auto; padding:0 2rem;
  display:grid; gap:4rem 5rem; align-items:center;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

/* left column text */
.why-copy{ max-width:32rem; }
.why-btn{ display:inline-flex; align-items:center; gap:.6rem; }

/* ===== Why‑Choose polish ===== */

/* 1 ▸ Gold bar at top as well */
.why-section{
  border-top:3px solid var(--hj-gold);   /* already has bottom bar via next row */
}

/* 2 ▸ Left‑column typography */
.why-title{
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:clamp(1.9rem,3.4vw,2.6rem); /* 30–42 px fluid */
  color:var(--hj-gold);
  margin-bottom:1.1rem;
  line-height: 2.8rem;
}
.why-lead{
  font-size:1.12rem;
  line-height:1.65;
  color:#e6e6e6;
  margin-bottom:2.5rem;
}
.why-note{
  font-size:1rem;
  color:#c3c3c3;
  margin-bottom:2rem;
}

/* glass card */
.why-card{
  position:relative;
  padding:3.2rem 2.5rem 3.2rem 3.2rem;
  border-radius:1.25rem;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(6px);
  box-shadow:0 8px 24px rgba(0,0,0,0.45);
  overflow:hidden;
  /* fade‑in on scroll */
  opacity:0; transform:translateY(35px);
  animation:fadeUp 0.9s ease-out 0.3s forwards;
}
@keyframes fadeUp{
  to{ opacity:1; transform:none; }
}

/* vertical gold bar */
.why-card::before{
  content:""; position:absolute; left:0; top:0; bottom:0;
  width:6px; background:var(--hj-gold);
  border-top-left-radius:inherit; border-bottom-left-radius:inherit;
}

/* decorative image */
.why-img{
  position:absolute; right:-60px; bottom:-20px;
  width:230px; opacity:.65; pointer-events:none;
}

/* benefit list inside card */
.why-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:1.35rem; }
.why-list li{
  display:flex; gap:1rem; font-size:1.05rem; line-height:1.6; color:#e0e0e0;
}
.why-list i{ flex:0 0 auto; font-size:1.4rem; color:var(--hj-gold); margin-top:.15rem; }

/* tablet / mobile tweaks */
@media(max-width:991px){
  .why-img{ display:none; }
}
@media(max-width:639px){
  .why-inner{ gap:3rem 2rem; }
  .why-card{ padding:2.8rem 2rem; }
}

/* ======================================================
   TESTIMONIALS – luxury carousel  (final polish)
   ====================================================== */
.t-section-page{
  padding:5rem 0;               /* extra bottom padding for dots */
  position:relative;
  overflow:hidden;
}
.t-section-page::before{
  content:""; position:absolute; inset:0;
  background:rgba(0,0,0,0.75);
  pointer-events:none;
}
/* Grid container for 2 columns with consistent gaps */
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .t-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 40px; /* row gap and column gap */
  }
}

/* Each review box */
.t-review {
  box-shadow: 0 14px 32px -6px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* Section & sparkle backdrop */
.t-section{
  background:url('../images/reviews-1.jpg') center/cover fixed no-repeat;
  padding:5rem 0;               /* extra bottom padding for dots */
  border-top:3px solid var(--hj-gold);
  position:relative;
  overflow:hidden;
}
.t-section::before{
  content:""; position:absolute; inset:0;
  background:rgba(0,0,0,0.75);
  pointer-events:none;
}

/* Wrapper & heading */
.t-wrap{ max-width:78rem; margin:0 auto; padding:0 2rem;position:relative; }
.t-title{
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:clamp(1.9rem,3.6vw,2.6rem);
  color:var(--hj-gold);
  text-align:center; margin-bottom:1.2rem;
}
.t-intro{
  text-align:center; color:#cfcfcf; font-size:1.05rem;
  margin:0 auto 3.2rem; max-width:50rem;
}

/* Swiper viewport */
.t-swiper{ width:100%; }

/* Make slides equal height */
.t-swiper .swiper-wrapper{
  display:flex;
  align-items:stretch;          /* stretch children to tallest */
}
.t-swiper .swiper-slide{
  display:flex;                 /* allow child to stretch */
  height:auto;
}
.t-swiper .swiper-slide > .t-card{
  width:100%;
  height:100%;                  /* card fills slide height */
}

/* Testimonial card */
.t-card{
  background:#0e0e0e;
  padding:2.5rem 2.25rem 2rem;
  box-shadow:0 8px 20px -4px rgba(0,0,0,0.55);
  min-height:24rem;
  display:flex; flex-direction:column; gap:1.75rem;
  transition:transform .4s ease, box-shadow .4s ease;
}
.swiper-slide-active .t-card,
.swiper-slide-next   .t-card{
  transform:translateY(-6px);
  box-shadow:0 14px 32px -6px rgba(0,0,0,0.6);
}

/* Logo / placeholder */
.t-media img{
  max-width:140px; max-height:80px; object-fit:contain;
  filter:grayscale(1) brightness(1.05);
}

/* Quote */
.t-quote{
  position:relative; flex:1;
  font-size:1.05rem; line-height:1.65; color:#e4e4e4;
  padding-left:2.1rem;
}
.t-quote::before{
  content:"\f10d"; font-family:"Font Awesome 6 Free"; font-weight:900;
  position:absolute; left:0; top:0.1rem;
  font-size:2rem; color:var(--hj-gold); opacity:0.18;
}

/* Footer */
.t-footer{ display:flex; align-items:center; gap:1rem; margin-top:1rem; }
.t-avatar{
  width:3rem; height:3rem; border-radius:50%;
  background:rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:var(--hj-gold); font-size:1.35rem;
}
.t-name{ font-weight:600; color:#fff; }
.t-company{ font-size:.9rem; color:#c2c2c2; }

/* Pagination dots */
#testimonials .t-pager{ position:relative; text-align:center; margin-top:3rem; }
.t-pager .swiper-pagination-bullet{
  width:11px; height:11px;
  background:#544624;                 /* muted gold for inactive */
  opacity:1; margin:0 5px; transition:background .25s;
}
.t-pager .swiper-pagination-bullet-active{
  background:var(--hj-gold);
}

/* Call‑to‑action buttons */
.t-cta{
  margin-top:2.75rem;
  display:flex; justify-content:center; gap:1.25rem;
}

/* Mobile tweaks */
@media(max-width:639px){
  .t-card{ padding:2rem 1.7rem 1.75rem; }
  .t-quote{ font-size:1rem; }
  .t-pager{ margin-top:2.5rem; }
  .t-cta{ flex-direction:column; gap:1rem; }
}

/* ======================================================
   GALLERY – grid, hover zoom, gold accents
   ====================================================== */
.g-section-page{
  background:#000;
  padding:5rem 0;
  position:relative;
}
.g-section-page::before{
  content:""; position:absolute; inset:0;
  background:url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
  opacity:0.06; pointer-events:none;
}

.g-section{
  background:#000;
  padding:5rem 0;
  border-top:3px solid var(--hj-gold);
  position:relative;
}
.g-section::before{
  content:""; position:absolute; inset:0;
  background:url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
  opacity:0.06; pointer-events:none;
}

.g-wrap{ max-width:90rem; margin:0 auto; padding:0 2rem; }

.g-title{
  font-family:'Playfair Display',serif;
  font-weight:700; color:var(--hj-gold);
  text-align:center;
  font-size:clamp(1.9rem,3.6vw,2.6rem);
}
.g-tag{
  text-align:center; color:#cfcfcf; font-size:1.05rem;
  margin:0 auto 3rem; max-width:45rem;
}

/* CSS grid (3‑col desktop) */
.g-grid{
  display:grid;
  gap:1rem;
  grid-template-columns:repeat(3,1fr);   /* 3 up on ≥ 1024 px */
}
/* 2 columns on tablets */
@media(max-width:991px){
  .g-grid{ grid-template-columns:repeat(2,1fr); }
}

/* 1 column on mobile */
@media(max-width:639px){
  .g-grid{ grid-template-columns:1fr; }
}

/* Thumb wrapper */
.g-grid .item {
  position:relative; overflow:hidden;
  border-radius:0; aspect-ratio: 4 / 3;
}
.g-grid img{
  width:100%; height:100%; display:block;
  transition:transform .6s ease;
  object-fit: cover;
     object-position: center;
}
.g-grid .item a:hover img{ transform:scale(1.08); }

/* dark overlay + holly icon */
.g-hover{
  position:absolute; inset:0;
  background:rgba(0,0,0,0.25);
  opacity:0; display:flex; align-items:center; justify-content:center;
  transition:opacity .6s;
  font-size:2rem; color:var(--hj-gold);
}
.g-grid a:hover .g-hover{ opacity:1; }

/* Instagram CTA button */
.g-cta{ text-align:center; margin-top:3rem;}

/* ======================================================
   FINAL CTA  –  parallax banner, sparkle icon, gold accents
   ====================================================== */

/* Parallax hero */
.cta-section{
  position:relative;
  min-height:40vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  border-top:3px solid var(--hj-gold);
  /* Parallax background */
  background:url('../images/last-cta.jpg')
             center / cover fixed no-repeat;
  padding:7rem 0 0;          /* no bottom padding */
}

/* Dark gold‑tinted overlay via pseudo */
.cta-section::before{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.45) 40%,
      rgba(0,0,0,0.88) 100%);
  z-index:1;
}

.cta-wrap{
  position:relative; z-index:2;
  text-align:center;
  max-width:56rem; padding:2rem 0 5rem 0;
  display:flex; flex-direction:column; gap:1.8rem;
}

/* Headline & copy */
.cta-title{
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:clamp(2rem,4.3vw,3rem);
  color:var(--hj-gold);
  letter-spacing:-0.4px;
}
.cta-lead{
  font-size:1.12rem; line-height:1.65;
  color:#e6e6e6; max-width:44rem; margin:0 auto;
}

/* Sparkle icon animation */
.cta-sparkle{
  position:absolute; top:15%; left:50%;
  transform:translateX(-50%);
  font-size:2.4rem; color:var(--hj-gold);
  animation:spark 5s infinite ease-in-out;
  z-index:2;
}
@keyframes spark{
  0%,100%{ opacity:0; transform:translate(-50%,0) scale(0.6) rotate(0deg); }
  50%    { opacity:1; transform:translate(-50%, -0.8rem) scale(1) rotate(35deg); }
}

/* Mobile tweaks */
@media(max-width:639px){
  .cta-lead{ font-size:1rem; }
  .cta-sparkle{ font-size:2rem; }
}


/* ======================================================
   FOOTER  –  Holly Jolly Co.  (full, final stylesheet)
   ====================================================== */

/* ----------  Shell ---------- */
.ftr{
  background:#000;
  border-top:3px solid var(--hj-gold);
  color:#cfcfcf;
  font-size:0.95rem;
}
.ftr-wrap{
  max-width:78rem;
  margin:0 auto;
  padding:4.5rem 2rem 1.5rem;
  display:flex;
  flex-direction:column;
  gap:2.5rem;
  text-align:center;
}

/* ----------  Logo / Brand ---------- */
.ftr-logo{
  font-family: 'Oleo Script Swash Caps', cursive;
  font-size:1.8rem;
  font-weight:700;
  color:var(--hj-gold);
  letter-spacing:-0.5px;
  display:block;
  margin:0 auto 1.8rem;
}

/* ----------  SEO Strapline ---------- */
.ftr-strap{
  font-size:1.05rem;
  line-height:1.6;
  max-width:48rem;
  margin:0 auto;
  color:#e6e6e6;
}
.ftr-highlight{ color:var(--hj-gold); }

/* inline keyword links */
.ftr-tags{
  font-size:.95rem;
}
.ftr-tags a{
  color:#cfcfcf; transition:color .25s;
  font-weight:600; letter-spacing:.02em;
}
.ftr-tags a:hover{ color:var(--hj-gold); }

/* ----------  Social Icons ---------- */
.ftr-social{
  display:flex;
  justify-content:center;
  gap:1.1rem;
}
.ftr-social a{
  width:2.75rem;
  height:2.75rem;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  transition:transform .3s, background .3s;
}
.ftr-social a:hover{
  background:var(--hj-gold);
  color:#000;
  transform:scale(1.1);
}
.ftr-social i{ font-size:1.15rem; }

/* ----------  Quick‑link Navigation ---------- */
.ftr-nav{
  display:flex;
  flex-wrap:wrap;
  gap:1.5rem;
  justify-content:center;
  font-weight:600;
  letter-spacing:0.02em;
}
.ftr-nav a{
  color:#cfcfcf;
  transition:color .25s;
}
.ftr-nav a:hover{ color:var(--hj-gold); }

/* ----------  Copyright Bar ---------- */
.ftr-copy{
  background:#0b0b0b;
  text-align:center;
  padding:1rem 2rem;
  font-size:0.85rem;
  color:#888;
}

/* ----------  Responsive Tweaks ---------- */
@media(max-width:639px){
  .ftr-wrap{ padding:4rem 1.5rem 3rem; }
  .ftr-strap{ font-size:1rem; }
  .ftr-social a{ width:2.4rem; height:2.4rem; }
}

/* ======================================================
   VIDEO POPUP
   ====================================================== */

/* Trigger button (inherits site style) */
.vid-btn{
  display:inline-flex; align-items:center; gap:.6rem;
  color:#000; font-weight:600; font-size:.95rem;
  padding:.9rem 2.2rem; border-radius:9999px; text-transform:uppercase;
  letter-spacing:.04em; transition:background .25s;
}
.vid-btn i{ font-size:1.15rem; }

/* Overlay backdrop */
.vid-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.8);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .4s ease;
  z-index:9999;
}

/* Dialog */
.vid-dialog{
  position:relative; width:70%; max-width:900px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  border-radius:1rem; box-shadow:0 20px 40px rgba(0,0,0,.6);
  backdrop-filter:blur(8px);
  overflow:hidden; transform:translateY(40px); transition:transform .45s ease;
}
.vid-dialog video{ display:block; width:100%; height:auto; }

/* Close button */
.vid-close{
  position:absolute; top:.8rem; right:.8rem;
  background:rgba(0,0,0,.4); border:none; border-radius:50%;
  width:2.4rem; height:2.4rem; color:var(--hj-gold);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .3s;
}
.vid-close:hover{ background:rgba(0,0,0,.6); }

.vid-close i{ font-size:1.3rem; }

/* ── Show state ─────────────────── */
.vid-overlay.is-active{
  opacity:1; visibility:visible;
}
.vid-overlay.is-active .vid-dialog{
  transform:none;
}

/* Mobile */
@media(max-width:639px){
  .vid-dialog{ width:90%; }
}

/* ======================================================
   CLASSY SNOW LAYER  –  attach with .has-snow
   ====================================================== */

/* prepare row */
.has-snow{ position:relative; overflow:hidden; }

/* two staggered layers */
.has-snow::before,
.has-snow::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  --flake-color:var(--snow-color,#ffffff);
}

/* front layer */
.has-snow::before{
  background-image:radial-gradient(var(--flake-color) 1.2px, transparent 1.2px);
  background-size:200px 200px;                   /* sparse dot grid   */
  background-position:0 0;
  animation:snow-down var(--speed-front,30s) linear infinite;
  opacity:var(--opacity-front,.45);
}

/* rear layer – slower, blurrier */
.has-snow::after{
  background-image:radial-gradient(var(--flake-color) 1.6px, transparent 1.6px);
  background-size:220px 220px;
  background-position:0 0;
  animation:snow-down var(--speed-back,55s) linear infinite reverse;
  opacity:var(--opacity-back,.25);
  filter:blur(1px);
}

/* move the tile downwards */
@keyframes snow-down{
  0%   { background-position:0 -100%; }
  100% { background-position:0 100%;  }
}

/* ======================================================
   ABOUT PAGE  –  FULL, CLEAN STYLESHEET
   (Replace your entire “about” CSS block with this)
   ====================================================== */

/* ----------  Basic helpers ---------- */
.container{ max-width:78rem; margin:0 auto; padding:0 2rem; }
.sec-h{
  font-family:'Playfair Display',serif;
  font-weight:700;
  color:var(--hj-gold);
  font-size:clamp(1.9rem,3.4vw,2.6rem);
  margin-bottom:1.2rem;
}
.align-center{ text-align:center; }

/* ======================================================
   HERO  – About-page banner (keep as-is)
   ====================================================== */
.about-hero{
  position:relative;
  padding:7rem 0 0;
  border-top:3px solid var(--hj-gold);
}
.about-bg{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}
.about-overlay{ position:absolute; inset:0; background:rgba(0,0,0,.78); }

.hero-inner{
  position:relative; z-index:1;
  text-align:center; padding-bottom:6rem;
}
.about-label{
  font-size:.9rem; color:#cfcfcf; text-transform:uppercase;
  letter-spacing:.08em; margin-bottom:.6rem;
}
.about-h1{
  font-family:'Playfair Display',serif;
  font-weight:700; color:var(--hj-gold);
  font-size:clamp(2.3rem,4.6vw,3.2rem);
  margin-bottom:1rem;
}
.about-tag{
  color:#e6e6e6; font-size:1.15rem;
  max-width:42rem; margin:0 auto;
}

/* Chevron divider */
.hero-divider{
  position:absolute; bottom:0; left:0;
  width:100%; height:85px; display:flex;
  align-items:center; justify-content:center; pointer-events:none;
}
.hero-divider .divider-line{
  flex:1; height:1px;
  background:linear-gradient(to right,rgba(212,175,55,0),var(--hj-gold));
}
.hero-divider .divider-line:last-child{
  background:linear-gradient(to left,rgba(212,175,55,0),var(--hj-gold));
}
.chevi{
  position:relative; width:150px; height:75px;
  background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCAxMDAgNTAiPjxwYXRoIGQ9Ik0wIDAsNTAgNTAsMTAwIDAiIGZpbGw9IiMwMDAwMDAiLz48L3N2Zz4=") no-repeat center/contain;
  transform:translateY(-1px);
}

/* ======================================================
   HERO  – keep from earlier (unchanged)
   ====================================================== */
.about-hero{
  position:relative;
  padding:7rem 0 0;
  border-top:3px solid var(--hj-gold);
}
.about-overlay{ position:absolute; inset:0; background:rgba(0,0,0,.78); }

.hero-inner{ position:relative; z-index:1; text-align:center; padding-bottom:6rem; }
.about-label{
  font-size:.9rem; color:#cfcfcf; text-transform:uppercase;
  letter-spacing:.08em; margin-bottom:.6rem;
}
.about-h1{
  font-family:'Playfair Display',serif; font-weight:700; color:var(--hj-gold);
  font-size:clamp(2.3rem,4.6vw,3.2rem); margin-bottom:1rem;
}
.about-tag{ color:#e6e6e6; font-size:1.15rem; max-width:42rem; margin:0 auto; }

.hero-divider{
  position:absolute; bottom:0; left:0; width:100%; height:85px;
  display:flex; align-items:center; justify-content:center; pointer-events:none;
}
.hero-divider .divider-line{
  flex:1; height:1px;
  background:linear-gradient(to right,rgba(212,175,55,0),var(--hj-gold));
}
.hero-divider .divider-line:last-child{
  background:linear-gradient(to left,rgba(212,175,55,0),var(--hj-gold));
}
.chevi{
  position:relative; width:150px; height:75px;
  background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCAxMDAgNTAiPjxwYXRoIGQ9Ik0wIDAsNTAgNTAsMTAwIDAiIGZpbGw9IiMwMDAwMDAiLz48L3N2Zz4=") no-repeat center/contain;
  transform:translateY(-1px);
}

/* ======================================================
   ABOUT CORE  – elegant split panels (final)
   ====================================================== */
.about-core{
  background:#000;
  padding:7rem 0 6rem;
}

/* panel wrapper */
.core-panel{
  max-width:78rem; margin:0 auto 6rem; padding:0 2rem;
  display:grid; gap:4rem 6rem;
  grid-template-columns:repeat(12,1fr);
  align-items:center;
}
.core-panel:last-child{ margin-bottom:0; }

/* 2nd panel (image right, text left) */
.core-panel:nth-of-type(2) .core-media{ grid-column:7 / -1; }
.core-panel:nth-of-type(2) .core-copy { grid-column:1 / span 6; }

/* default positions for 1st panel */
.core-media{ grid-column:1 / span 6; position:relative; isolation:isolate; }
.core-copy { grid-column:7 / -1; position:relative; }

/* media frame */
.core-media::before{
  content:""; position:absolute; inset:0; z-index:-1;
  border:3px solid var(--hj-gold); border-radius:.85rem; translate:8px 8px;
}
.core-media img{
  width:100%; border-radius:.85rem; display:block;
  box-shadow:0 20px 40px rgba(0,0,0,.55);
}

/* copy styles */
.core-title{
  font-family:'Playfair Display',serif; font-weight:700; color:#fff;
  font-size:clamp(1.9rem,3.4vw,2.3rem);
  margin-bottom:1.1rem; position:relative;
}
.core-title::after{
  content:""; position:absolute; left:0; bottom:-.45rem;
  width:64px; height:2px; background:var(--hj-gold);
}
.core-copy p{
  font-size:1.15rem; line-height:1.75; color:#dcdcdc;
  margin-bottom:1.35rem;
}

/* optional glass backdrop */
.glass{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.13);
  backdrop-filter:blur(6px);
  padding:2.6rem 2.3rem; border-radius:.8rem;
  box-shadow:0 10px 28px rgba(0,0,0,.5);
}

/* ----------------  Responsive  ---------------- */
@media(max-width:991px){
  .core-panel{ grid-template-columns:1fr; gap:3.5rem; }

  /* order: text first, image second */
  .core-copy{ order:-1; }

  .core-media, .core-copy{ grid-column:1 / -1; }
  .core-title::after{ left:0; transform:none; }

  /* keep desktop left-aligned text on tablet */
  .core-copy, .glass{ text-align:left; padding:2.4rem 2rem; }
}

@media(max-width:639px){
  .core-copy, .glass{ text-align:center; padding:2.2rem 1.6rem; }
  .core-title::after{ left:50%; transform:translateX(-50%); }
  .core-copy p{ font-size:1.02rem; }
  .core-media img{ width:100%; }
}

/* ======================================================
   CHRISTMAS SPECIALITIES – polished w/ over-hang borders
   ====================================================== */
.spec-sec{
  background:#000;
  padding:6.5rem 0;
  border-top:3px solid var(--hj-gold);
}
.spec-wrap{ max-width:78rem; margin:0 auto; padding:0 2rem; }

/* ----------  Heading  ---------- */
.spec-head{ text-align:center; margin-bottom:4.4rem; }
.spec-h2{
  font-family:'Playfair Display',serif; font-weight:700; color:var(--hj-gold);
  font-size:clamp(1.9rem,3.4vw,2.5rem); padding-bottom:.8rem; position:relative;
}
.spec-h2::after{
  content:""; position:absolute; left:50%; transform:translateX(-50%);
  bottom:0; width:64px; height:2px; background:var(--hj-gold);
}
.spec-tag{ color:#cfcfcf; font-size:1.05rem; margin-top:1.8rem; }

/* ----------  Grid  ---------- */
.spec-grid{
  display:grid; gap:2.4rem;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

/* ----------  Card  ---------- */
.spec-card{
  background:#0e0e0e; padding:2.6rem 2rem;
  border-radius:.9rem; position:relative; z-index:1;
  box-shadow:0 10px 28px rgba(0,0,0,.45);
}

/* gold top & bottom with slight over-hang */
/* gold bars with centred over-hang */
.spec-card::before,
.spec-card::after{
  content:""; position:absolute; left:0; right:0; height:3px;
  background:var(--hj-gold);
}

.spec-card::before{          /* top bar – lifts above card */
  top:-4px;                  /* hangs 4 px upward   */
  border-top-left-radius:.9rem;
  border-top-right-radius:.9rem;
}

.spec-card::after{           /* bottom bar – drops below */
  bottom:-4px;               /* hangs 4 px downward */
  border-bottom-left-radius:.9rem;
  border-bottom-right-radius:.9rem;
}

/* ----------  Icon & Title ---------- */
.spec-ic{
  font-size:2rem; color:var(--hj-gold);
  margin-bottom:1.25rem; display:block;
}
.spec-title{
  color:#fff; font-weight:600; font-size:1.2rem;
  margin-bottom:1.6rem; position:relative;
}
.spec-title::after{
  content:""; position:absolute; left:0; bottom:-.4rem;
  width:46px; height:2px; background:var(--hj-gold);
}
.spec-card p{ color:#d0d0d0; font-size:1.02rem; line-height:1.65; }

/* ----------  Responsive ---------- */
@media(max-width:639px){
  .spec-card{ padding:2.2rem 1.6rem; }
  .spec-head{ margin-bottom:3.5rem; }
  .spec-h2::after{ left:50%; transform:translateX(-50%); }
}

/* ----------  Icon fallback (ensures FA-Free) ---------- */
.fa-people-group:before{ content:"\f0c0"; }   /* fallback to 'users' if needed */

/* ======================================================
   DISTINCTIVE APPROACH  –  split bullets + narrative
   ====================================================== */
.approach-sec{
  background:#101010;
  padding:6.5rem 0;
  border-top:3px solid var(--hj-gold);
}

.approach-wrap{
  max-width:78rem; margin:0 auto; padding:0 2rem;
  display:grid; gap:4rem 6rem;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  align-items:center;
}

/* ----------  bullet list ---------- */
.approach-list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:1.35rem;
}
.approach-list li{
  color:#e2e2e2; font-size:1.05rem; line-height:1.65;
  display:flex; gap:.85rem;
}
.approach-list i{
  color:var(--hj-gold); font-size:1.25rem; margin-top:.15rem;
}

/* ----------  narrative card ---------- */
.approach-copy{
  position:relative; padding:3rem 2.4rem 3rem 2.8rem;
  border-left:6px solid var(--hj-gold);
  box-shadow:0 10px 28px rgba(0,0,0,.5);
  border-radius:.9rem;
}
.approach-h{
  font-family:'Playfair Display',serif; font-weight:700; color:#fff;
  font-size:clamp(1.9rem,3.4vw,2.4rem);
  margin-bottom:1rem; position:relative;
}
.approach-h::after{
  content:""; position:absolute; left:0; bottom:-.45rem;
  width:64px; height:2px; background:var(--hj-gold);
}
.approach-copy p{
  color:#d0d0d0; font-size:1.08rem; line-height:1.75;
  margin-top:2rem;
}

/* glass effect */
.glass{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(6px);
}

/* ----------  responsive ---------- */
@media(max-width:991px){
  .approach-wrap{ grid-template-columns:1fr; gap:3.8rem; }
  .approach-copy{ padding:2.6rem 2rem; text-align:center; }
  .approach-h::after{ left:50%; transform:translateX(-50%); }
  .approach-list li{ justify-content:center; text-align:center; }
}
@media(max-width:639px){
  .approach-list i{ font-size:1.1rem; }
  .approach-copy p{ font-size:1.02rem; }
}

/* ------------------------------------------------------
   Approach row tweaks  –  two-column bullet grid
   ------------------------------------------------------ */
.approach-row .why-list{
  display:grid; gap:1.6rem 2.2rem;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

/* spacing & layout inside each item */
.approach-row .why-list li{
  display:flex; gap:.9rem; align-items:flex-start;
}
.approach-row .why-list i{
  font-size:1.3rem; color:var(--hj-gold); margin-top:.15rem;
}
.approach-row .why-snippet{
  display:block; font-weight:400; color:#cfcfcf; line-height:1.55;
  margin-top:.15rem;
}

/* ensure mobile stacks nicely */
@media(max-width:639px){
  .approach-row .why-list{ grid-template-columns:1fr; }
  .approach-row .why-list li{ justify-content:center; text-align:center; }
}

/* ======================================================
   BOOKING  –  form layout & fields
   ====================================================== */
.booking-sec{
  background:#000;
  padding:6.5rem 0;
}
.booking-wrap{
  max-width:58rem;
  margin:0 auto;
  padding:0 2rem;
}

/* intro paragraph */
.booking-intro{
  color:#dcdcdc;
  font-size:1.1rem;
  text-align:center;
  margin-bottom:3.5rem;
}

/* -------------  FORM GRID  ------------- */
.booking-form form,          /* Seblod form root */
.booking-form .cck_form_area{ /* fallback */
  display:grid;
  gap:2rem 2.5rem;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

/* force single column for message + submit */
.booking-form .cck_fieldtype_textarea,
.booking-form .cck_fieldtype_submit{ grid-column:1 / -1; }

/* labels */
.booking-form label{
  display:block;
  font-weight:600;
  color:#fff;
  margin-bottom:.4rem;
  font-size:.97rem;
}

/* inputs, selects, textarea */
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form textarea,
.booking-form select,
.booking-form input[type="date"]{
  width:100%;
  padding:.9rem 1rem;
  background:#000;
  border:2px solid rgba(255,255,255,.15);
  border-radius:.4rem;
  color:#e6e6e6;
  font-size:1rem;
  transition:border-color .25s, box-shadow .25s;
}
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus{
  border-color:var(--hj-gold);
  box-shadow:0 0 0 2px rgba(212,175,55,.35);
  outline:none;
}

/* radio / checkbox lists */
.booking-form .cck_field_checkbox label{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-right:1.4rem;
  color:#cfcfcf;
  font-weight:500;
}
.booking-form input[type="checkbox"]{
  accent-color:var(--hj-gold);
  width:1.1rem; height:1.1rem;
}

/* submit button */
.booking-form input[type="submit"],
.booking-form button[type="submit"]{
  display:inline-flex; gap:.6rem;
  justify-content:center; align-items:center;
  background:#fff; color:#000;
  font-weight:700; font-size:1rem;
  padding:1rem 2.8rem;
  border:none; border-radius:9999px;
  cursor:pointer; text-transform:uppercase;
  transition:background .25s;
}
.booking-form input[type="submit"]:hover{
  background:#eaeaea;
}

/* -------------  Responsive tweaks  ------------- */
@media(max-width:639px){
  .booking-intro{ font-size:1.02rem; }
  .booking-form form{ grid-template-columns:1fr; }
}

/* ======================================================
   BOOKING FORM  –  enforce two-column grid + inline radio
   ====================================================== */

/* exact 2-column grid on ≥640 px */
.booking-grid{
  display:grid;
  gap:2rem 2.5rem;
  grid-template-columns:repeat(2,1fr);   /* ALWAYS two cols */
}

/* full-width items */
.booking-grid .span-2{ grid-column:1 / -1; }

/* centre submit row */
.text-center{ text-align:center; }

/* mobile: single column */
@media(max-width:639px){
  .booking-grid{ grid-template-columns:1fr; }
}

/* ----------  inline radio group ---------- */
label > i.fa-solid {
  pointer-events: none; /* ensures icon doesn't block click */
}

/* Main container background */
.calendar-container {
  background-color: #111 !important;
  border-radius: 1rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); /* Gold glow */
}

/* Remove white table background */
.calendar-container table {
  background-color: transparent !important;
  color: #fff;
}

/* Day cells */
.calendar-container td.day {
  color: #fff;
  transition: background 0.3s ease;
}

/* Selected day */
.calendar-container td.day.selected {
  background-color: #D4AF37 !important;
  color: #000 !important;
  border-radius: 6px;
}

/* Hovered day */
.calendar-container td.day:hover {
  background-color: rgba(212, 175, 55, 0.15);
  border-radius: 6px;
}

/* Navigation buttons and arrows */
.calendar-container .calendar-header a {
  color: #D4AF37 !important;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Header title (month & year) */
.calendar-container .calendar-header .title span {
  color: #fff;
  font-weight: bold;
}

/* Time selectors */
.calendar-container .time select {
  background-color: #222;
  color: #fff;
  border: 1px solid #333;
  border-radius: 0.25rem;
}

/* Clear/Close buttons */
.calendar-container .btn {
  background-color: #222;
  color: #D4AF37;
  border: 1px solid #D4AF37;
  padding: 0.4rem 0.75rem;
  margin: 0.5rem;
  border-radius: 0.375rem;
  transition: background 0.3s;
}
.calendar-container .btn:hover {
  background-color: #D4AF37;
  color: #111;
}


/* =======================================================
   The Holly Jolly Company — Contact
   Font Awesome version; fully scoped under .hjc-contact
   ======================================================= */

.hjc-contact, .hjc-contact * { box-sizing: border-box; }

.hjc-contact {
  --ink:#f4f2eb;            /* primary text */
  --muted:#cfc7ba;          /* secondary text */
  --bg-1:#0b0f11;           /* page backdrop */
  --panel:#111517;          /* card bg */
  --panel-2:#0c1113;        /* subtle gradient */
  --gold:#d6b36a;           /* brushed gold */
  --gold-2:#e7d2a1;         /* soft gold highlight */
  --stroke:rgba(214,179,106,0.34);
  --stroke-soft:rgba(214,179,106,0.18);
  --ring:rgba(214,179,106,0.28);
  color:var(--ink);
}

/* Container */
.hjc-contact .hjc-container {
  width:min(1180px, 92%);
  margin-inline:auto;
  padding:50px 0 60px;
}

/* Grid: left wider, right offset */
.hjc-contact .hjc-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap:28px;
  align-items:start;
}

/* Cards */
.hjc-contact .hjc-card{
  background:linear-gradient(180deg, var(--panel), var(--panel-2));
  border:1px solid var(--stroke);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  overflow:hidden;
}

/* Right column slight offset (can be removed if undesired) */

/* Form header */
.hjc-contact .hjc-form-head{ padding:22px 22px 0 }
.hjc-contact .hjc-form-kicker{
  color:var(--gold); text-transform:uppercase; letter-spacing:.16em;
  font-weight:700; font-size:.82rem; margin-bottom:.35rem;
}
.hjc-contact .hjc-form-title{
  font-family:"Cormorant Garamond", ui-serif, Georgia, serif;
  font-size:clamp(28px, 3.8vw, 40px);
  font-weight:600; margin:0 0 .35rem;
}
.hjc-contact .hjc-form-sub{ color:#ece8de; margin:0 0 14px; line-height:1.55; }

/* Booking CTA + badge */
.hjc-contact .hjc-form-cta{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding-bottom:8px;
}
.hjc-contact .hjc-btn{
  display:inline-flex; align-items:center; gap:10px; text-decoration:none; cursor:pointer;
  font-weight:800; padding:14px 18px; min-width:210px; border-radius:999px; border:1px solid var(--gold);
  transition:transform .15s ease, box-shadow .15s ease;
}
.hjc-contact .hjc-btn i{ font-size:0.95em }
.hjc-contact .hjc-btn--primary{
  color:#0b0d0f; background:linear-gradient(180deg, var(--gold), var(--gold-2));
  box-shadow:0 10px 24px rgba(214,179,106,0.26);
}
.hjc-contact .hjc-btn--primary:hover{ transform:translateY(-1px) }
.hjc-contact .hjc-btn--ghost{ color:var(--gold); background:transparent; border-color:var(--gold) }

.hjc-contact .hjc-badge{
  display:inline-flex; align-items:center; gap:8px; padding:8px 12px;
  border:1px dashed var(--stroke); border-radius:999px; color:#efeae0;
  background:linear-gradient(180deg, rgba(214,179,106,.08), rgba(214,179,106,.02));
  font-weight:700; font-size:.9rem;
}
.hjc-contact .hjc-badge i{ color:var(--gold) }

/* Form */
.hjc-contact .hjc-card--form .hjc-form{ padding:12px 22px 22px }
.hjc-contact .hjc-form-grid{
  display:grid; grid-template-columns:1fr 1fr; gap: 20px 14px;
}
.hjc-contact .hjc-field--full{ grid-column:1 / -1 }
@media (max-width:780px){ .hjc-contact .hjc-form-grid{ grid-template-columns:1fr } }

.hjc-contact .hjc-label{ display:block; font-weight:700; font-size:.94rem; margin:6px 0 8px; color:#efeae0 }
.hjc-contact .hjc-input{
  width:100%; padding:14px; border-radius:14px; outline:none;
  color:#f2f2f2; background:#0d1214; border:1px solid var(--gold);
  transition:border .15s ease, box-shadow .15s ease;
}
.hjc-contact .hjc-input::placeholder{ color:#a7afb2 }
.hjc-contact .hjc-input:focus{ border-color:var(--gold); box-shadow:0 0 0 4px var(--ring) }
.hjc-contact textarea.hjc-input{ min-height:160px; resize:vertical }

.hjc-contact .hjc-inline{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px }
@media (max-width:980px){ .hjc-contact .hjc-inline{ grid-template-columns:1fr 1fr } }
@media (max-width:620px){ .hjc-contact .hjc-inline{ grid-template-columns:1fr } }

.hjc-contact .hjc-check{ display:flex; gap:10px; align-items:flex-start; color:#ece8de; font-size:.95rem }
.hjc-contact .hjc-actions{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:6px }
@media (max-width:780px){ .hjc-contact .hjc-btn{ width:100%; justify-content:center } }

/* Details list (right column) */
.hjc-contact .hjc-card--details{ padding:18px 18px 20px }
.hjc-contact .hjc-list{
  list-style:none; margin:0 0 14px; padding:0; display:grid; gap:12px;
}
.hjc-contact .hjc-list__item{
  display:flex; gap:14px; align-items:flex-start; padding:12px 14px;
  border:1px solid var(--stroke-soft); border-radius:14px;
  background:linear-gradient(180deg, rgba(214,179,106,.03), rgba(214,179,106,.00));
}
.hjc-contact .hjc-ico{
  color:var(--gold); width:22px; height:22px; flex:0 0 22px; display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.hjc-contact .hjc-list a{ color:var(--ink); text-decoration:underline; text-underline-offset:2px }
.hjc-contact .hjc-list a:hover{ opacity:.9 }

/* Hours */
.hjc-contact .hjc-hours{
  display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:10px;
}
@media (max-width:640px){ .hjc-contact .hjc-hours{ grid-template-columns:1fr } }
.hjc-contact .hjc-hours__row{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 12px; border:1px solid var(--stroke-soft); border-radius:12px;
  color:var(--ink);
}
.hjc-contact .hjc-hours__row i{ color:var(--gold); margin-right:6px }

/* Full-width map */
.hjc-contact .hjc-map{
  position:relative; margin-top:30px; border-radius:16px; overflow:hidden;
  border:1px solid var(--stroke); box-shadow:0 10px 26px rgba(0,0,0,.36);
}
.hjc-contact .hjc-map iframe{ width:100%; height:340px; border:0; display:block }
.hjc-contact .hjc-map__cta{
  position:absolute; right:12px; bottom:12px;
 text-decoration:none; border-radius:999px; padding:8px 12px;
}

/* A11y helpers */
.hjc-contact .hjc-sr-only{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Make opening hours single-line on desktop */
.hjc-contact .hjc-hours {
  grid-template-columns: 1fr !important; /* force full-width rows */
}

.hjc-contact .hjc-hours__row {
  justify-content: flex-start;
  gap: 20px; /* spacing between label + time */
}


/* Responsive stack */
@media (max-width:1020px){
  .hjc-contact .hjc-grid{ grid-template-columns:1fr; }
  .hjc-contact .hjc-card--details{ transform:none }
}

/* --- Intro box above the form (no HTML change needed) --- */
.hjc-contact .hjc-card--form { padding-top: 0; }

/* Turn the existing header into its own luxe box */
.hjc-contact .hjc-form-head {
  background: linear-gradient(180deg, rgba(24,28,30,.94), rgba(14,18,20,.94));
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  margin: 18px 22px 16px;   /* separates it from the form below */
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

/* Make the text spacing in the intro box just a touch airier */
.hjc-contact .hjc-form-title { margin-bottom: .5rem; }
.hjc-contact .hjc-form-sub { margin-bottom: 12px; }

/* Keep the CTA and badge aligned nicely inside the new box */
.hjc-contact .hjc-form-cta { padding-bottom: 0; }

/* Now the form sits under the intro box, clean and tidy */
.hjc-contact .hjc-card--form .hjc-form {
  padding: 0 22px 22px;     /* remove top padding since intro is separate */
}

/* Keep everything responsive as before */
@media (max-width: 780px) {
  .hjc-contact .hjc-form-head { margin: 14px 14px 12px; }
  .hjc-contact .hjc-card--form .hjc-form { padding: 0 14px 18px; }
}

/* --- Landing Pages CSS --- */

/* =========================================
   FUNNEL PAGE (ROW 1 - HERO)
   Scoped to .funnel-page to avoid conflicts
   ========================================= */
.funnel-page {
  /* Accent can be tuned to your brand gold if needed */
  --fp-accent: #e8cc35;        /* tweak to your exact gold */
  --fp-text: inherit;          /* inherit site typography colours */
  --fp-muted: color-mix(in srgb, currentColor 60%, transparent);
  --fp-surface: #ffffff;       /* used for ghost button border on light themes */
  --fp-hero-overlay: rgba(0,0,0,.35); /* overlay for image when used */
  --fp-radius: 18px;
  --fp-maxw: 1200px;
}

/* Row container */
.funnel-page .fp-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 5vw, 72px) 20px;
  max-width: var(--fp-maxw);
  margin: 0 auto;
}

/* Variant that balances media + copy without forcing dark background */
.funnel-page .fp-hero--balanced {
  background: none; /* rely on site’s background */
}

/* Right-side media block (image card) */
.funnel-page .fp-hero__media {
  order: 2;
  width: 100%;
  min-height: clamp(220px, 35vw, 420px);
  border-radius: var(--fp-radius);
  background:
    linear-gradient(0deg, var(--fp-hero-overlay), var(--fp-hero-overlay)),
    var(--fp-hero-image, url('/images/hero-santa-home.jpg')) center/cover no-repeat;
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
}

/* Left-side copy */
.funnel-page .fp-hero__inner { order: 1; }
.funnel-page .fp-hero__copy { max-width: 720px; }

.funnel-page .fp-hero__title {
  margin: 0 0 10px;
  line-height: 1.15;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  letter-spacing: .2px;
}

.funnel-page .fp-hero__subtitle {
  margin: 0 0 18px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--fp-muted);
}

/* CTAs */
.funnel-page .fp-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 12px;
}

.funnel-page .fp-btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .2s ease, opacity .2s ease;
}

.funnel-page .fp-btn--primary {
  background: linear-gradient(180deg, var(--fp-accent), color-mix(in srgb, var(--fp-accent) 78%, #000 22%));
  color: #111;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--fp-accent) 30%, transparent);
}
.funnel-page .fp-btn--primary:hover { transform: translateY(-1px); }

.funnel-page .fp-btn--ghost {
  background: transparent;
  color: currentColor;
  border-color: color-mix(in srgb, currentColor 22%, var(--fp-surface) 78%);
}
.funnel-page .fp-btn--ghost:hover { opacity: .85; }

/* Trust pills */
.funnel-page .fp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  font-size: 14px;
  color: var(--fp-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .funnel-page .fp-hero { grid-template-columns: 1fr; }
  .funnel-page .fp-hero__media { order: 1; }
  .funnel-page .fp-hero__inner { order: 2; }
}
/* =========================================
   FUNNEL PAGE (ROW 2 - INTRO)
   ========================================= */
.funnel-page {
  --fp-accent: #e8cc35; /* Holly Jolly Gold */
}

.funnel-page .fp-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.funnel-page .fp-intro {
  background: #fff; /* sits cleanly with site’s white/cream sections */
  color: #222;
  padding: clamp(40px, 6vw, 72px) 0;
  text-align: center;
}

.funnel-page .fp-intro p {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  margin: 0 auto 18px;
  max-width: 780px;
}

.funnel-page .fp-intro em { color: #555; font-style: italic; }

.funnel-page .fp-intro__cta {
  font-weight: 600;
  font-size: 17px;
}

.funnel-page .fp-link {
  color: var(--fp-accent);
  font-weight: 700;
  border-bottom: 2px solid var(--fp-accent);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}
.funnel-page .fp-link:hover {
  color: #b59c27; /* darker gold hover */
  border-color: #b59c27;
}

/* =========================================
   FUNNEL PAGE (ROW 3 - BENEFITS)
   ========================================= */
.funnel-page .fp-benefits {
  background: #000; /* subtle light grey to separate from intro */
  padding: clamp(50px, 6vw, 80px) 0;
  text-align: left;
}

.funnel-page .fp-h2 {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  margin-bottom: 32px;
}

.funnel-page .fp-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 880px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.funnel-page .fp-benefits__list li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.6;
}

.funnel-page .fp-benefits__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #e8cc35; /* Holly Jolly Gold */
  font-size: 18px;
}

/* =========================================
   FUNNEL PAGE (ROW 4 - WHAT TO EXPECT)
   ========================================= */
.funnel-page .fp-expect {
  background: #grey;
  padding: clamp(50px, 6vw, 80px) 0;
}

.funnel-page .fp-expect .fp-introtext {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.funnel-page .fp-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: grid;
  gap: 18px;
}

.funnel-page .fp-steps li {
  position: relative;
  padding-left: 48px;
  font-size: 16.5px;
  line-height: 1.6;
}

.funnel-page .fp-steps__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  background: #e8cc35; /* Holly Jolly Gold */
  color: #111;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

.funnel-page .fp-footnote {
  margin-top: 30px;
  font-size: 15px;
  text-align: center;
  color: #666;
  max-width: 720px;
  margin-inline: auto;
}


/* =========================================
   FUNNEL PAGE (ROW 5 - LUXURY / EXPERIENCE)
   ========================================= */
.funnel-page .fp-lux {
  background: #fefefe; /* soft light to contrast Row 4 white slightly */
  padding: clamp(50px, 6vw, 80px) 0;
}

.funnel-page .fp-lux .fp-h2 {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  margin-bottom: 26px;
}

.funnel-page .fp-lux__content {
  max-width: 920px;
  margin: 0 auto;
  color: #2a2a2a;
}

.funnel-page .fp-lux__content p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.funnel-page .fp-lux__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
}

.funnel-page .fp-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  background: #e8cc35; /* Holly Jolly Gold */
  box-shadow: 0 4px 14px rgba(232, 204, 53, 0.28);
}

/* Responsive */
@media (max-width: 640px) {
  .funnel-page .fp-lux__content p { font-size: 16px; }
}

/* =========================================
   FUNNEL PAGE (ROW 6 - FAQS)
   ========================================= */
.funnel-page { --fp-accent: #e8cc35; }

.funnel-page .fp-faq {
  background: #ffffff;
  padding: clamp(50px, 6vw, 80px) 0;
}

.funnel-page .fp-faq .fp-h2 {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  margin-bottom: 28px;
}

.funnel-page .fp-faq__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

/* FAQ card */
.funnel-page .fp-faq__item {
  background: #f9fafb;
  border: 1px solid #e8ebf0;
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.funnel-page .fp-faq__item[open] {
  background: #fff;
  border-color: color-mix(in srgb, var(--fp-accent) 28%, #e8ebf0);
  box-shadow: 0 6px 26px rgba(0,0,0,.06);
}

.funnel-page .fp-faq__q {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
  font-weight: 800;
  line-height: 1.45;
}

/* Icon caret */
.funnel-page .fp-faq__q::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  color: #999;
  transition: transform .2s ease, color .2s ease;
}
.funnel-page .fp-faq__item[open] .fp-faq__q::after {
  transform: rotate(180deg);
  color: var(--fp-accent);
}

.funnel-page .fp-faq__a {
  margin-top: 10px;
  color: #444;
  line-height: 1.65;
  font-size: 16px;
}

/* Links inside answers */
.funnel-page .fp-faq__a a {
  color: var(--fp-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--fp-accent);
}
.funnel-page .fp-faq__a a:hover { border-color: #b59c27; color: #b59c27; }

/* Reduce-motion friendly */
@media (prefers-reduced-motion: reduce) {
  .funnel-page .fp-faq__item { transition: none; }
  .funnel-page .fp-faq__q::after { transition: none; }
}

/* =========================================
   FUNNEL PAGE (ROW 7 - FINAL CTA)
   ========================================= */
.funnel-page .fp-final-cta {
  background: linear-gradient(180deg, #111, #1a1a1a);
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 20px;
  color: #fff;
}

.funnel-page .fp-final-cta .fp-h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.funnel-page .fp-final-cta__text {
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 26px;
  color: #ddd;
}

.funnel-page .fp-btn--xl {
  padding: 16px 32px;
  font-size: 18px;
}

.funnel-page .fp-final-cta__note {
  margin-top: 14px;
  font-size: 14px;
  color: #aaa;
}


/* ============================
   FUNNEL PAGE — BENEFITS (BOXED)
   Scoped to .funnel-page
   ============================ */
.funnel-page {
  /* Brand knobs (tweak here only) */
  --brand-gold: #e8cc35;              /* Holly Jolly gold */
  --brand-green: #0f2e22;             /* deep holly green (adjust if needed) */
  --cream-bg: #fffaf2;                /* soft cream used site-wide */
  --card-bg: #ffffff;
  --card-border: #e9ecef;
  --shadow: 0 8px 28px rgba(0,0,0,.06);
}

.funnel-page .fp-benefits--boxed {
  background: var(--cream-bg);
  padding: clamp(48px, 6vw, 84px) 0;
}

.funnel-page .fp-benefits--boxed .fp-h2 {
  text-align: center;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 0 0 26px;
  color: var(--brand-green);
}

/* Grid of feature cards */
.funnel-page .fp-features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 2-up on tablet/desktop, 1-up on mobile, 3-up if you prefer: change spans */
.funnel-page .fp-feature {
  grid-column: span 6; /* 2-up */
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

/* Icon badge */
.funnel-page .fp-feature__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  background: var(--brand-gold);
  color: #111;
  box-shadow: 0 3px 10px rgba(232, 204, 53, .35);
}

/* Copy area */
.funnel-page .fp-feature__copy h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  color: #111; /* inherits your site’s heading tone on light backgrounds */
}
.funnel-page .fp-feature__copy p {
  margin: 0;
  color: #40454b;
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 960px) {
  .funnel-page .fp-feature { grid-column: span 12; } /* 1-up on tablet/mobile */
}
@media (min-width: 1200px) {
  /* Optional: 3-up on large screens */
  .funnel-page .fp-feature { grid-column: span 4; }
}
