
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root{
  --hoth-paper:#FBFAF7;
  --hoth-white:#FFFFFF;
  --hoth-ink:#2F2930;
  --hoth-muted:#6E666C;
  --hoth-plum:#7B5F7D;
  --hoth-plum-soft:#A890A9;
  --hoth-lilac:#EFE8F1;
  --hoth-lilac-2:#F6F1F6;
  --hoth-line:#DED5DE;
  --hoth-radius:22px;
  --hoth-shadow:0 18px 60px rgba(55,42,55,.10);
  --hoth-max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--hoth-paper);color:var(--hoth-ink);font-family:"DM Sans",Arial,sans-serif}
.hoth-site{overflow:hidden}
.hoth-wrap{width:min(calc(100% - 40px),var(--hoth-max));margin:0 auto}
.hoth-section{padding:96px 0}
.hoth-section--tight{padding:62px 0}
.hoth-kicker{
  margin:0 0 12px;
  font-size:12px;
  line-height:1.2;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--hoth-plum);
}
.hoth-display{
  margin:0;
  max-width:900px;
  font-family:"Playfair Display",Georgia,serif;
  font-weight:500;
  font-size:clamp(48px,8vw,96px);
  line-height:.95;
  letter-spacing:-.035em;
}
.hoth-h2{
  margin:0;
  font-family:"Playfair Display",Georgia,serif;
  font-weight:500;
  font-size:clamp(38px,5vw,66px);
  line-height:1.02;
  letter-spacing:-.025em;
}
.hoth-h3{
  margin:0;
  font-family:"Playfair Display",Georgia,serif;
  font-weight:500;
  font-size:30px;
  line-height:1.1;
}
.hoth-lead{
  margin:22px 0 0;
  max-width:760px;
  font-size:clamp(19px,2vw,25px);
  line-height:1.55;
  color:var(--hoth-muted);
}
.hoth-body{
  font-size:17px;
  line-height:1.75;
  color:var(--hoth-muted);
}
.hoth-btns{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
.hoth-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 21px;
  border-radius:999px;
  border:1px solid var(--hoth-plum);
  background:var(--hoth-plum);
  color:white!important;
  text-decoration:none!important;
  font-weight:600;
  font-size:14px;
  letter-spacing:.01em;
  transition:transform .2s ease,background .2s ease,color .2s ease;
}
.hoth-btn:hover{transform:translateY(-1px);background:#6E536F}
.hoth-btn--ghost{background:transparent;color:var(--hoth-plum)!important}
.hoth-btn--ghost:hover{background:var(--hoth-lilac)}
.hoth-btn--light{background:var(--hoth-white);border-color:var(--hoth-white);color:var(--hoth-ink)!important}
.hoth-link{color:var(--hoth-plum);font-weight:600;text-decoration-thickness:1px;text-underline-offset:3px}

/* microsite masthead */
.hoth-masthead{
  position:absolute;
  z-index:10;
  inset:0 0 auto 0;
  padding:24px 0;
}
.hoth-masthead__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.hoth-brand{
  color:white!important;
  text-decoration:none!important;
  font-family:"Playfair Display",Georgia,serif;
  font-size:22px;
  letter-spacing:.01em;
}
.hoth-nav{display:flex;align-items:center;gap:23px}
.hoth-nav a{
  color:white!important;
  text-decoration:none!important;
  font-size:13px;
  font-weight:500;
  letter-spacing:.04em;
}
.hoth-nav .hoth-nav-donate{
  border:1px solid rgba(255,255,255,.65);
  border-radius:999px;
  padding:9px 15px;
}

/* hero */
.hoth-hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:flex-end;
  isolation:isolate;
  color:#fff;
  background:#655766;
}
.hoth-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:var(--hero-image);
  background-size:cover;
  background-position:center;
}
.hoth-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(180deg,rgba(30,22,30,.20) 0%,rgba(30,22,30,.20) 35%,rgba(30,22,30,.72) 100%),
    linear-gradient(90deg,rgba(40,31,40,.20),rgba(40,31,40,0) 70%);
}
.hoth-hero__content{padding:185px 0 74px}
.hoth-hero .hoth-kicker{color:#F1E8F1}
.hoth-hero__meta{
  margin-top:30px;
  display:flex;
  flex-wrap:wrap;
  gap:10px 26px;
  font-size:15px;
  font-weight:500;
}
.hoth-hero__meta span{position:relative}
.hoth-hero__meta span:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-15px;
  top:50%;
  width:4px;height:4px;border-radius:50%;
  background:rgba(255,255,255,.65);
}
.hoth-hero__tagline{
  margin:20px 0 0;
  max-width:650px;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.88);
}

/* intro / photo split */
.hoth-split{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.8fr);
  gap:72px;
  align-items:center;
}
.hoth-photo{
  min-height:520px;
  border-radius:var(--hoth-radius);
  overflow:hidden;
  background:#EDE7ED;
  box-shadow:var(--hoth-shadow);
}
.hoth-photo img{width:100%;height:100%;min-height:520px;display:block;object-fit:cover}
.hoth-photo--tree img{object-position:center}
.hoth-pull{
  margin:34px 0 0;
  padding-left:23px;
  border-left:1px solid var(--hoth-plum-soft);
  font-family:"Playfair Display",Georgia,serif;
  font-style:italic;
  font-size:25px;
  line-height:1.45;
}

/* what to expect */
.hoth-soft{background:var(--hoth-lilac-2)}
.hoth-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:42px;
}
.hoth-card{
  padding:27px;
  min-height:178px;
  border:1px solid var(--hoth-line);
  border-radius:18px;
  background:rgba(255,255,255,.55);
}
.hoth-card__n{
  display:inline-grid;
  place-items:center;
  width:34px;height:34px;
  margin-bottom:28px;
  border-radius:50%;
  border:1px solid var(--hoth-plum-soft);
  color:var(--hoth-plum);
  font-family:"Playfair Display",Georgia,serif;
  font-size:15px;
}
.hoth-card h3{margin:0 0 8px;font-size:17px}
.hoth-card p{margin:0;color:var(--hoth-muted);line-height:1.6;font-size:14px}

/* registration */
.hoth-register{
  background:var(--hoth-white);
  border:1px solid var(--hoth-line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--hoth-shadow);
}
.hoth-register__head{
  padding:46px 46px 34px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:end;
  border-bottom:1px solid var(--hoth-line);
}
.hoth-register__head p{margin:10px 0 0;max-width:650px;color:var(--hoth-muted);line-height:1.65}
.hoth-register__frame{min-height:650px;background:#fff}
.hoth-register__frame iframe{
  width:100%;
  min-height:720px;
  border:0;
  display:block;
}
.hoth-placeholder{
  min-height:540px;
  display:grid;
  place-items:center;
  padding:40px;
  text-align:center;
  background:
    linear-gradient(135deg,var(--hoth-lilac-2),#fff);
}
.hoth-placeholder__box{
  max-width:590px;
  padding:42px;
  border:1px dashed var(--hoth-plum-soft);
  border-radius:18px;
}
.hoth-placeholder__box strong{display:block;font-family:"Playfair Display",Georgia,serif;font-size:30px;font-weight:500}
.hoth-placeholder__box p{color:var(--hoth-muted);line-height:1.6}

/* event details band */
.hoth-details{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  border-top:1px solid var(--hoth-line);
  border-bottom:1px solid var(--hoth-line);
}
.hoth-detail{padding:34px 28px}
.hoth-detail:not(:last-child){border-right:1px solid var(--hoth-line)}
.hoth-detail small{display:block;margin-bottom:8px;text-transform:uppercase;letter-spacing:.14em;font-size:10px;color:var(--hoth-plum)}
.hoth-detail strong{font-size:16px;font-weight:500}

/* timeline */
.hoth-timeline{display:grid;grid-template-columns:repeat(4,1fr);margin-top:50px;border-top:1px solid var(--hoth-line)}
.hoth-year{padding:26px 26px 0 0;position:relative}
.hoth-year::before{
  content:"";
  position:absolute;
  top:-5px;left:0;
  width:9px;height:9px;border-radius:50%;
  background:var(--hoth-paper);border:1px solid var(--hoth-plum);
}
.hoth-year b{font-family:"Playfair Display",Georgia,serif;font-size:23px;font-weight:500}
.hoth-year p{font-size:13px;line-height:1.55;color:var(--hoth-muted)}

/* CTA */
.hoth-cta{
  margin:0 auto;
  padding:70px;
  border-radius:28px;
  background:var(--hoth-plum);
  color:#fff;
}
.hoth-cta .hoth-kicker{color:#E8DDE8}
.hoth-cta p{max-width:650px;color:rgba(255,255,255,.86);font-size:18px;line-height:1.65}

/* simple interior hero */
.hoth-inner-hero{padding:170px 0 78px;background:var(--hoth-lilac-2)}
.hoth-inner-hero .hoth-masthead{position:absolute}
.hoth-inner-hero .hoth-brand,.hoth-inner-hero .hoth-nav a{color:var(--hoth-ink)!important}
.hoth-inner-hero .hoth-nav .hoth-nav-donate{border-color:var(--hoth-plum);color:var(--hoth-plum)!important}
.hoth-inner-hero .hoth-display{font-size:clamp(48px,7vw,82px)}

/* contact */
.hoth-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:42px}
.hoth-contact-card{padding:38px;border:1px solid var(--hoth-line);border-radius:20px;background:#fff}
.hoth-contact-card p{color:var(--hoth-muted);line-height:1.7}
.hoth-label{margin:0 0 8px;font-size:11px;text-transform:uppercase;letter-spacing:.14em;color:var(--hoth-plum)}
.hoth-contact-big{font-family:"Playfair Display",Georgia,serif;font-size:30px;line-height:1.2}
.hoth-contact-list{display:grid;gap:22px;margin-top:30px}

/* donate */
.hoth-donate-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:62px;align-items:start}
.hoth-impact-list{display:grid;gap:12px;margin-top:28px}
.hoth-impact-item{padding:17px 0;border-top:1px solid var(--hoth-line);font-size:15px}
.hoth-impact-item:last-child{border-bottom:1px solid var(--hoth-line)}
.hoth-daffy-card{
  padding:42px;
  border:1px solid var(--hoth-line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--hoth-shadow);
}
.hoth-daffy-slot{margin-top:24px;min-height:340px;border-radius:16px;overflow:hidden}
.hoth-daffy-placeholder{
  min-height:340px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:30px;
  background:var(--hoth-lilac-2);
  border:1px dashed var(--hoth-plum-soft);
  border-radius:16px;
}

/* footer */
.hoth-footer{padding:46px 0 58px;border-top:1px solid var(--hoth-line)}
.hoth-footer__row{display:flex;justify-content:space-between;gap:30px;align-items:flex-end}
.hoth-footer__brand{font-family:"Playfair Display",Georgia,serif;font-size:24px}
.hoth-footer p{margin:7px 0 0;font-size:12px;color:var(--hoth-muted);line-height:1.6}
.hoth-footer__links{display:flex;gap:18px;flex-wrap:wrap}
.hoth-footer__links a{color:var(--hoth-muted)!important;text-decoration:none!important;font-size:12px}

/* responsive */
@media (max-width:900px){
  .hoth-section{padding:72px 0}
  .hoth-split,.hoth-donate-grid{grid-template-columns:1fr;gap:40px}
  .hoth-grid{grid-template-columns:repeat(2,1fr)}
  .hoth-timeline{grid-template-columns:repeat(2,1fr);gap:22px}
  .hoth-details{grid-template-columns:1fr}
  .hoth-detail:not(:last-child){border-right:0;border-bottom:1px solid var(--hoth-line)}
  .hoth-register__head{grid-template-columns:1fr}
  .hoth-contact-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .hoth-wrap{width:min(calc(100% - 28px),var(--hoth-max))}
  .hoth-masthead{padding:18px 0}
  .hoth-nav{gap:12px}
  .hoth-nav a:not(.hoth-nav-donate){display:none}
  .hoth-hero{min-height:700px}
  .hoth-hero__content{padding:150px 0 56px}
  .hoth-hero__meta{display:grid;gap:7px}
  .hoth-hero__meta span::after{display:none!important}
  .hoth-grid{grid-template-columns:1fr}
  .hoth-register__head{padding:32px 24px 25px}
  .hoth-cta{padding:42px 27px}
  .hoth-timeline{grid-template-columns:1fr}
  .hoth-contact-card,.hoth-daffy-card{padding:28px 23px}
  .hoth-footer__row{display:grid}
}


/* ===== Standalone Netlify refinements ===== */
body{
  min-width:320px;
}
a:focus-visible, button:focus-visible{
  outline:2px solid var(--hoth-plum);
  outline-offset:4px;
}
.hoth-masthead--inner{
  position:relative;
  background:var(--hoth-paper);
  color:var(--hoth-ink);
  border-bottom:1px solid var(--hoth-line);
}
.hoth-masthead--inner .hoth-brand,
.hoth-masthead--inner .hoth-nav a{
  color:var(--hoth-ink)!important;
}
.hoth-masthead--inner .hoth-nav-donate{
  border-color:var(--hoth-plum);
  color:var(--hoth-plum)!important;
}
.hoth-masthead--inner + .hoth-inner-hero{
  padding-top:110px;
}
.hoth-inner-hero{
  position:relative;
  padding:150px 0 82px;
  background:var(--hoth-lilac-2);
}
.hoth-inner-hero .hoth-display{
  font-size:clamp(48px,7vw,84px);
  max-width:1050px;
}
.hoth-inner-hero__image{
  margin-top:52px;
  border-radius:var(--hoth-radius);
  overflow:hidden;
  height:min(48vw,560px);
  min-height:320px;
}
.hoth-inner-hero__image img{
  width:100%;height:100%;object-fit:cover;display:block;
}

/* photo story */
.hoth-photo-story{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
  margin-top:44px;
}
.hoth-photo-story__stack{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:14px;
}
.hoth-photo-tile{
  position:relative;
  overflow:hidden;
  min-height:300px;
  border-radius:18px;
  background:#eee;
}
.hoth-photo-story > .hoth-photo-tile{min-height:620px}
.hoth-photo-tile img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .6s ease;
}
.hoth-photo-tile:hover img{transform:scale(1.015)}
.hoth-photo-caption{
  position:absolute;left:18px;bottom:16px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(8px);
  font-size:11px;
  color:var(--hoth-ink);
}

/* gallery */
.hoth-gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-auto-rows:120px;
  gap:12px;
  margin-top:44px;
}
.hoth-gallery figure{
  margin:0;
  overflow:hidden;
  border-radius:16px;
  background:#eee;
}
.hoth-gallery img{
  width:100%;height:100%;display:block;object-fit:cover;
}
.hoth-gallery figure:nth-child(1){grid-column:span 7;grid-row:span 3}
.hoth-gallery figure:nth-child(2){grid-column:span 5;grid-row:span 2}
.hoth-gallery figure:nth-child(3){grid-column:span 5;grid-row:span 3}
.hoth-gallery figure:nth-child(4){grid-column:span 7;grid-row:span 2}
.hoth-gallery figure:nth-child(5){grid-column:span 4;grid-row:span 3}
.hoth-gallery figure:nth-child(6){grid-column:span 4;grid-row:span 3}
.hoth-gallery figure:nth-child(7){grid-column:span 4;grid-row:span 3}
.hoth-gallery figure:nth-child(8){grid-column:span 12;grid-row:span 3}

/* annual details chip */
.hoth-date-note{
  display:inline-flex;
  margin-top:22px;
  padding:10px 14px;
  border:1px solid var(--hoth-line);
  border-radius:999px;
  color:var(--hoth-muted);
  font-size:13px;
}

/* registration fallback */
.hoth-registration-fallback{
  min-height:480px;
  display:grid;
  place-items:center;
  padding:40px;
  text-align:center;
  background:linear-gradient(135deg,var(--hoth-lilac-2),#fff);
}
.hoth-registration-fallback > div{max-width:590px}
.hoth-registration-fallback h3{
  margin:0 0 10px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:34px;
  font-weight:500;
}
.hoth-registration-fallback p{
  color:var(--hoth-muted);
  line-height:1.7;
}
.hoth-register__frame iframe{
  min-height:760px;
}

/* donate page */
.hoth-donate-hero{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:end;
}
.hoth-donate-hero__photo{
  height:540px;
  overflow:hidden;
  border-radius:var(--hoth-radius);
}
.hoth-donate-hero__photo img{
  width:100%;height:100%;object-fit:cover;display:block;
}
.hoth-daffy-embed{
  margin-top:24px;
}
.hoth-daffy-embed iframe{
  width:100%;
  min-height:520px;
  border:0;
}
.hoth-daffy-fallback{
  min-height:350px;
  display:grid;
  place-items:center;
  padding:32px;
  text-align:center;
  border:1px dashed var(--hoth-plum-soft);
  border-radius:16px;
  background:var(--hoth-lilac-2);
}
.hoth-daffy-fallback > div{max-width:520px}
.hoth-daffy-fallback h3{
  margin:0 0 10px;
  font-family:"Playfair Display",Georgia,serif;
  font-weight:500;
  font-size:30px;
}

/* contact */
.hoth-contact-photo{
  margin-top:44px;
  height:460px;
  border-radius:var(--hoth-radius);
  overflow:hidden;
}
.hoth-contact-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
}

/* footer annual mark */
.hoth-footer__year{
  font-family:"Playfair Display",Georgia,serif;
  color:var(--hoth-plum);
}

/* tiny editing helper: hidden in production */
.hoth-edit-note{display:none}

@media (max-width:900px){
  .hoth-photo-story,.hoth-donate-hero{grid-template-columns:1fr}
  .hoth-photo-story > .hoth-photo-tile{min-height:480px}
  .hoth-donate-hero__photo{height:460px}
}
@media (max-width:720px){
  .hoth-gallery{grid-template-columns:1fr;grid-auto-rows:auto}
  .hoth-gallery figure,
  .hoth-gallery figure:nth-child(n){
    grid-column:auto;grid-row:auto;height:300px;
  }
  .hoth-gallery figure:nth-child(1),
  .hoth-gallery figure:nth-child(8){height:400px}
  .hoth-photo-story{display:block}
  .hoth-photo-story__stack{display:grid;margin-top:12px}
  .hoth-photo-story > .hoth-photo-tile{min-height:420px}
  .hoth-photo-tile{min-height:300px}
}


/* ===== Native Harvest RSVP form ===== */
.hoth-rsvp-shell{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  background:var(--hoth-white);
  border:1px solid var(--hoth-line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--hoth-shadow);
}
.hoth-rsvp-intro{
  padding:52px 46px;
  background:var(--hoth-lilac-2);
  border-right:1px solid var(--hoth-line);
}
.hoth-rsvp-intro .hoth-h3{
  font-size:clamp(34px,4vw,48px);
}
.hoth-rsvp-intro p{
  color:var(--hoth-muted);
  line-height:1.7;
}
.hoth-rsvp-meta{
  display:grid;
  gap:18px;
  margin-top:38px;
  padding-top:28px;
  border-top:1px solid var(--hoth-line);
}
.hoth-rsvp-meta__item small{
  display:block;
  margin-bottom:5px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--hoth-plum);
  font-size:10px;
}
.hoth-rsvp-meta__item strong{
  font-size:14px;
  line-height:1.5;
  font-weight:500;
}
.hoth-rsvp-form{
  padding:50px 48px 46px;
  background:#fff;
}
.hoth-rsvp-form__heading{
  margin:0 0 30px;
  font-family:"Playfair Display",Georgia,serif;
  font-weight:500;
  font-size:30px;
  line-height:1.15;
}
.hoth-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 18px;
}
.hoth-field{
  display:grid;
  gap:8px;
}
.hoth-field--full{grid-column:1 / -1}
.hoth-field label,
.hoth-checkbox__copy strong{
  font-size:13px;
  line-height:1.35;
  font-weight:600;
  color:var(--hoth-ink);
}
.hoth-field__optional{
  margin-left:5px;
  font-weight:400;
  color:var(--hoth-muted);
}
.hoth-field input,
.hoth-field select,
.hoth-field textarea{
  width:100%;
  min-height:52px;
  padding:13px 14px;
  border:1px solid #D8D1D7;
  border-radius:10px;
  background:#fff;
  color:var(--hoth-ink);
  font:inherit;
  font-size:15px;
  outline:none;
  transition:border-color .16s ease,box-shadow .16s ease;
}
.hoth-field textarea{
  min-height:116px;
  resize:vertical;
  line-height:1.5;
}
.hoth-field input::placeholder,
.hoth-field textarea::placeholder{
  color:#A49CA3;
}
.hoth-field input:focus,
.hoth-field select:focus,
.hoth-field textarea:focus{
  border-color:var(--hoth-plum-soft);
  box-shadow:0 0 0 3px rgba(123,95,125,.09);
}
.hoth-field__hint{
  margin:0;
  color:var(--hoth-muted);
  font-size:11px;
  line-height:1.5;
}
.hoth-checkbox{
  grid-column:1 / -1;
  display:flex;
  align-items:flex-start;
  gap:11px;
  padding-top:2px;
}
.hoth-checkbox input{
  width:17px;
  height:17px;
  flex:none;
  margin-top:3px;
  accent-color:var(--hoth-plum);
}
.hoth-checkbox__copy{
  display:grid;
  gap:3px;
}
.hoth-checkbox__copy span{
  color:var(--hoth-muted);
  font-size:11px;
  line-height:1.55;
}
.hoth-rsvp-submit{
  grid-column:1 / -1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin-top:7px;
  padding-top:25px;
  border-top:1px solid var(--hoth-line);
}
.hoth-rsvp-submit p{
  margin:0;
  max-width:390px;
  color:var(--hoth-muted);
  font-size:11px;
  line-height:1.55;
}
.hoth-submit-btn{
  border:0;
  cursor:pointer;
  min-width:150px;
}
.hoth-required-note{
  margin:0 0 22px;
  color:var(--hoth-muted);
  font-size:11px;
}
.hoth-bot-field{
  position:absolute!important;
  left:-10000px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}
[hidden]{display:none!important}

/* Thank-you page */
.hoth-thanks{
  min-height:calc(100vh - 130px);
  display:grid;
  place-items:center;
  padding:150px 0 80px;
}
.hoth-thanks__card{
  width:min(calc(100% - 40px),820px);
  padding:70px;
  border:1px solid var(--hoth-line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--hoth-shadow);
  text-align:center;
}
.hoth-thanks__mark{
  display:grid;
  place-items:center;
  width:58px;height:58px;
  margin:0 auto 24px;
  border:1px solid var(--hoth-plum-soft);
  border-radius:50%;
  color:var(--hoth-plum);
  font-family:"Playfair Display",Georgia,serif;
  font-size:25px;
}
.hoth-thanks__card .hoth-h2{
  font-size:clamp(42px,6vw,64px);
}
.hoth-thanks__card .hoth-lead{
  margin-left:auto;
  margin-right:auto;
  font-size:19px;
}
.hoth-thanks__meta{
  margin:32px auto 0;
  max-width:560px;
  padding:20px 0;
  border-top:1px solid var(--hoth-line);
  border-bottom:1px solid var(--hoth-line);
  color:var(--hoth-muted);
  font-size:14px;
  line-height:1.7;
}

@media (max-width:900px){
  .hoth-rsvp-shell{grid-template-columns:1fr}
  .hoth-rsvp-intro{border-right:0;border-bottom:1px solid var(--hoth-line)}
}
@media (max-width:640px){
  .hoth-rsvp-intro{padding:37px 25px}
  .hoth-rsvp-form{padding:36px 24px 30px}
  .hoth-form-grid{grid-template-columns:1fr}
  .hoth-field--full,.hoth-checkbox,.hoth-rsvp-submit{grid-column:auto}
  .hoth-rsvp-submit{display:grid}
  .hoth-submit-btn{width:100%}
  .hoth-thanks__card{padding:48px 25px}
}


/* ===== Inline RSVP confirmation ===== */
.hoth-rsvp-success{
  align-self:stretch;
  display:grid;
  align-content:center;
  justify-items:center;
  min-height:640px;
  padding:56px 48px;
  text-align:center;
  background:#fff;
}
.hoth-rsvp-success__mark{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  margin-bottom:24px;
  border:1px solid var(--hoth-plum-soft);
  border-radius:50%;
  color:var(--hoth-plum);
  font-family:"Playfair Display",Georgia,serif;
  font-size:25px;
}
.hoth-rsvp-success > p:not(.hoth-kicker){
  max-width:520px;
  margin:16px auto 0;
  color:var(--hoth-muted);
  line-height:1.7;
}
.hoth-rsvp-success__details{
  width:min(100%,520px);
  margin:30px auto 4px;
  padding:20px 0;
  border-top:1px solid var(--hoth-line);
  border-bottom:1px solid var(--hoth-line);
  color:var(--hoth-muted);
  font-size:14px;
  line-height:1.7;
}
.hoth-submit-btn:disabled{
  opacity:.65;
  cursor:wait;
}


/* ===== Preserve full event photography (non-hero) =====
   The opening hero remains full-bleed. Every other photograph displays
   at its original aspect ratio so faces and compositions are never cropped.
*/
.hoth-photo,
.hoth-photo-tile,
.hoth-donate-hero__photo,
.hoth-contact-photo,
.hoth-inner-hero__image{
  height:auto;
  min-height:0;
}

.hoth-photo img,
.hoth-photo-tile img,
.hoth-donate-hero__photo img,
.hoth-contact-photo img,
.hoth-inner-hero__image img{
  display:block;
  width:100%;
  height:auto;
  min-height:0;
  object-fit:contain;
  object-position:center;
}

/* Keep the photo-story composition, but let each photograph determine its height. */
.hoth-photo-story{
  align-items:start;
}
.hoth-photo-story > .hoth-photo-tile,
.hoth-photo-story__stack .hoth-photo-tile{
  min-height:0;
}
.hoth-photo-story__stack{
  grid-template-rows:auto auto;
  align-content:start;
}

/* Editorial masonry gallery: portrait images stay portrait, landscapes stay wide.
   No fixed row heights and no image cropping. */
.hoth-gallery{
  display:block;
  columns:3;
  column-gap:12px;
  margin-top:44px;
}
.hoth-gallery figure,
.hoth-gallery figure:nth-child(n){
  display:block;
  width:100%;
  height:auto;
  margin:0 0 12px;
  break-inside:avoid;
  overflow:hidden;
  border-radius:16px;
  background:#eee;
}
.hoth-gallery img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
}

@media (max-width:900px){
  .hoth-gallery{
    columns:2;
  }
  .hoth-photo-story > .hoth-photo-tile{
    min-height:0;
  }
  .hoth-donate-hero__photo{
    height:auto;
  }
}

@media (max-width:640px){
  .hoth-gallery{
    columns:1;
  }
  .hoth-gallery figure,
  .hoth-gallery figure:nth-child(n){
    height:auto;
  }
  .hoth-photo-story > .hoth-photo-tile,
  .hoth-photo-tile{
    min-height:0;
  }
}


/* ===== 2026 Harvest theme ===== */
.hoth-hero__theme{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:8px 12px;
  margin-top:18px;
  color:#fff;
}
.hoth-hero__theme span{
  font-size:10px;
  line-height:1;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:rgba(255,255,255,.72);
}
.hoth-hero__theme strong{
  font-family:"Playfair Display",Georgia,serif;
  font-size:20px;
  line-height:1.2;
  font-style:italic;
  font-weight:500;
  color:#fff;
}

/* ===== Restore the composed 3-photo story only =====
   These are: Gathering in the garden / Live music / Young voices.
   The larger "Scenes from Harvest" gallery below remains fully uncropped.
*/
.hoth-photo-story{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  gap:14px;
  align-items:stretch;
  margin-top:44px;
}
.hoth-photo-story__stack{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:14px;
  align-content:stretch;
}
.hoth-photo-story .hoth-photo-tile{
  position:relative;
  overflow:hidden;
  height:303px;
  min-height:0;
  border-radius:18px;
  background:#eee;
}
.hoth-photo-story > .hoth-photo-tile{
  height:620px;
  min-height:0;
}
.hoth-photo-story .hoth-photo-tile img{
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  object-position:center center;
}
.hoth-photo-story .hoth-photo-caption{
  left:16px;
  bottom:14px;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.90);
  box-shadow:0 4px 18px rgba(35,29,35,.08);
  font-size:11px;
  letter-spacing:.01em;
}

/* Slightly favor the gathering itself in the aerial image. */
.hoth-photo-story > .hoth-photo-tile img{
  object-position:center 46%;
}

@media (max-width:900px){
  .hoth-photo-story{
    grid-template-columns:1fr;
  }
  .hoth-photo-story > .hoth-photo-tile{
    height:auto;
  }
  .hoth-photo-story > .hoth-photo-tile img{
    height:auto;
    object-fit:contain;
  }
  .hoth-photo-story__stack{
    grid-template-columns:1fr 1fr;
    grid-template-rows:none;
  }
  .hoth-photo-story__stack .hoth-photo-tile{
    height:300px;
  }
}

@media (max-width:640px){
  .hoth-hero__theme{
    display:grid;
    gap:5px;
  }
  .hoth-photo-story__stack{
    grid-template-columns:1fr;
  }
  .hoth-photo-story__stack .hoth-photo-tile{
    height:auto;
  }
  .hoth-photo-story__stack .hoth-photo-tile img{
    height:auto;
    object-fit:contain;
  }
}
