/* =========================================================================
   Hold'em for Hope — theme styles
   Ported from the Design Composer source (HoldEmForHope.dc.html).
   ========================================================================= */

:root{
  --gold:#d4af52; --gold-lt:#f6e08a; --gold-dk:#a87d2e;
  --cream:#f1e6cc; --sand:#e8dcc0; --copper:#c79a3a;
  --muted:#c2b48f; --muted-2:#b39d68; --ink:#1c1206;
  --bg:#140b05;
  --serif:'Spectral',serif; --display:'Cinzel',serif; --label:'Cinzel',serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;scroll-padding-top:96px;}

/* Visible keyboard focus (WCAG 2.4.7) — inputs keep their own focus ring */
a:focus-visible,button:focus-visible,.hfh-btn:focus-visible,.hfh-tier__select:focus-visible,
.hfh-accordion__q:focus-visible,.hfh-nav__toggle:focus-visible,.hfh-nav__links a:focus-visible{
  outline:3px solid #d6b05a;outline-offset:3px;border-radius:2px;}
body{margin:0;background:var(--bg);color:var(--sand);font-family:var(--serif);overflow-x:hidden;}
img{max-width:100%;}
a{color:inherit;}
::selection{background:rgba(214,176,90,.3);color:#fff;}

/* ---- keyframes ---- */
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes dealIn{0%{opacity:0;transform:translate(-50px,30px) rotate(-20deg)}100%{opacity:1;transform:translate(0,0) rotate(var(--rot))}}
@keyframes cueBounce{0%,100%{transform:translateY(0);opacity:.5}50%{transform:translateY(8px);opacity:1}}
@keyframes floatA{0%,100%{transform:translateY(0) rotate(-8deg)}50%{transform:translateY(-16px) rotate(-2deg)}}
@keyframes floatB{0%,100%{transform:translateY(0) rotate(9deg)}50%{transform:translateY(-20px) rotate(3deg)}}

/* ---- layout helpers ---- */
.hfh-container{max-width:1120px;margin:0 auto;}
.hfh-container--narrow{max-width:820px;}
.hfh-center{text-align:center;}
.hfh-section{position:relative;padding:120px 40px;box-shadow:inset 0 0 160px 40px rgba(0,0,0,.4);}
.hfh-empty{padding:160px 40px;text-align:center;}

/* ---- shared type ---- */
.hfh-eyebrow{font-family:var(--label);font-size:13px;letter-spacing:.36em;color:#e9d09a;}
.hfh-eyebrow--wide{font-size:14px;letter-spacing:.42em;color:#bda06a;}
.hfh-eyebrow--copper{color:var(--copper);}
.hfh-h2{font-family:var(--display);font-weight:600;font-size:clamp(34px,4.6vw,54px);color:var(--cream);margin:14px 0 0;line-height:1.12;letter-spacing:.01em;text-align:center;}
.hfh-h2--left{text-align:left;font-size:clamp(34px,4.5vw,54px);line-height:1.06;}
.hfh-lead{font-size:18.5px;line-height:1.8;color:#c9bda0;max-width:640px;margin:22px auto 0;}
.hfh-prose{font-size:18.5px;line-height:1.8;color:#c9bda0;}
.hfh-prose p{margin:0 0 18px;}
.hfh-divider{display:block;height:24px;width:auto;margin:26px auto;}
.hfh-divider--left{margin:24px 0;height:18px;}
.hfh-suits{display:block;height:28px;width:auto;margin:0 auto 24px;}

/* ---- buttons ---- */
.hfh-btn{display:inline-block;font-family:var(--label);font-weight:600;letter-spacing:.18em;text-decoration:none;border-radius:2px;transition:transform .2s,filter .2s,background .25s;}
.hfh-btn--gold{color:var(--ink);background:linear-gradient(180deg,var(--gold-lt),var(--gold) 52%,var(--gold-dk));box-shadow:0 4px 14px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.55);padding:12px 24px;font-size:12px;}
.hfh-btn--gold:hover{filter:brightness(1.07);}
.hfh-btn--ghost{color:#e9d09a;border:1px solid rgba(199,154,58,.55);padding:15px 38px;font-size:14px;font-weight:500;}
.hfh-btn--ghost:hover{background:rgba(199,154,58,.12);}
.hfh-btn--lg{padding:17px 44px;font-size:14px;letter-spacing:.2em;box-shadow:0 10px 26px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.55);}
.hfh-btn--lg.hfh-btn--gold:hover{transform:translateY(-2px);}
.hfh-btn--sm{padding:11px 22px;font-size:11px;letter-spacing:.16em;box-shadow:inset 0 1px 0 rgba(255,255,255,.5);}

.hfh-rule{display:flex;align-items:center;justify-content:center;gap:20px;margin:18px 0 0;}
.hfh-rule__label{font-family:var(--label);font-size:21px;letter-spacing:.4em;color:#e9d09a;}
.hfh-rule__line{height:1px;width:70px;background:linear-gradient(90deg,transparent,#b08f4a);}
.hfh-rule__line--r{background:linear-gradient(90deg,#b08f4a,transparent);}

.hfh-pill{font-family:var(--label);font-size:8px;font-weight:600;letter-spacing:.14em;color:var(--ink);background:linear-gradient(180deg,var(--gold-lt),var(--gold));padding:3px 9px;border-radius:20px;}

.hfh-placeholder{display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.03);border:1px dashed rgba(199,154,58,.4);color:var(--muted-2);font-family:var(--label);font-size:12px;letter-spacing:.1em;}

/* =========================================================================
   NAV
   ========================================================================= */
.hfh-nav{position:fixed;top:0;left:0;right:0;z-index:80;display:flex;align-items:center;justify-content:space-between;padding:20px 44px;border-bottom:1px solid transparent;transition:background .45s ease,padding .45s ease,border-color .45s ease;}
.hfh-nav.is-scrolled{background:linear-gradient(180deg,rgba(18,11,5,.97),rgba(18,11,5,.86));border-bottom-color:rgba(199,154,58,.32);padding:13px 44px;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);}
.hfh-nav__brand{display:flex;align-items:center;gap:10px;text-decoration:none;}
.hfh-nav__brand img{height:40px;width:auto;opacity:.95;}
.hfh-nav__links{display:flex;align-items:center;gap:28px;list-style:none;margin:0;padding:0;font-family:var(--label);font-size:12px;letter-spacing:.2em;color:#cdb98f;white-space:nowrap;}
.hfh-nav__links a{text-decoration:none;text-transform:uppercase;transition:color .25s;}
.hfh-nav__links a:hover{color:#f3d98a;}
.hfh-nav__cta{padding:11px 24px;font-size:12px;}
.hfh-nav__actions{display:flex;align-items:center;gap:14px;}
.hfh-nav__toggle{display:none;width:44px;height:40px;flex-direction:column;justify-content:center;align-items:center;gap:5px;background:transparent;border:1px solid rgba(199,154,58,.42);border-radius:5px;cursor:pointer;padding:0;}
.hfh-nav__toggle span{display:block;width:21px;height:2px;background:#d8c089;border-radius:2px;transition:transform .3s ease,opacity .2s ease;}
.hfh-nav.is-open .hfh-nav__toggle span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hfh-nav.is-open .hfh-nav__toggle span:nth-child(2){opacity:0;}
.hfh-nav.is-open .hfh-nav__toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* =========================================================================
   HERO
   ========================================================================= */
.hfh-hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;padding:88px 24px 56px;box-shadow:inset 0 0 220px 60px rgba(0,0,0,.7);overflow:hidden;}
.hfh-corner{position:absolute;width:72px;height:72px;opacity:.92;pointer-events:none;}
.hfh-corner--tl{left:20px;top:20px;}
.hfh-corner--tr{right:20px;top:20px;transform:scaleX(-1);}
.hfh-corner--bl{left:20px;bottom:20px;transform:scaleY(-1);}
.hfh-corner--br{right:20px;bottom:20px;transform:scale(-1,-1);}
.hfh-corner--sm{width:64px;height:64px;}

.hfh-chip{position:absolute;z-index:1;pointer-events:none;filter:drop-shadow(0 14px 28px rgba(0,0,0,.5));}
.hfh-chip--1{left:6%;top:33%;width:112px;height:112px;opacity:.62;animation:floatA 9s ease-in-out infinite;}
.hfh-chip--2{right:7%;top:24%;width:90px;height:90px;opacity:.55;animation:floatB 11s ease-in-out infinite;}
.hfh-chip--3{left:11%;bottom:14%;width:78px;height:78px;opacity:.5;animation:floatB 8s ease-in-out infinite;}
.hfh-chip--4{right:10%;bottom:19%;width:124px;height:124px;opacity:.6;animation:floatA 12s ease-in-out infinite;}

.hfh-hero__inner{position:relative;z-index:2;max-width:760px;width:100%;text-align:center;}
.hfh-hero__shalva{height:42px;width:auto;margin-bottom:20px;}
.hfh-hero__lockup{display:block;width:min(560px,86%);height:auto;margin:16px auto 0;animation:floaty 7s ease-in-out infinite;filter:drop-shadow(0 8px 30px rgba(214,170,70,.28));}
.hfh-hero__date{font-family:var(--label);font-weight:500;font-size:27px;letter-spacing:.16em;color:var(--cream);margin-top:16px;}
.hfh-hero__date sup{font-size:.5em;letter-spacing:0;}
.hfh-hero__venue{font-family:var(--label);font-size:15px;letter-spacing:.3em;color:#bfa877;margin-top:9px;}
.hfh-hero__venuenote{font-family:var(--body);font-size:13px;font-style:italic;letter-spacing:.02em;color:#9a8a68;margin-top:7px;}
.hfh-hero__intro{font-family:var(--label);font-size:13.5px;letter-spacing:.16em;line-height:1.85;color:#cbb98d;max-width:560px;margin:0 auto;text-transform:uppercase;}
.hfh-hero__cta{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;margin-top:24px;}
.hfh-hero__attire{font-family:var(--label);font-size:12px;letter-spacing:.3em;color:var(--muted-2);margin-top:16px;text-transform:uppercase;}

.hfh-scrollcue{position:absolute;bottom:48px;left:50%;transform:translateX(-50%);font-family:var(--label);font-size:10px;letter-spacing:.3em;color:var(--muted-2);text-align:center;animation:cueBounce 2.4s ease-in-out infinite;z-index:2;}
.hfh-scrollcue__chev{margin-top:6px;font-size:14px;}

/* =========================================================================
   EVENING
   ========================================================================= */
.hfh-evening{border-top:1px solid rgba(214,176,90,.28);border-bottom:1px solid rgba(214,176,90,.28);}
.hfh-hand{position:relative;height:200px;margin-bottom:14px;}
.hfh-hand__inner{position:relative;width:420px;max-width:100%;height:180px;margin:0 auto;}
.hfh-hand__inner img{position:absolute;width:100px;height:144px;transform-origin:bottom center;opacity:0;filter:drop-shadow(0 14px 26px rgba(0,0,0,.55));}
.hfh-hand__inner img.is-dealt{animation:dealIn .7s cubic-bezier(.2,.7,.2,1) forwards;}

.hfh-feature-grid{display:grid;grid-template-columns:repeat(4,1fr);margin-top:56px;border:1px solid rgba(214,176,90,.35);border-radius:3px;overflow:hidden;background:linear-gradient(180deg,rgba(8,28,20,.55),rgba(8,28,20,.3));backdrop-filter:blur(2px);}
.hfh-feature{padding:46px 28px;border-right:1px solid rgba(199,154,58,.16);}
.hfh-feature:last-child{border-right:none;}
.hfh-feature__suit{font-family:var(--label);font-size:30px;color:var(--gold);}
.hfh-feature__title{font-family:var(--label);font-size:15px;letter-spacing:.14em;color:var(--cream);margin-top:16px;text-transform:uppercase;}
.hfh-feature__text{font-size:16px;line-height:1.6;color:var(--muted);margin:10px 0 0;}

/* =========================================================================
   ABOUT
   ========================================================================= */
.hfh-about__grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.hfh-stats{display:flex;gap:48px;margin-top:38px;}
.hfh-stat__value{font-family:var(--display);font-weight:600;font-size:46px;color:#e9d09a;line-height:1;}
.hfh-stat__label{font-family:var(--label);font-size:11px;letter-spacing:.2em;color:var(--muted);margin-top:8px;text-transform:uppercase;}
.hfh-about__media{position:relative;}
.hfh-about__frame{position:absolute;inset:-12px;border:1px solid rgba(199,154,58,.4);border-radius:3px;pointer-events:none;z-index:2;}
.hfh-about__media .hfh-corner--tl{left:-20px;top:-20px;z-index:3;}
.hfh-about__media .hfh-corner--br{right:-20px;bottom:-20px;transform:scale(-1,-1);z-index:3;}
.hfh-about__photo{display:block;width:100%;height:460px;object-fit:cover;border-radius:2px;}

/* =========================================================================
   TICKETS
   ========================================================================= */
.hfh-tickets__note{font-family:var(--label);font-size:12px;letter-spacing:.2em;color:#bda06a;margin-top:16px;text-transform:uppercase;}
.hfh-tier-group{max-width:860px;margin:48px auto 0;}
.hfh-tier-group:not(:first-of-type){margin-top:36px;}
.hfh-tier-group__head{display:flex;align-items:center;gap:16px;margin-bottom:16px;}
.hfh-tier-group__title{font-family:var(--label);font-size:13px;letter-spacing:.28em;color:#e9d09a;text-transform:uppercase;}
.hfh-tier-group__rule{flex:1;height:1px;background:rgba(214,176,90,.25);}
.hfh-tier-list{border:1px solid rgba(214,176,90,.25);border-radius:4px;overflow:hidden;background:linear-gradient(180deg,rgba(18,11,5,.55),rgba(18,11,5,.2));}
.hfh-tier{display:flex;align-items:center;gap:22px;padding:17px 22px;border-top:1px solid rgba(214,176,90,.13);transition:background .25s;}
.hfh-tier:first-child{border-top:none;}
.hfh-tier:hover{background:rgba(214,176,90,.07);}
.hfh-tier__chip{width:58px;height:58px;flex-shrink:0;filter:drop-shadow(0 6px 12px rgba(0,0,0,.55));}
.hfh-tier__price{width:100px;flex-shrink:0;font-family:var(--display);font-weight:600;font-size:26px;color:#f3d98a;line-height:1;}
.hfh-tier__body{flex:1;min-width:0;text-align:left;}
.hfh-tier__name{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-family:var(--label);font-size:13px;letter-spacing:.1em;color:var(--cream);text-transform:uppercase;}
.hfh-tier__detail{font-family:var(--serif);font-size:14px;color:var(--muted);margin-top:4px;}
.hfh-tier__select{flex-shrink:0;}
.hfh-tickets__footnote{font-size:16px;color:#9a8a68;margin-top:40px;font-style:italic;}
.hfh-tickets__footnote a{color:#e9d09a;text-decoration:underline;text-underline-offset:3px;}

/* =========================================================================
   SPONSOR
   ========================================================================= */
.hfh-sponsor{border-top:1px solid rgba(214,176,90,.22);}
.hfh-package-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:56px;}
.hfh-package{border:1px solid rgba(199,154,58,.28);border-radius:3px;padding:38px 32px;background:linear-gradient(180deg,rgba(199,154,58,.06),transparent);}
.hfh-package--featured{border-color:rgba(214,176,90,.6);background:linear-gradient(180deg,rgba(199,154,58,.12),transparent);}
.hfh-package__suit{font-family:var(--label);font-size:30px;color:var(--gold);}
.hfh-package__title{font-family:var(--label);font-size:16px;letter-spacing:.14em;color:var(--cream);margin-top:16px;text-transform:uppercase;}
.hfh-package__text{font-size:16px;line-height:1.7;color:var(--muted);margin:14px 0 0;}
.hfh-sponsor__cta{margin-top:40px;}
.hfh-sponsor__note{font-size:15px;color:#9a8a68;margin-top:16px;font-style:italic;}
.hfh-partners{margin-top:84px;}
.hfh-partners__heading{text-align:center;font-family:var(--label);font-size:12px;letter-spacing:.32em;color:#bda06a;text-transform:uppercase;}
.hfh-partners__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin-top:28px;}
.hfh-partners__cell{height:110px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(199,154,58,.18);border-radius:3px;padding:14px;background:rgba(255,255,255,.02);}
.hfh-partners__cell img{max-height:100%;width:auto;object-fit:contain;}
/* Standalone sponsor-logos grid (links wrap the logo) */
.hfh-logos__grid{margin-top:44px;}
.hfh-logos__grid a{display:flex;align-items:center;justify-content:center;max-height:100%;}
.hfh-logos__grid a img{max-height:100%;width:auto;object-fit:contain;}

/* =========================================================================
   HOST COMMITTEE
   ========================================================================= */
.hfh-committee__group{max-width:860px;margin:44px auto 0;}
.hfh-committee__group:not(:first-of-type){margin-top:40px;}
.hfh-committee__list{list-style:none;margin:20px 0 0;padding:0;columns:3;column-gap:36px;text-align:center;}
.hfh-committee__name{font-size:17px;line-height:2;color:#efe4ca;font-weight:500;break-inside:avoid;}
@media(max-width:720px){.hfh-committee__list{columns:2;}}
@media(max-width:460px){.hfh-committee__list{columns:1;}}

/* =========================================================================
   GALLERY
   ========================================================================= */
.hfh-gallery{columns:4;column-gap:14px;margin-top:52px;}
.hfh-gallery__cell{margin:0 0 14px;overflow:hidden;border-radius:2px;break-inside:avoid;-webkit-column-break-inside:avoid;}
.hfh-gallery__cell img{width:100%;height:auto;display:block;}

/* =========================================================================
   SPONSOR A PRIZE
   ========================================================================= */
.hfh-prize-perks{max-width:940px;margin-left:auto;margin-right:auto;}
.hfh-prize-examples{font-family:var(--label);font-size:13px;letter-spacing:.14em;color:#bda06a;text-transform:uppercase;margin-top:30px;}

/* =========================================================================
   FAQ
   ========================================================================= */
.hfh-accordion{border-top:1px solid rgba(199,154,58,.22);margin-top:44px;}
.hfh-accordion__item{border-bottom:1px solid rgba(199,154,58,.22);}
.hfh-accordion__q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;background:none;border:none;cursor:pointer;text-align:left;padding:26px 4px;font-family:var(--label);font-size:17px;letter-spacing:.04em;color:#ecdfc2;}
.hfh-accordion__sign{font-family:var(--display);font-size:30px;color:var(--gold);line-height:1;flex-shrink:0;}
.hfh-accordion__a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.hfh-accordion__item.is-open .hfh-accordion__a{max-height:400px;}
.hfh-accordion__a p{font-size:18px;line-height:1.75;color:#b8aa88;margin:0;padding:0 4px 28px;max-width:680px;}

/* =========================================================================
   DONATE
   ========================================================================= */
.hfh-donate{padding:104px 40px;text-align:center;border-top:1px solid rgba(199,154,58,.2);border-bottom:1px solid rgba(199,154,58,.2);}
.hfh-donate .hfh-btn{margin-top:32px;}

/* =========================================================================
   FORMS (Gravity Forms wrapper)
   ========================================================================= */
/* Felt-table panel that groups each form */
.hfh-form{max-width:600px;margin:48px auto 0;text-align:left;position:relative;
  background:linear-gradient(180deg,rgba(20,12,6,.72),rgba(12,7,3,.85));
  border:1px solid rgba(214,176,90,.32);border-radius:4px;padding:42px 42px 38px;
  box-shadow:inset 0 1px 0 rgba(214,176,90,.10);}
.hfh-form::before{content:"";position:absolute;left:26px;right:26px;top:0;height:2px;
  background:linear-gradient(90deg,transparent,rgba(214,176,90,.6),transparent);}
/* Custom checkout plugin brings its own panel + two-column cart. Break it out
   of the container to full viewport width and drop the theme's felt-panel
   chrome so it isn't double-boxed or clamped. */
.hfh-form--checkout{max-width:none;width:100vw;position:relative;left:50%;right:50%;
  margin:48px -50vw 0;background:none;border:0;border-radius:0;padding:0 40px;
  box-shadow:none;text-align:center;}
.hfh-form--checkout::before{display:none;}
@media (max-width:640px){.hfh-form--checkout{padding:0 16px;}}

/* Lighten the Luminary checkout/donation input fields (client feedback: too
   dark) and make them mobile-safe. Scoped to the theme's checkout wrapper;
   !important so it beats the plugin's own checkout.css (loaded after ours). */
.hfh-form--checkout input:not([type=checkbox]):not([type=radio]):not([type=hidden]),
.hfh-form--checkout textarea,
.hfh-form--checkout select{
  background:rgba(245,238,222,.95)!important;   /* light parchment fill */
  color:#241407!important;                       /* dark, legible text */
  border-color:rgba(168,125,46,.6)!important;
  font-size:16px!important;                       /* >=16px: no iOS zoom on focus */
}
.hfh-form--checkout input:not([type=checkbox]):not([type=radio])::placeholder,
.hfh-form--checkout textarea::placeholder{color:#7a6a48!important;}
.hfh-form--checkout input:not([type=checkbox]):not([type=radio]):focus,
.hfh-form--checkout textarea:focus,
.hfh-form--checkout select:focus{
  background:#fcf8ee!important;
  border-color:#a87d2e!important;
  box-shadow:0 0 0 2px rgba(212,175,82,.28)!important;
}
/* Lift the donation preset amount chips a touch so they read on the panel. */
.hfh-form--checkout .lt-give-chip{
  background:linear-gradient(180deg,rgba(241,230,204,.16),rgba(241,230,204,.09))!important;
}
/* Stack the buyer name fields on very small screens. */
@media (max-width:400px){
  .hfh-form--checkout .lt-buyer{grid-template-columns:1fr!important;}
}
.hfh-form .gform_wrapper{margin:0;--gf-color-primary:var(--gold);}
.hfh-form .gform_wrapper .gform_fields{display:block;grid-template-columns:none;}
.hfh-form .gfield{margin:0 0 22px!important;padding:0;}

/* Labels */
.hfh-form .gfield_label,.hfh-form label.gfield_label{display:block!important;font-family:var(--label);
  text-transform:uppercase;font-size:12px!important;letter-spacing:.16em;color:#d8c089!important;
  margin:0 0 9px!important;font-weight:600!important;}
.hfh-form .gfield_required{color:#c79a3a!important;margin-left:4px;}

/* Inputs, selects, textareas */
.hfh-form input[type=text],.hfh-form input[type=email],.hfh-form input[type=tel],
.hfh-form input[type=number],.hfh-form select,.hfh-form textarea{
  width:100%!important;box-sizing:border-box!important;background:rgba(10,6,3,.66)!important;
  border:1px solid rgba(214,176,90,.32)!important;color:#efe3c4!important;border-radius:4px!important;
  padding:13px 15px!important;font-family:'Spectral',Georgia,serif!important;font-size:16px!important;
  line-height:1.4!important;transition:border-color .2s,box-shadow .2s,background .2s;}
.hfh-form input::placeholder,.hfh-form textarea::placeholder{color:#8a7a58!important;}
.hfh-form input:focus,.hfh-form select:focus,.hfh-form textarea:focus{outline:none!important;
  border-color:#d6b05a!important;background:rgba(14,9,4,.9)!important;box-shadow:0 0 0 3px rgba(199,154,58,.16)!important;}
.hfh-form textarea{min-height:118px!important;resize:vertical;}

/* Custom select chevron */
.hfh-form select{appearance:none;-webkit-appearance:none;-moz-appearance:none;padding-right:42px!important;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23c79a3a' stroke-width='2'/%3E%3C/svg%3E")!important;
  background-repeat:no-repeat!important;background-position:right 16px center!important;}
.hfh-form select option{background:#140b05;color:#efe3c4;}
.hfh-form .ginput_container_quantity input,.hfh-form input[type=number]{max-width:150px!important;}

/* Submit button */
.hfh-form .gform_footer{margin:30px 0 0!important;padding:0!important;text-align:center!important;}
.hfh-form .gform_button{font-family:var(--label)!important;font-weight:600!important;letter-spacing:.18em!important;
  text-transform:uppercase!important;font-size:12px!important;color:var(--ink)!important;cursor:pointer;width:auto!important;
  background:linear-gradient(180deg,var(--gold-lt),var(--gold) 52%,var(--gold-dk))!important;border:none!important;border-radius:2px!important;
  padding:15px 46px!important;box-shadow:0 4px 14px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,255,255,.55)!important;transition:transform .2s,filter .2s,box-shadow .2s;}
.hfh-form .gform_button:hover{transform:translateY(-2px);filter:brightness(1.04);box-shadow:0 10px 22px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.55)!important;}

/* Descriptions + validation */
.hfh-form .gfield_description{color:#9a8c70!important;font-size:13px!important;margin-top:6px!important;}
.hfh-form .gfield_error input,.hfh-form .gfield_error select,.hfh-form .gfield_error textarea{border-color:#c2606a!important;}
.hfh-form .gfield_validation_message,.hfh-form .validation_message{color:#d98a93!important;font-size:13px!important;
  margin-top:6px!important;background:none!important;border:none!important;padding:0!important;font-family:'Spectral',serif!important;}
.hfh-form .gform_validation_errors{background:rgba(120,30,40,.18)!important;border:1px solid rgba(194,96,106,.4)!important;
  border-radius:4px!important;box-shadow:none!important;}
.hfh-form .gform_validation_errors h2{color:#e7b8bd!important;}
.hfh-form-missing{color:#c2606a;font-style:italic;}

/* Combined order form — section headers, radio/checkbox choices, running total */
.hfh-form .gsection{border-bottom:1px solid rgba(214,176,90,.28);margin:10px 0 20px;padding-bottom:10px;}
.hfh-form .gsection_title{font-family:var(--label);text-transform:uppercase;letter-spacing:.14em;font-size:13px;color:#e9d09a;font-weight:600;}
.hfh-form input[type=radio],.hfh-form input[type=checkbox]{width:auto!important;accent-color:var(--gold);margin-right:9px;vertical-align:middle;}
.hfh-form .gfield_radio label,.hfh-form .gfield_checkbox label{display:inline;font-family:'Spectral',Georgia,serif;color:var(--sand);text-transform:none;letter-spacing:0;font-size:16px;}
.hfh-form .gfield_radio .gchoice,.hfh-form .gfield_checkbox .gchoice{margin:0 0 10px;}
.hfh-form .ginput_total,.hfh-form .gfield_total .ginput_total{color:var(--gold-lt)!important;font-family:var(--display);font-weight:600;font-size:24px;}

/* Forms collapse to full width on small screens */
@media (max-width:560px){
  .hfh-form{padding:30px 22px 28px;max-width:none;}
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.hfh-footer{position:relative;padding:80px 40px 56px;background:#0d0703;}
.hfh-footer__grid{max-width:1120px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:48px;align-items:start;}
.hfh-footer__logo{height:38px;width:auto;}
.hfh-footer__blurb{font-size:16px;line-height:1.7;color:#8f8164;margin:18px 0 0;max-width:300px;}
.hfh-footer__socials{display:flex;gap:18px;margin-top:22px;font-family:var(--label);font-size:12px;letter-spacing:.18em;color:var(--copper);}
.hfh-footer__socials a{text-decoration:none;}
.hfh-footer__socials a:hover{color:#f3d98a;}
.hfh-footer__heading{font-family:var(--label);font-size:12px;letter-spacing:.24em;color:#bda06a;text-transform:uppercase;}
.hfh-footer__lines{font-size:16px;line-height:2.1;color:#9a8c70;margin-top:14px;}
.hfh-footer__lines a{text-decoration:none;color:#c9bda0;}
.hfh-footer__bar{max-width:1120px;margin:48px auto 0;padding-top:26px;border-top:1px solid rgba(199,154,58,.15);display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-family:var(--label);font-size:11px;letter-spacing:.16em;color:#9c8c66;text-transform:uppercase;}

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
[data-reveal]{opacity:0;transform:translateY(24px);}
[data-reveal].is-visible{opacity:1;transform:none;transition:opacity .9s cubic-bezier(.2,.7,.2,1),transform .9s cubic-bezier(.2,.7,.2,1);}

@media (prefers-reduced-motion:reduce){
  *{animation:none !important;}
  [data-reveal]{opacity:1 !important;transform:none !important;}
  html{scroll-behavior:auto;}
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
/* Mid-range: squeeze the 8-item nav before the mobile menu takes over. */
@media (max-width:1200px) and (min-width:901px){
  .hfh-nav{padding:20px 30px;}
  .hfh-nav__links{gap:18px;letter-spacing:.12em;}
}
@media (max-width:900px){
  .hfh-nav{padding:16px 22px;}
  .hfh-nav__toggle{display:flex;}
  .hfh-chip{display:none;}
  .hfh-nav__links{position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;gap:0;margin:0;padding:6px 22px 16px;background:linear-gradient(180deg,rgba(16,10,4,.99),rgba(16,10,4,.97));border-bottom:1px solid rgba(199,154,58,.3);box-shadow:0 18px 40px rgba(0,0,0,.5);opacity:0;transform:translateY(-10px);pointer-events:none;transition:opacity .28s ease,transform .28s ease;}
  .hfh-nav.is-open .hfh-nav__links{opacity:1;transform:none;pointer-events:auto;}
  .hfh-nav__links li{width:100%;}
  .hfh-nav__links a{display:block;padding:14px 2px;font-size:14px;border-bottom:1px solid rgba(199,154,58,.12);}
  .hfh-nav__links li:last-child a{border-bottom:none;}
  .hfh-section{padding:80px 22px;}
  .hfh-about__grid{grid-template-columns:1fr;gap:40px;}
  .hfh-feature-grid{grid-template-columns:1fr 1fr;}
  .hfh-feature:nth-child(2n){border-right:none;}
  .hfh-package-grid{grid-template-columns:1fr;}
  .hfh-footer__grid{grid-template-columns:1fr;gap:32px;}
  .hfh-partners__grid{grid-template-columns:repeat(3,1fr);}
  .hfh-gallery{columns:3;}
}
@media (max-width:560px){
  .hfh-feature-grid{grid-template-columns:1fr;}
  .hfh-feature{border-right:none;}
  .hfh-tier{flex-wrap:wrap;}
  .hfh-tier__body{flex-basis:100%;order:3;}
  .hfh-stats{flex-direction:column;gap:24px;}
  /* Gallery masonry: two full-width columns, nothing cropped. */
  .hfh-gallery{columns:2;column-gap:8px;margin-top:30px;}
  .hfh-gallery__cell{margin-bottom:8px;}
  .hfh-prize-examples{font-size:12px;}
  .hfh-hero__date{font-size:24px;}
  .hfh-nav{padding:14px 16px;}
  .hfh-nav__brand img{height:34px;}
  .hfh-nav__cta{padding:9px 15px;font-size:11px;letter-spacing:.12em;}
  .hfh-nav__actions{gap:10px;}
}
