/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── VARIABLES ─── */
:root {
  --navy:      #003958;
  --navy2:     #002e48;
  --white:     #ffffff;
  --off-white: #f5f4f0;
  --gray:      #D6D5D6;
  --border:    #1a4e6e;
  --text:      #1a1a1a;
  --muted:     #555;
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 72px;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* ─── BUTTONS ─── */
.btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-apply:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 36px;
  border: 1.5px solid #ccc;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ─── SUBPAGE LAYOUT ─── */
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.page-title em { font-style: italic; }

.page-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.page-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

/* ─── SECTIONS ─── */
.section { margin-bottom: 40px; }

.section h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.section p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.section p + p { margin-top: 12px; }

.section ul {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section ul li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.section a { color: var(--navy); font-weight: 500; }

/* ─── CTA ROW ─── */
.cta-row {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── HIGHLIGHT BOX (refund policy) ─── */
.highlight-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.highlight-box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.highlight-box strong { color: var(--white); font-weight: 600; }

/* ─── FAQ ─── */
.page-header {
  background: var(--navy);
  padding: 160px 40px 80px;
  text-align: center;
}

.page-header .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  color: var(--white);
}

.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 40px 100px;
}

.faq-item { border-bottom: 1px solid #ddd; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
}

.faq-question span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover span { color: var(--navy); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--text);
  fill: none;
  transition: transform 0.3s, stroke 0.2s;
}

.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner { overflow: hidden; }

.faq-answer p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  padding-bottom: 28px;
}

.faq-answer a { color: var(--navy); font-weight: 500; }

.faq-cta {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid #ddd;
}

.faq-cta p { font-size: 15px; font-weight: 300; color: var(--muted); }

/* ─── CONTACT FORM ─── */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid #ddd;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbb; }

.form-field select {
  color: var(--muted);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--navy); }

.form-field textarea { resize: none; height: 160px; line-height: 1.7; }

.form-submit-row {
  padding-top: 8px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-status {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.form-status.success { color: #2a7a4b; }
.form-status.error { color: #c0392b; }

.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: #f7f8fa;
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  margin-top: 4px;
}

.sms-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.sms-consent label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.sms-consent label a {
  color: var(--navy);
  text-decoration: underline;
}

/* ─── FOOTER ─── */
footer {
  background: var(--off-white);
  border-top: 1px solid #ddd;
  padding: 64px 40px 48px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}

.footer-left { display: flex; flex-direction: column; gap: 32px; }

.footer-left img { height: 32px; width: auto; display: block; }

.footer-links { display: flex; gap: 80px; }

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--navy); }

.footer-social { display: flex; gap: 12px; align-items: flex-start; padding-top: 4px; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  color: #111;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.footer-divider { border: none; border-top: 1px solid #ddd; margin-bottom: 24px; }

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

.footer-copy { font-size: 12px; color: #999; }

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-legal a { font-size: 12px; color: #999; transition: color 0.2s; }

.footer-legal a:hover { color: #111; }

/* ─── NAV EVENT PICS LINK ─── */
.nav-event-pics {
  margin-left: auto;
  margin-right: 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-event-pics:hover { color: #fff; }

/* ─── HAMBURGER + DRAWER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(0,0,0,0.6);
}

.nav-drawer.open { display: block; }

.nav-drawer-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #001f30;
  padding: 88px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer-links a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.nav-drawer-links a:hover { color: var(--white); }

.nav-drawer-social {
  display: flex;
  gap: 12px;
}

.nav-drawer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}

.nav-drawer-social a:hover { border-color: var(--white); color: var(--white); }
.nav-drawer-social svg { width: 16px; height: 16px; fill: currentColor; }

.nav-drawer-apply {
  background: var(--white);
  color: var(--navy);
  align-self: flex-start;
}

.nav-drawer-apply:hover {
  background: rgba(255,255,255,0.85);
  opacity: 1;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-event-pics { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }

  .page { padding: 120px 24px 80px; }

  .btn-apply, .btn-ghost { height: 48px; padding: 0 28px; font-size: 14px; }

  .page-header { padding: 130px 24px 64px; }
  .faq-wrap, .faq-cta { padding-left: 24px; padding-right: 24px; }

  footer { padding: 48px 24px 32px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 40px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
