:root {
  --fod-navy: #10243a;
  --fod-navy-2: #173a55;
  --fod-ink: #17212b;
  --fod-slate: #5d6975;
  --fod-cream: #f7f0e3;
  --fod-paper: #fffdf8;
  --fod-gold: #d7a62a;
  --fod-gold-dark: #a97808;
  --fod-field: #2e6a47;
  --fod-field-dark: #214d35;
  --fod-red: #a52a2f;
  --fod-line: rgba(16, 36, 58, 0.13);
  --fod-shadow: 0 20px 55px rgba(13, 31, 47, 0.12);
  --fod-shadow-sm: 0 10px 28px rgba(13, 31, 47, 0.09);
  --fod-radius: 24px;
  --fod-radius-sm: 14px;
  --fod-container: 1180px;
  --fod-transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body.fod-site {
  margin: 0;
  background: var(--fod-paper);
  color: var(--fod-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.fod-site::selection {
  background: rgba(215, 166, 42, 0.3);
  color: var(--fod-navy);
}

body.fod-site img {
  max-width: 100%;
}

body.fod-site a {
  color: var(--fod-field);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.fod-site h1,
body.fod-site h2,
body.fod-site h3,
body.fod-site h4 {
  margin-top: 0;
  color: var(--fod-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

body.fod-site p {
  margin-top: 0;
}

.fod-container {
  width: min(calc(100% - 40px), var(--fod-container));
  margin-inline: auto;
}

.fod-section {
  padding: 86px 0;
}

.fod-section--cream {
  background: var(--fod-cream);
}

.fod-section--paper {
  background: var(--fod-paper);
}

.fod-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--fod-gold-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fod-section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.fod-section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.fod-section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.07;
}

.fod-section-heading p {
  margin-bottom: 0;
  color: var(--fod-slate);
  font-size: 1.03rem;
}

/* TOP NOTE */
.fod-topnote {
  background: var(--fod-navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.79rem;
}

.fod-topnote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
}

.fod-topnote p {
  margin: 0;
}

.fod-topnote a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* HEADER */
.fod-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--fod-transition), border-color var(--fod-transition);
}

.fod-header.is-scrolled {
  border-color: var(--fod-line);
  box-shadow: 0 8px 24px rgba(13, 31, 47, 0.08);
}

.fod-navbar {
  min-height: 86px;
}

.fod-brand img {
  display: block;
  width: 245px;
  max-height: 64px;
  object-fit: contain;
}

.fod-nav-link {
  position: relative;
  padding: 12px 11px !important;
  color: var(--fod-navy) !important;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.fod-nav-link::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  background: var(--fod-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--fod-transition);
}

.fod-nav-link:hover::after,
.fod-nav-link.active::after {
  transform: scaleX(1);
}

.fod-nav-cta,
.fod-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform var(--fod-transition), box-shadow var(--fod-transition), background var(--fod-transition), color var(--fod-transition), border-color var(--fod-transition);
}

.fod-nav-cta,
.fod-button--primary {
  background: var(--fod-field);
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(46, 106, 71, 0.2);
}

.fod-nav-cta:hover,
.fod-button--primary:hover {
  background: var(--fod-field-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(46, 106, 71, 0.25);
}

.fod-button--secondary {
  border-color: rgba(16, 36, 58, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: var(--fod-navy) !important;
}

.fod-button--secondary:hover {
  border-color: var(--fod-navy);
  background: #fff;
  color: var(--fod-navy) !important;
  transform: translateY(-2px);
}

.fod-button--gold {
  background: var(--fod-gold);
  color: var(--fod-navy) !important;
}

.fod-button--gold:hover {
  background: #e4b63f;
  color: var(--fod-navy) !important;
  transform: translateY(-2px);
}

.fod-navbar-toggler {
  width: 46px;
  height: 46px;
  border: 1px solid var(--fod-line) !important;
  border-radius: 12px !important;
  background: #fff;
}

/* HERO */
.fod-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(10, 27, 43, 0.94) 0%, rgba(16, 36, 58, 0.86) 45%, rgba(16, 36, 58, 0.28) 72%, rgba(16, 36, 58, 0.08) 100%),
    url("../img/hero-img.jpg") center 44% / cover no-repeat;
  color: #fff;
}

.fod-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(16, 36, 58, 0.36));
}

.fod-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 58px;
  align-items: center;
  min-height: 680px;
  padding: 88px 0 104px;
}

.fod-hero-copy {
  max-width: 730px;
}

.fod-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #f4cf70;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fod-hero-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.fod-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.95;
  text-wrap: balance;
}

.fod-hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.fod-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.fod-hero-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.fod-hero-disclaimer i {
  margin-top: 3px;
  color: #f4cf70;
}

.fod-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.fod-hero-panel-top {
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fod-hero-panel-top span {
  display: block;
  margin-bottom: 5px;
  color: #f4cf70;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fod-hero-panel-top strong {
  display: block;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.fod-hero-facts {
  display: grid;
  margin: 0;
  padding: 8px 24px 22px;
  list-style: none;
}

.fod-hero-facts li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.fod-hero-facts li:last-child {
  border-bottom: 0;
}

.fod-hero-facts i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(244, 207, 112, 0.14);
  color: #f4cf70;
}

.fod-hero-facts small,
.fod-hero-facts strong {
  display: block;
}

.fod-hero-facts small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fod-hero-facts strong {
  color: #fff;
  font-size: 0.92rem;
}

/* QUICK FACTS */
.fod-quickfacts {
  position: relative;
  z-index: 4;
  margin-top: -54px;
}

.fod-quickfacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--fod-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--fod-shadow);
}

.fod-quickfact {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 20px 22px;
  border-right: 1px solid var(--fod-line);
}

.fod-quickfact:last-child {
  border-right: 0;
}

.fod-quickfact i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--fod-cream);
  color: var(--fod-field);
  font-size: 1.2rem;
}

.fod-quickfact small,
.fod-quickfact strong {
  display: block;
}

.fod-quickfact small {
  margin-bottom: 2px;
  color: var(--fod-slate);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fod-quickfact strong {
  color: var(--fod-navy);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* REGISTRATION */
.fod-registration {
  background:
    radial-gradient(circle at 5% 8%, rgba(215, 166, 42, 0.14), transparent 28%),
    linear-gradient(180deg, var(--fod-paper), #f3eee4);
}

.fod-registration-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.fod-registration-intro h2 {
  margin-bottom: 13px;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
  line-height: 1;
}

.fod-registration-intro p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--fod-slate);
}

.fod-registration-note {
  padding: 18px 20px;
  border-left: 4px solid var(--fod-gold);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.74);
  color: var(--fod-slate);
  font-size: 0.83rem;
}

.fod-registration-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.fod-registration-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--fod-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
}

.fod-registration-benefit i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(46, 106, 71, 0.1);
  color: var(--fod-field);
}

.fod-registration-benefit strong,
.fod-registration-benefit span {
  display: block;
}

.fod-registration-benefit strong {
  color: var(--fod-navy);
  font-size: 0.9rem;
}

.fod-registration-benefit span {
  color: var(--fod-slate);
  font-size: 0.76rem;
  line-height: 1.45;
}

.fod-form-shell {
  max-width: 1020px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgba(16, 36, 58, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--fod-shadow);
}

.fod-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 20px;
  border-bottom: 1px solid var(--fod-line);
}

.fod-form-header span {
  color: var(--fod-field);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fod-form-header p {
  margin: 0;
  color: var(--fod-slate);
  font-size: 0.78rem;
  text-align: right;
}

.fod-jotform-wrap {
  padding-top: 14px;
  overflow: hidden;
}

.fod-jotform-wrap iframe {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
}

.fod-form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 12px 2px;
  color: var(--fod-slate);
  font-size: 0.73rem;
}

.fod-form-privacy i {
  margin-top: 3px;
  color: var(--fod-field);
}

/* FEATURE CARDS */
.fod-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fod-card {
  overflow: hidden;
  border: 1px solid var(--fod-line);
  border-radius: var(--fod-radius);
  background: #fff;
  box-shadow: var(--fod-shadow-sm);
  transition: transform var(--fod-transition), box-shadow var(--fod-transition);
}

.fod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fod-shadow);
}

.fod-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.fod-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.fod-card:hover .fod-card-media img {
  transform: scale(1.04);
}

.fod-card-body {
  padding: 25px;
}

.fod-card-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--fod-gold-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fod-card h3 {
  margin-bottom: 9px;
  font-size: 1.52rem;
  line-height: 1.15;
}

.fod-card p {
  margin-bottom: 17px;
  color: var(--fod-slate);
  font-size: 0.88rem;
}

.fod-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fod-field) !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none !important;
}

.fod-text-link i {
  transition: transform var(--fod-transition);
}

.fod-text-link:hover i {
  transform: translateX(4px);
}

/* STORY */
.fod-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.fod-story-media {
  position: relative;
}

.fod-story-media img {
  display: block;
  width: 100%;
  min-height: 480px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--fod-shadow);
}

.fod-story-tag {
  position: absolute;
  right: -24px;
  bottom: 30px;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--fod-navy);
  color: #fff;
  box-shadow: var(--fod-shadow-sm);
}

.fod-story-tag span {
  display: block;
  margin-bottom: 4px;
  color: #f4cf70;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fod-story-tag strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.fod-story-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.fod-story-copy > p {
  color: var(--fod-slate);
}

.fod-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.fod-check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.fod-check-list i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(46, 106, 71, 0.1);
  color: var(--fod-field);
}

.fod-check-list strong {
  color: var(--fod-navy);
}

/* CTA STRIP */
.fod-cta-strip {
  position: relative;
  overflow: hidden;
  background: var(--fod-navy);
  color: #fff;
}

.fod-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 30%, rgba(215, 166, 42, 0.2), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(46, 106, 71, 0.35), transparent 32%);
}

.fod-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 52px 0;
}

.fod-cta-inner h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.fod-cta-inner p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* FAQ */
.fod-faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.fod-faq-intro {
  position: sticky;
  top: 126px;
}

.fod-faq-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.fod-faq-intro p {
  color: var(--fod-slate);
}

.fod-faq-list {
  display: grid;
  gap: 13px;
}

.fod-faq-item {
  overflow: hidden;
  border: 1px solid var(--fod-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(13, 31, 47, 0.05);
}

.fod-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 21px;
  color: var(--fod-navy);
  font-size: 0.93rem;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.fod-faq-item summary::-webkit-details-marker {
  display: none;
}

.fod-faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--fod-cream);
  color: var(--fod-field);
  font-size: 1.2rem;
}

.fod-faq-item[open] summary::after {
  content: "−";
}

.fod-faq-answer {
  padding: 0 21px 20px;
  color: var(--fod-slate);
  font-size: 0.86rem;
}

.fod-faq-answer p:last-child {
  margin-bottom: 0;
}

/* PAGE HERO */
.fod-page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 82px;
  background:
    linear-gradient(100deg, rgba(16, 36, 58, 0.96), rgba(16, 36, 58, 0.74)),
    url("../img/carr03.jpg") center / cover no-repeat;
  color: #fff;
}

.fod-page-hero h1 {
  max-width: 860px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.fod-page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.fod-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fod-breadcrumbs a {
  color: #f4cf70 !important;
  text-decoration: none;
}

/* GUIDE */
.fod-guide-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.fod-guide-nav {
  position: sticky;
  top: 126px;
  padding: 20px;
  border: 1px solid var(--fod-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--fod-shadow-sm);
}

.fod-guide-nav span {
  display: block;
  margin-bottom: 10px;
  color: var(--fod-gold-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fod-guide-nav a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--fod-line);
  color: var(--fod-navy) !important;
  font-size: 0.81rem;
  font-weight: 700;
  text-decoration: none;
}

.fod-guide-nav a:last-child {
  border-bottom: 0;
}

.fod-guide-section {
  margin-bottom: 42px;
  scroll-margin-top: 125px;
}

.fod-guide-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.fod-guide-section > p {
  color: var(--fod-slate);
}

.fod-guide-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fod-guide-card {
  padding: 22px;
  border: 1px solid var(--fod-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(13, 31, 47, 0.05);
}

.fod-guide-card i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 13px;
  background: var(--fod-cream);
  color: var(--fod-field);
  font-size: 1.15rem;
}

.fod-guide-card h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.fod-guide-card p {
  margin-bottom: 0;
  color: var(--fod-slate);
  font-size: 0.83rem;
}

.fod-alert {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 19px;
  border-left: 4px solid var(--fod-gold);
  border-radius: 0 14px 14px 0;
  background: var(--fod-cream);
}

.fod-alert i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(215, 166, 42, 0.2);
  color: var(--fod-gold-dark);
}

.fod-alert p {
  margin-bottom: 0;
  color: var(--fod-slate);
  font-size: 0.84rem;
}

/* FOOTER */
.fod-footer {
  background: #0b1b2a;
  color: rgba(255, 255, 255, 0.68);
}

.fod-footer-main {
  padding: 66px 0 48px;
}

.fod-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.9fr 1fr;
  gap: 42px;
}

.fod-footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.fod-footer-logo img {
  width: 240px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.fod-footer h3 {
  margin-bottom: 15px;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fod-footer p {
  font-size: 0.8rem;
}

.fod-footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fod-footer-links a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.8rem;
  text-decoration: none;
}

.fod-footer-links a:hover {
  color: #f4cf70 !important;
}

.fod-footer-contact {
  display: grid;
  gap: 12px;
}

.fod-footer-contact a {
  color: #fff !important;
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
}

.fod-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fod-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fod-footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
}

/* BACK TO TOP */
.fod-back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--fod-navy);
  color: #fff;
  box-shadow: 0 10px 25px rgba(13, 31, 47, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--fod-transition), transform var(--fod-transition);
}

.fod-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .fod-hero-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
  }

  .fod-footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .fod-footer-brand {
    grid-column: 1 / -1;
    max-width: 650px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 90px;
  }

  .fod-section {
    padding: 70px 0;
  }

  .fod-navbar {
    min-height: 76px;
  }

  .fod-brand img {
    width: 210px;
  }

  .fod-navbar-collapse {
    margin-top: 12px;
    padding: 16px;
    border: 1px solid var(--fod-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--fod-shadow-sm);
  }

  .fod-nav-link::after {
    display: none;
  }

  .fod-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 0 110px;
  }

  .fod-hero-panel {
    max-width: 560px;
  }

  .fod-quickfacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fod-quickfact:nth-child(2) {
    border-right: 0;
  }

  .fod-quickfact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--fod-line);
  }

  .fod-registration-intro,
  .fod-story-grid,
  .fod-faq-grid,
  .fod-guide-layout {
    grid-template-columns: 1fr;
  }

  .fod-registration-note {
    max-width: 720px;
  }

  .fod-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fod-story-tag {
    right: 18px;
  }

  .fod-faq-intro,
  .fod-guide-nav {
    position: static;
  }

  .fod-guide-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 18px;
  }

  .fod-guide-nav span {
    grid-column: 1 / -1;
  }

  .fod-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .fod-container {
    width: min(calc(100% - 28px), var(--fod-container));
  }

  .fod-section {
    padding: 56px 0;
  }

  .fod-topnote-inner {
    justify-content: center;
    text-align: center;
  }

  .fod-topnote-inner > :last-child {
    display: none;
  }

  .fod-hero {
    background:
      linear-gradient(180deg, rgba(10, 27, 43, 0.9), rgba(16, 36, 58, 0.78)),
      url("../img/hero-img.jpg") center / cover no-repeat;
  }

  .fod-hero-inner {
    padding: 70px 0 100px;
  }

  .fod-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .fod-hero-actions,
  .fod-registration-benefits,
  .fod-card-grid,
  .fod-guide-cards {
    grid-template-columns: 1fr;
  }

  .fod-hero-actions {
    display: grid;
  }

  .fod-hero-actions .fod-button {
    width: 100%;
  }

  .fod-quickfacts {
    margin-top: -40px;
  }

  .fod-quickfacts-grid {
    grid-template-columns: 1fr;
  }

  .fod-quickfact {
    border-right: 0;
    border-bottom: 1px solid var(--fod-line);
  }

  .fod-quickfact:last-child {
    border-bottom: 0;
  }

  .fod-registration-intro {
    gap: 22px;
  }

  .fod-registration-benefits {
    display: grid;
  }

  .fod-form-shell {
    padding: 10px;
    border-radius: 18px;
  }

  .fod-form-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .fod-form-header p {
    text-align: left;
  }

  .fod-card-grid {
    display: grid;
  }

  .fod-story-media img {
    min-height: 360px;
  }

  .fod-story-tag {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -35px 14px 0;
  }

  .fod-page-hero {
    padding: 72px 0 62px;
  }

  .fod-guide-nav {
    grid-template-columns: 1fr;
  }

  .fod-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fod-footer-brand {
    grid-column: auto;
  }

  .fod-footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .fod-brand img {
    width: 175px;
  }

  .fod-hero-panel-top,
  .fod-hero-facts {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   HOME PAGE FIXES / FIELD OF DREAMS TICKETS
   ========================================================= */

/* ---------- HEADER ALIGNMENT ---------- */
.fod-navbar .fod-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.fod-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.fod-brand img {
  display: block;
  width: 260px;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.fod-navbar-collapse {
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.fod-navbar {
  min-height: 86px;
}

/* ---------- HERO LEGIBILITY ---------- */
.fod-hero {
  background:
    linear-gradient(
      100deg,
      rgba(7, 21, 35, 0.97) 0%,
      rgba(10, 27, 43, 0.94) 42%,
      rgba(16, 36, 58, 0.65) 72%,
      rgba(16, 36, 58, 0.24) 100%
    ),
    url("../img/hero-img.jpg") center 44% / cover no-repeat;
}

.fod-hero h1 {
  color: #fff7e8;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.fod-hero-lead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.fod-hero-disclaimer {
  color: rgba(255, 255, 255, 0.84);
}

.fod-hero-panel {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.22);
}

/* ---------- HERO COUNTDOWN ---------- */
.fod-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 0 0 26px;
}

.fod-countdown-item {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.fod-countdown-item span {
  display: block;
  color: #ffffff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.fod-countdown-item small {
  display: block;
  margin-top: 8px;
  color: #f4cf70;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* ---------- REGISTRATION LAYOUT ---------- */
.fod-registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.fod-registration-main {
  min-width: 0;
}

.fod-registration-benefits {
  max-width: none;
  margin: 0 0 24px;
}

.fod-form-shell {
  max-width: none;
  margin: 0;
}

.fod-jotform-wrap > section {
  width: 100%;
}

.fod-registration-sidebar {
  position: relative;
}

.fod-registration-sidecard {
  position: sticky;
  top: 128px;
  padding: 24px;
  border: 1px solid var(--fod-line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
  box-shadow: var(--fod-shadow);
}

.fod-registration-sidekicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--fod-gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fod-registration-sidecard h3 {
  margin-bottom: 16px;
  color: var(--fod-navy);
  font-size: 1.6rem;
  line-height: 1.12;
}

.fod-registration-side-list {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.fod-registration-side-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.fod-registration-side-list i {
  color: var(--fod-field);
  font-size: 1rem;
  margin-top: 2px;
}

.fod-registration-side-list strong,
.fod-registration-side-list small {
  display: block;
}

.fod-registration-side-list strong {
  color: var(--fod-navy);
  font-size: 0.92rem;
  line-height: 1.25;
}

.fod-registration-side-list small {
  color: var(--fod-slate);
  font-size: 0.77rem;
  line-height: 1.45;
}

.fod-registration-side-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  padding: 14px 14px 0;
  border-top: 1px solid var(--fod-line);
}

.fod-registration-side-note i {
  color: var(--fod-field);
  margin-top: 2px;
}

.fod-registration-side-note p {
  margin: 0;
  color: var(--fod-slate);
  font-size: 0.76rem;
  line-height: 1.5;
}

/* ---------- FINAL CTA LEGIBILITY ---------- */
.fod-cta-strip {
  background: #0d2237;
}

.fod-cta-strip::before {
  background:
    radial-gradient(circle at 8% 28%, rgba(215, 166, 42, 0.24), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(46, 106, 71, 0.42), transparent 34%);
}

.fod-cta-inner h2 {
  color: #ffffff !important;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.fod-cta-inner p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.02rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
  .fod-registration-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 991.98px) {
  .fod-navbar .fod-container {
    gap: 16px;
  }

  .fod-brand img {
    width: 220px;
  }

  .fod-navbar-collapse {
    align-items: flex-start;
    padding-top: 16px;
  }

  .fod-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 72px 0 90px;
  }

  .fod-registration-layout {
    grid-template-columns: 1fr;
  }

  .fod-registration-sidebar {
    order: -1;
  }

  .fod-registration-sidecard {
    position: static;
    top: auto;
  }

  .fod-countdown {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .fod-hero {
    background:
      linear-gradient(
        180deg,
        rgba(7, 21, 35, 0.96) 0%,
        rgba(10, 27, 43, 0.88) 55%,
        rgba(16, 36, 58, 0.58) 100%
      ),
      url("../img/hero-img.jpg") center / cover no-repeat;
  }

  .fod-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    line-height: 0.95;
  }

  .fod-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fod-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================================
   FINAL HOME CORRECTIONS
   Header height, hero title and sticky registration panel
========================================================= */

/* ---------- COMPACT DESKTOP HEADER ---------- */
@media (min-width: 992px) {
  body.fod-site .fod-header {
    height: 110px !important;
    min-height: 110px !important;
    max-height: 110px !important;
  }

  body.fod-site .fod-navbar,
  body.fod-site .fod-navbar > .fod-container {
    height: 110px !important;
    min-height: 110px !important;
    max-height: 110px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body.fod-site .fod-brand img {
    width: 235px !important;
    max-width: 235px !important;
    height: auto !important;
    max-height: 64px !important;
  }

  body.fod-site .fod-navbar-collapse {
    height: 100% !important;
  }
}

/* ---------- FORCE HERO TITLE VISIBILITY ---------- */
body.fod-site #home-hero-title {
  position: relative !important;
  z-index: 5 !important;

  color: #fff8ea !important;
  -webkit-text-fill-color: #fff8ea !important;

  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  mix-blend-mode: normal !important;

  text-shadow:
    0 3px 2px rgba(0, 0, 0, 0.28),
    0 12px 34px rgba(0, 0, 0, 0.7) !important;
}

/* Darker layer specifically behind the hero copy */
body.fod-site .fod-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  z-index: 1 !important;

  width: 68% !important;

  background: linear-gradient(
    90deg,
    rgba(4, 15, 26, 0.72) 0%,
    rgba(5, 18, 31, 0.48) 66%,
    transparent 100%
  ) !important;

  pointer-events: none !important;
}

body.fod-site .fod-hero-inner {
  position: relative !important;
  z-index: 3 !important;
}

/* ---------- ACTUALLY STICKY REGISTRATION PANEL ---------- */
@media (min-width: 992px) {
  body.fod-site .fod-registration-layout {
    position: relative !important;
    align-items: stretch !important;
  }

  body.fod-site .fod-registration-sidebar {
    position: relative !important;
    align-self: stretch !important;

    display: block !important;
    height: auto !important;
    min-height: 100% !important;
  }

  body.fod-site .fod-registration-sidecard {
    position: sticky !important;
    top: 126px !important;

    height: fit-content !important;
    max-height: calc(100vh - 150px) !important;
    overflow-y: auto !important;
  }
}

/* ---------- MOBILE HEADER RESET ---------- */
@media (max-width: 991.98px) {
  body.fod-site .fod-header,
  body.fod-site .fod-navbar,
  body.fod-site .fod-navbar > .fod-container {
    height: auto !important;
    min-height: 82px !important;
    max-height: none !important;
  }

  body.fod-site .fod-hero::before {
    width: 100% !important;
    background: rgba(5, 18, 31, 0.42) !important;
  }

  body.fod-site .fod-registration-sidecard {
    position: static !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}