:root {
  --navy: #11333b;
  --navy-dark: #08242b;
  --gold: #c7924c;
  --cream: #f8f4ec;
  --white: #ffffff;
  --text: #36474c;
  --muted: #68777b;
  --border: #e7dfd3;
  --shadow: 0 20px 50px rgba(8, 36, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Palanquin", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.main-nav a,
.btn {
  font-family: "Times New Roman", serif;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.14;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.3vw, 4.35rem);
  font-weight: 400;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.subheading,
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Courgette", cursive;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 51, 59, 0.08);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(8, 36, 43, 0.1);
}

.nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  width: 108px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-weight: 600;
}

.main-nav a {
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 27px;
  height: 2px;
  display: block;
  margin: 6px;
  background: var(--navy);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-split {
  padding: 32px 0 64px;
  background: linear-gradient(180deg, #f7f2e9 0%, #ffffff 100%);
}

.hero-split-grid {
  width: min(1480px, calc(100% - 40px));
  min-height: 680px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 75%) minmax(330px, 25%);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-slider-panel {
  position: relative;
  min-width: 0;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 29, 35, 0.86) 0%, rgba(5, 29, 35, 0.42) 58%, rgba(5, 29, 35, 0.08) 100%);
}

.hero-copy {
  position: absolute;
  top: 49%;
  left: 55px;
  right: 55px;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
  transform: translateY(-50%);
}

.hero-copy h1 {
  color: var(--white);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 1.12rem;
}

.slide-caption {
  position: absolute;
  bottom: 36px;
  left: 55px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
}

.slide-caption span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.slide-caption h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.slider-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.slide-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 36, 43, 0.55);
  color: var(--white);
  cursor: pointer;
  transition: 0.25s ease;
}

.slide-btn:hover {
  background: var(--gold);
}

.hero-form-card {
  min-width: 0;
  min-height: 680px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
  background: var(--white);
}

.hero-form-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.hero-text {
  margin-bottom: 18px;
  font-size: 0.91rem;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 11px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.lead-form label {
  display: grid;
  gap: 4px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 600;
}

.lead-form label small {
  color: var(--muted);
  font-weight: 400;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  background: var(--white);
  color: var(--text);
  font-size: 0.88rem;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 146, 76, 0.13);
}

.lead-form textarea {
  min-height: 72px;
  max-height: 110px;
  resize: vertical;
}

.lead-form .invalid {
  border-color: #b42318;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-note {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 14px 25px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  width: 100%;
  margin-top: 2px;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
}

.intro-copy {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.benefits-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefits-grid article {
  padding: 28px;
  border: 1px solid #f0e8da;
  border-radius: 18px;
  background: var(--cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefits-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(17, 51, 59, 0.09);
}

.benefits-grid i {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.7rem;
}

.benefits-grid p {
  margin-bottom: 0;
}

.events-section {
  background: #f7f7f4;
}

.section-title {
  max-width: 870px;
  text-align: center;
}

.section-title > p:last-child {
  max-width: 720px;
  margin-inline: auto;
}

.event-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(17, 51, 59, 0.08);
}

.event-card > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.event-card-body {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.event-details p {
  margin-bottom: 11px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.event-details strong {
  color: var(--navy);
}

.text-link {
  margin-top: auto;
  padding-top: 12px;
  color: var(--gold);
  font-weight: 700;
}

.table-box {
  margin-top: 38px;
  overflow: auto;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(17, 51, 59, 0.09);
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid #edf0ef;
  text-align: left;
}

th {
  background: var(--navy);
  color: var(--white);
}

tbody tr:hover {
  background: #fbf7f0;
}

.capacity-note {
  margin-top: 22px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--cream);
}

.capacity-note i {
  margin-top: 5px;
  color: var(--gold);
}

.capacity-note p {
  margin: 0;
}

.cta-section {
  padding: 0 0 90px;
}

.cta-box {
  padding: 65px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--navy), #1b5964);
  color: var(--white);
  text-align: center;
}

.cta-box h2,
.cta-box .subheading {
  color: var(--white);
}

.cta-box p {
  max-width: 680px;
  margin-inline: auto;
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: var(--gold);
  color: var(--white);
}

.site-footer {
  padding: 70px 0 0;
  background: #0b2430;
  color: #d7e0e2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 60px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
}

.site-footer p {
  margin-bottom: 16px;
  color: #d5dfe2;
  line-height: 1.9;
}

.site-footer a {
  color: #d5dfe2;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-contact i {
  width: 24px;
  margin-right: 8px;
  color: var(--gold);
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 55px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-size: 1.8rem;
}

@media (max-width: 1180px) {
  .hero-split-grid {
    grid-template-columns: minmax(0, 68%) minmax(320px, 32%);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 13px 6px;
    border-bottom: 1px solid var(--border);
  }

  .hero-split-grid {
    width: min(100% - 30px, 900px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .hero-slider-panel {
    min-height: 560px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .hero-form-card {
    min-height: auto;
    padding: 30px;
    border: 0;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .hero-form-card .form-row.two {
    grid-template-columns: 1fr 1fr;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .section {
    padding: 65px 0;
  }

  .hero-split {
    padding-top: 16px;
  }

  .hero-split-grid {
    width: min(100% - 22px, 620px);
    gap: 14px;
  }

  .hero-slider-panel {
    min-height: 510px;
    border-radius: 18px;
  }

  .hero-copy {
    top: 45%;
    left: 22px;
    right: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .slide-caption {
    bottom: 24px;
    left: 22px;
  }

  .slider-controls {
    right: 18px;
    bottom: 18px;
  }

  .hero-form-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .hero-form-card .form-row.two,
  .benefits-grid,
  .event-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-card > img {
    height: 225px;
  }

  .cta-box {
    padding: 45px 22px;
  }

  .footer-bottom {
    gap: 8px;
  }

  .whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 420px) {
  .hero-slider-panel {
    min-height: 455px;
  }

  .slide-caption {
    display: none;
  }

  .slider-controls {
    bottom: 16px;
  }
}
