/* =============================================
   POSTCARD PARTNERSHIPS — Main Stylesheet
   ============================================= */

/* --- Variables --- */
:root {
  --blue: #113be1;
  --blue-dark: #0d2fb8;
  --blue-light: #e8edff;
  --orange: #ff851b;
  --orange-dark: #e06a00;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gray-100: #f0f0ee;
  --gray-200: #e0e0dc;
  --gray-500: #888882;
  --gray-800: #2a2a28;
  --black: #111110;

  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(17, 59, 225, 0.1);
  --shadow-lg: 0 12px 48px rgba(17, 59, 225, 0.18);
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 700;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  color: var(--gray-800);
}

.eyebrow,
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.accent {
  color: var(--orange);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 133, 27, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Layout Helpers --- */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(17, 59, 225, 0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}
.logo {
  height: 80px;
  width: auto;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--blue);
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  color: var(--white);
}
.hero-text .eyebrow {
  color: var(--orange);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Postcard Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.postcard-stack {
  position: relative;
  width: 380px;
  height: 260px;
}

.postcard {
  position: absolute;
  width: 380px;
  height: 240px;
  border-radius: 14px;
}

.postcard-back {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  top: 16px;
  left: 16px;
  transform: rotate(3deg);
}

.postcard-front {
  background: var(--white);
  top: 0;
  left: 0;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.postcard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  height: 100%;
}

.ad-slot {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ad-slot.filled {
  background: var(--blue-light);
  color: var(--blue);
  border: 1.5px solid rgba(17, 59, 225, 0.15);
}

.ad-slot.open {
  background: var(--orange);
  color: var(--white);
  border: 2px dashed var(--orange-dark);
}

.ad-label {
  text-align: center;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--off-white);
  border-top: 3px solid var(--orange);
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.how-it-works h2 {
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--blue);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step h3 {
  color: var(--black);
}
.step p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* =============================================
   VALUE PROPS
   ============================================= */
.value-props {
  padding: 5rem 1.5rem;
  background: var(--blue);
}

.value-props .section-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.vp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vp-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition:
    background var(--transition),
    transform var(--transition);
}

.vp-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.vp-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.vp-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.vp-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* =============================================
   RESERVE
   ============================================= */
.reserve {
  padding: 6rem 1.5rem;
  background: var(--off-white);
}

.reserve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.reserve-text h2 {
  margin-bottom: 1rem;
}
.reserve-text p {
  margin-bottom: 1.5rem;
}

.reserve-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.reserve-includes li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reserve-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
}

.reserve-price span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* Forms */
.reserve-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(17, 59, 225, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
}

/* =============================================
   INQUIRE / FAQ
   ============================================= */
.inquire {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.inquire-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.faqs {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.contact-col {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 4px solid var(--blue);
}

.contact-col h2 {
  margin-bottom: 1.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--blue);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-logo {
  height: 160px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-email {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-email:hover {
  color: var(--orange);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeUp 0.6s ease both;
}
.hero-visual {
  animation: fadeUp 0.6s 0.15s ease both;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero {
    padding: 6rem 1.5rem 4rem;
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto 2rem;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }

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

  .reserve-inner,
  .inquire-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-bar {
    gap: 1rem;
  }
  .stat {
    padding: 1rem 1.5rem;
  }
  .stat-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .vp-grid {
    grid-template-columns: 1fr;
  }
  .nav-ctas .btn-ghost {
    display: none;
  }
  .reserve-form-wrap {
    padding: 1.5rem;
  }
}
