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

/* ----------  COLOUR VARIABLES  ---------- */
:root{
  --hj-gold : #d4af37;
  --hj-black: #000000;
  --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);
}

.hoz-line-b {border-bottom:3px solid var(--hj-gold);}
.hj-gold {color: var(--hj-gold);}
/* ----------  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:linear-gradient(180deg, rgba(24,28,30,.94), rgba(14,18,20,.94));
  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;}

@media(max-width:640px){
.btn-main { font-size:1rem!important;
	    justify-content: center;
  	    width: fit-content;
  	    margin:0 auto 1rem;
 }
#hero a { font-size:1rem!important; }

}

/* ----------  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('../images/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); }
.desk-logo {display:block; }
.mob-icon {margin-right:1rem; }

@media(max-width:640px){
.desk-logo {display:none; }
}

/* ======================================================
   MODERN MOBILE HEADER REDESIGN
   ====================================================== */

/* Header container */
#siteHeader {
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#siteHeader.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Layout - 3 equal columns using flex-1 */
@media (max-width: 767px) {
  #siteHeader > div > .md\\:hidden {
    display: flex !important;
    width: 100%;
  }
  
  /* Each column takes equal space */
  .flex-1 {
    flex: 1 1 0%;
    min-width: 0;
  }
  
  /* Center the brand perfectly */
  .brand-mobile {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
  }
  
  .brand-mobile:hover {
    transform: scale(1.02);
  }
  
  .brand-mobile span {
    font-family:'Oleo Script Swash Caps', cursive;
    font-size: 1rem;
    text-align: center;
  }
  
  .brand-mobile .mob-icon {
    font-size: 1rem;
    margin-right: .5rem;
    display:none;
  }
  
  .cta-head-mobile {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  /* Ensure proper spacing for hero section */
  #hero {
    padding-top: 80px;
  }
}

/* Desktop Layout - Keep original styling */
@media (min-width: 768px) {
  #siteHeader > div > .hidden.md\\:flex {
    display: flex !important;
  }
  
  #siteHeader > div > .md\\:hidden {
    display: none !important;
  }
}

/* Mobile menu panel */
.mobile-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
}

.mobile-menu-panel:not(.hidden) {
  max-height: 500px;
  transform: scaleY(1);
  opacity: 1;
}

/* Mobile menu links */
.mobile-menu-link {
  position: relative;
  font-family: 'Oleo Script', cursive;
  transition: all 0.3s ease;
  margin: 0.25rem 0;
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
  transition: width 0.3s ease;
  border-radius: 0.5rem;
}

.mobile-menu-link:hover::before {
  width: 100%;
}

.mobile-menu-link:hover {
  transform: translateX(8px);
}

/* Phone dropdown */
.phone-dropdown {
  position: relative;
}

.phone-menu {
  z-index: 60;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: linear-gradient(180deg, rgba(24,28,30,.94), rgba(14,18,20,.94));

}

.phone-dropdown.active .phone-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.phone-menu a {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-color: var(--hj-gold);
  color: var(--hj-gold);

}

.phone-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(212, 175, 55, 0.1);
  transition: width 0.3s ease;
}

.phone-menu a:hover::before {
  width: 100%;
}

/* Icon buttons */
.icon-link, .hamburger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hj-gold);
  color: var(--hj-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.icon-link:hover, .hamburger-btn:hover {
  background: var(--hj-gold);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* CTA buttons */
.cta-head {
  font-family: 'Oleo Script', cursive;
  background: transparent;
  border: 1px solid var(--hj-gold);
  color: var(--hj-gold);
  text-transform: capitalize;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border-radius: 9999px;
  font-weight: 600;
}

.cta-head:hover {
  background: var(--hj-gold);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.cta-head-mobile {
  font-family: 'Oleo Script', cursive;
  background: transparent;
  border: 1px solid var(--hj-gold);
  color: var(--hj-gold);
  text-transform: capitalize;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border-radius: 9999px;
  font-weight: 600;
}

.cta-head-mobile:hover {
  background: var(--hj-gold);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Overlay for closing menus */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Animation for menu items */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-link {
  animation: slideInDown 0.3s ease forwards;
}

.mobile-menu-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu-link:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu-link:nth-child(5) { animation-delay: 0.25s; }

/* Enhanced focus states for accessibility */
.icon-link:focus,
.hamburger-btn:focus,
.cta-head:focus,
.cta-head-mobile:focus,
.mobile-menu-link:focus {
  outline: 2px solid var(--hj-gold);
  outline-offset: 2px;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Ensure content doesn't jump when menu opens */
body.menu-open {
  overflow: hidden;
}


@media(max-width:640px){
.t-section-page {padding: 2rem 0!important; }
.about-core {padding: 2rem 0!important; }
}

/* ======================================================
   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,4rem);       /* 40–64 px fluid */
  text-align:left;
}
#hero p {  text-align:center;margin-bottom:2rem;}
#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;}
 
#hero .location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px dashed rgba(214,179,106,0.34);
    border-radius: 999px;
    color: #f4f2eb;
    background: linear-gradient(180deg, rgba(214,179,106,.08), rgba(214,179,106,.02));
    font-weight: 700;
}
#hero .badge-top { width:fit-content;margin:0 auto;}


#hero .bg-hj-gold-20 {
  background-color: rgba(212, 175, 55, 0.2) !important;
}
#hero .text-hj-gold {
  color: var(--hj-gold) !important;
}

@media(max-width:640px){
#hero .location-badge {display:block;}
#hero .location-badge i {display:block;margin-bottom:7px;}
}

/* Textured gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.90) 100%);
  background-size: cover,180px;
  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;
}

.hero-divider .chevi-2{
  position:absolute;
  left:50%;
  bottom: -5px;
  transform:translateX(-50%) rotate(180deg); /* point downward */
  background:
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgNTAiPjxwYXRoIGQ9Ik0xMDAgMGwtNTAgNTAtNTAtNTAiIGZpbGw9IiMwYjBmMTEiLz48L3N2Zz4=") no-repeat center/contain;
  width:150px;        /* make bigger here */
  height:75px;
  pointer-events:none;
  text-align:center;
  align-content: center;
  background: ;
}

.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 */
}

@media(max-width:767px){
   #hero { padding: 8rem 0;min-height:auto;}
  .hero-title {text-align:center;}
  #hero p {text-align:center;}
}
/* ======================================================
   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-image: linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.90) 100%);
  background-size: cover,180px;
  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:6rem; padding:.9rem .35rem; }
  .cd-item span{ font-size:1.9rem; }
  .cd-timer{ gap:1rem 1rem;}
  .cd-lead{ margin:0 auto; font-size:1rem; }
  .cd-item span{ font-size:2.1rem; }
  .cd-snow {top:7%;}
}

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


}



/* ----------  Pitch section background ---------- */
#pitch{
  background:#000;
}
.pitch-overlay{
  position:absolute;
  inset:0;
  background-image:url('../images/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;  
}
.service-card:hover .service-bg-2 { transform:scale(1.12); }

/* ----------  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:30rem; }             /* 352 px */
  .service-icon {display:none; }
}

/* ======================================================
   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:767px){
  .why-section {padding: 5rem 0;}
  .why-copy {text-align:center;}
  .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') top/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-image: linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.90) 100%);
  background-size: cover,180px;
  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;
  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-section{
  background:url('../images/reviews-1.jpg') top/cover no-repeat;
}
  .t-card{ padding:2rem 1.7rem 1.75rem; }
  .t-quote{ font-size:1rem; }
  .t-pager{ margin-top:2.5rem; }
  .t-cta{ display:block;text-align:center; }
}

/* ======================================================
   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('../images/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('../images/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; 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; }
/* Target the gallery page specifically to override the carousel */
.g-grid.g-grid-page {
  display: grid; /* Revert back to a grid layout */
  grid-template-columns: repeat(2, 1fr); /* Create 2 equal columns */
  overflow-x: visible; /* Disable horizontal scrolling */
  scroll-snap-type: none; /* Turn off the snapping behavior */
}

/* Reset the item styles for the new 2-column grid */
.g-grid.g-grid-page .item {
  flex: initial; /* Reset the flex property from the carousel */
  scroll-snap-align: none; /* Turn off snap alignment */
  aspect-ratio: 1 / 1; /* A square aspect ratio works well for 2-up grids */
}
}

/* 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;}

/* 1 column on mobile - updated to a swipeable carousel */
@media(max-width:639px){
  .g-grid {
    display: flex; /* Change from grid to flex for a row layout */
    overflow-x: auto; /* Allow horizontal scrolling */
    scroll-snap-type: x mandatory; /* Enable snapping on the horizontal axis */
    scroll-behavior: smooth; /* Animate the snap */
    gap: 1rem; /* Keep the space between items */
    
    /* Optional: Hide the scrollbar for a cleaner look */
    scrollbar-width: none; /* For Firefox */
  }

  /* For Chrome, Safari, and Opera */
  .g-grid::-webkit-scrollbar {
    display: none;
  }
  
  .g-grid .item {
    flex: 0 0 90%; /* Each item takes 90% of the container's width */
    scroll-snap-align: center; /* Snap each item to the center */
    aspect-ratio: 16 / 10; /* A wider aspect ratio often works better for carousels */
  }
}

/* ======================================================
   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-image: linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.90) 100%);
  background-size: cover,180px;
  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{
  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-section{ background:url('../images/last-cta.jpg') center / cover no-repeat; }
  .cta-lead{ font-size:1rem;padding:0 1.5rem; }
  .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: var(--hj-gold);
}

/* ----------  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:10rem 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-image:linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.90) 100%);
  background-size: cover,180px;
 }
.abt-pos-top {object-position:top; }

.about-hero .location-badge, {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px dashed rgba(214,179,106,0.34);
    border-radius: 999px;
    color: #f4f2eb;
    background: linear-gradient(180deg, rgba(214,179,106,.08), rgba(214,179,106,.02));
    font-weight: 700;
}
.about-hero .badge-top { width:fit-content;margin:0 auto 1.5rem;;}


.about-hero .bg-hj-gold-20 {
  background-color: rgba(212, 175, 55, 0.2) !important;
}
.about-hero .text-hj-gold {
  color: var(--hj-gold) !important;
}




.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;
  line-height:3.5rem;
}
.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:10rem 0 0;
  border-top:3px solid var(--hj-gold);
}
.about-overlay{ position:absolute; inset:0; background-image:linear-gradient(180deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.90) 100%);
  background-size: cover,180px;
 }

.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-panel:nth-of-type(2) .core-copy {margin-bottom:1.35rem;}
.core-panel { gap:1rem;}
  .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%; }
.core-panel:nth-of-type(2) .core-media {
  grid-column: 7 / -2;
}
}

/* ======================================================
   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.2rem;
  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:var(--hj-gold);
  margin-bottom:.4rem;
  font-size:.97rem;
  border-color: var(--hj-gold);
   background: linear-gradient(180deg, var(--panel), var(--panel-2));
}

/* 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:1px solid var(--stroke);
     border-radius: 10px;
  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-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;
}

.field-wrp  {
  gap: 2rem 2.5rem;
  grid-template-columns: repeat(2,1fr);
  display: grid;
  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;
 padding:2rem;
}



.bk-radio-hover {background: var(--hj-gold)!important;color:#000!important;}
.bk-radio-dot {border-color:var(--hj-gold); }
.bk-radio-dot-hover {background:#000;border-color:#000; }
.booking-form h3  {color:var(--hj-gold);text-align:center;font-size:1.5rem; }
.booking-form .select-h3 {margin-bottom:2rem;}
.bk-message { text-align: center;padding: 3rem 0;max-width: 750px;margin: 0 auto;}
.bk-message h2 {color:var(--hj-gold);font-size: 2.5rem;  margin-bottom: 1.5rem;}
.bk-message p {font-size:1.2rem;margin:0; }

@media(max-width:639px){
  .field-wrp { grid-template-columns:1fr; }
}
/* =======================================================
   The Holly Jolly Company — Contact
   Font Awesome version; fully scoped under .hjc-contact
   ======================================================= */

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

.hjc-contact {
  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));line-height:2rem;
}
.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;text-align:center; }
  .hjc-contact .hjc-card--form .hjc-form { padding: 0 14px 18px; }
  .hjc-form-cta .btn-main {margin: 0 auto .5rem;}
  .hjc-contact .hjc-badge {margin:0 auto;}
  .hjc-field .btn-main {margin: 0 auto;}
  .hjc-field div.cck_forms.cck_site div.cck_form {float:none;}
}

.pol-terms {padding:2rem; }
.pol-terms h2 {color:var(--hj-gold); }
.pol-terms li::maker {color:var(--hj-gold); }
.pol-terms .policy-section {transition: all 0.3s ease;   border: 1px solid var(--gold); }
.pol-terms .policy-section:hover {transform: translateY(-5px); }
        

