/* ============================================================
   TOP HAT MOBILE BAR — Ohio State Color Scheme
   Scarlet: #BA0C2F  |  Gray: #4a4a4a  |  White: #ffffff
   ============================================================ */

:root {
  --scarlet: #BA0C2F;
  --scarlet-dark: #8f0a24;
  --scarlet-light: #d4103a;
  --gray-dark: #1c1c1c;
  --gray-mid: #4a4a4a;
  --gray-light: #9a9a9a;
  --gray-bg: #f4f4f4;
  --white: #ffffff;
  --off-white: #fdf9f9;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 28, 28, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--scarlet);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-hat {
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
  animation: hatToss 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
@keyframes hatToss {
  0%   { transform: translateY(0)    rotate(0deg)   scale(1); }
  35%  { transform: translateY(-14px) rotate(180deg) scale(1.25); }
  65%  { transform: translateY(-6px)  rotate(330deg) scale(1.1); }
  82%  { transform: translateY(2px)   rotate(365deg) scale(0.97); }
  100% { transform: translateY(0)    rotate(360deg) scale(1); }
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text span { color: var(--scarlet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.btn-nav {
  background: var(--scarlet) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--scarlet-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--gray-dark);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--scarlet); font-weight: 600; }

/* ── HERO ── */
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--gray-dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(186,12,47,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(186,12,47,0.10) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.97) 0%, rgba(28,28,28,0.85) 50%, rgba(186,12,47,0.15) 100%);
  z-index: 1;
}

.hero-content {
  grid-row: 1;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--scarlet);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title span {
  color: var(--scarlet);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--scarlet);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(186,12,47,0.4);
}
.btn-primary:hover {
  background: var(--scarlet-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(186,12,47,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--scarlet);
  background: rgba(186,12,47,0.1);
}

.hero-scroll {
  grid-row: 2;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 8px;
  padding-bottom: 32px;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-line {
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: scrollBounce 1.4s ease-in-out infinite;
  margin-top: 2px;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.7; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--scarlet);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ── WHY US ── */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(186,12,47,0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(186,12,47,0.25);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-dark);
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── PACKAGES ── */
.packages {
  padding: 100px 0;
  background: var(--gray-dark);
  background-image:
    radial-gradient(ellipse at 10% 80%, rgba(186,12,47,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(186,12,47,0.08) 0%, transparent 50%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

.package-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(186,12,47,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.package-card.featured {
  border-color: var(--scarlet);
  background: rgba(186,12,47,0.08);
  transform: scale(1.03);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.package-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--scarlet);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.package-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.package-price {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.package-price span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--scarlet);
  font-family: var(--font-serif);
}

.package-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.package-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-features li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
}

.btn-package {
  display: block;
  text-align: center;
  background: var(--scarlet);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-package:hover { background: var(--scarlet-light); transform: translateY(-1px); }

.packages-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}
.packages-note a { color: var(--scarlet); text-decoration: none; }
.packages-note a:hover { text-decoration: underline; }

/* ── ADD-ONS ── */
.addons {
  padding: 80px 0;
  background: var(--gray-bg);
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.addon-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-dark);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.addon-icon { font-size: 1.6rem; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 24px;
}

.step-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--scarlet), rgba(186,12,47,0.3));
  align-self: center;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--scarlet);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-dark);
}
.step p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-coming-soon {
  margin-top: 48px;
  padding: 48px 32px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border: 2px dashed rgba(186,12,47,0.2);
  text-align: center;
}
.gallery-coming-soon span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}
.gallery-coming-soon p {
  font-size: 1rem;
  color: var(--gray-light);
  margin: 0;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-mid);
}
.contact-icon { font-size: 1.1rem; }

.social-links {
  display: flex;
  gap: 12px;
}
.social-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--gray-dark);
  color: var(--white);
  transition: background var(--transition);
}
.social-btn:hover { background: var(--scarlet); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(186,12,47,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--gray-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--scarlet);
  box-shadow: 0 0 0 3px rgba(186,12,47,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  background: var(--scarlet);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(186,12,47,0.35);
  align-self: flex-start;
}
.btn-submit:hover {
  background: var(--scarlet-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(186,12,47,0.45);
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  font-size: 1.2rem;
  color: var(--scarlet);
  font-family: var(--font-serif);
  font-weight: 600;
}

/* ── FOOTER ── */
.footer {
  background: var(--gray-dark);
  border-top: 2px solid var(--scarlet);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--scarlet); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
}
.footer-credit-link {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit-link:hover { color: var(--scarlet); }

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-divider { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--scarlet), rgba(186,12,47,0.3)); }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .hero-title { font-size: 3rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 20px; }
  .section-title { font-size: 1.8rem; }
}
