/* ============================================
   Huggable Hearts — Temporary Website
   Official Brand Guidelines applied
   ============================================ */

:root {
  /* Primary */
  --coral: #C9826E;
  --cocoa: #3C2F26;
  --cream: #F5EEE0;

  /* Supporting */
  --terracotta: #A9654F;
  --deep-cocoa: #4A3B30;
  --taupe: #8A7358;
  --honey: #D9BE9C;
  --sand: #D6C4AC;
  --oat: #F2EADB;

  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(60, 47, 38, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Calibri', 'Carlito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--cocoa);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo-name {
  font-family: 'Libre Caslon Text', 'Lora', 'Bookman Old Style', Georgia, serif;
  font-weight: 500;
  line-height: 1.25;
  color: var(--cocoa);
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-cocoa);
  color: var(--cream);
  padding: 14px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border: 1.5px dashed var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
}

.logo-mark .heart {
  color: var(--coral);
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
  color: var(--honey);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
  transition: opacity 0.2s;
  color: var(--cream);
}

.nav a:hover {
  opacity: 1;
}

.btn-nav {
  background: var(--coral) !important;
  color: var(--cocoa) !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 500 !important;
  opacity: 1 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
}

/* ========== Hero ========== */
.hero {
  background: var(--deep-cocoa);
  color: var(--cream);
  padding: 92px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '♥';
  position: absolute;
  color: var(--coral);
  opacity: 0.28;
}

.hero::before {
  top: 36px;
  left: 9%;
  font-size: 26px;
}

.hero::after {
  bottom: 48px;
  right: 10%;
  font-size: 20px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.7rem);
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  opacity: 0.88;
  font-weight: 400;
  color: var(--honey);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--coral);
  color: var(--cocoa);
}

.btn-primary:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 238, 224, 0.35);
}

.btn-secondary:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  background: transparent;
  color: var(--cocoa);
  border-color: var(--cocoa);
  width: 100%;
}

.btn-outline:hover {
  background: var(--cocoa);
  color: var(--cream);
}

.btn-full {
  width: 100%;
}

/* ========== Intro Strip ========== */
.intro-strip {
  background: var(--oat);
  padding: 52px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.intro-item {
  text-align: center;
}

.intro-icon {
  display: inline-block;
  color: var(--coral);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.intro-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.intro-item p {
  font-size: 0.95rem;
  color: var(--taupe);
}

/* ========== Sections ========== */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--taupe);
  max-width: 480px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========== Packages ========== */
.packages {
  background: var(--cream);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card.popular {
  border: 2px solid var(--coral);
  transform: scale(1.03);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--cocoa);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
}

.package-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand);
}

.package-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.price {
  font-family: 'Libre Caslon Text', 'Lora', Georgia, serif;
  font-size: 2.15rem;
  font-weight: 600;
  color: var(--cocoa);
}

.guests {
  font-size: 0.9rem;
  color: var(--taupe);
  margin-top: 4px;
}

.package-features {
  flex: 1;
  margin-bottom: 28px;
}

.package-features li {
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--taupe);
  border-bottom: 1px solid rgba(214, 196, 172, 0.5);
  position: relative;
  padding-left: 18px;
}

.package-features li::before {
  content: '♥';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: 0.7rem;
  top: 12px;
}

.package-features li:last-child {
  border-bottom: none;
}

.upsells {
  margin-top: 48px;
  text-align: center;
}

.upsells h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--taupe);
  font-weight: 500;
}

.upsell-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.upsell-list span {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--taupe);
}

/* ========== Friends ========== */
.friends {
  background: var(--oat);
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.friend-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 12px 18px;
  text-align: center;
  border: 1px solid var(--sand);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.friend-card img {
  width: 100%;
  max-width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

.friend-card h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.friend-card p {
  font-size: 0.78rem;
  color: var(--taupe);
  font-style: italic;
}

.friends-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--taupe);
  font-style: italic;
}

/* ========== Themes ========== */
.themes {
  background: var(--cream);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.theme-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--sand);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.theme-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--cocoa);
}

.theme-card p {
  font-size: 0.88rem;
  color: var(--taupe);
  line-height: 1.5;
}

.theme-card .theme-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--coral);
  font-style: italic;
}

/* ========== Experience ========== */
.experience {
  background: var(--oat);
}

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

.step {
  text-align: center;
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--deep-cocoa);
  color: var(--coral);
  font-family: 'Libre Caslon Text', 'Lora', Georgia, serif;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: var(--taupe);
}

/* ========== Events ========== */
.events {
  background: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow);
}

.event-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.event-price {
  font-family: 'Libre Caslon Text', 'Lora', Georgia, serif;
  font-size: 1.5rem;
  color: var(--cocoa);
  margin-bottom: 14px;
}

.event-card p:last-child {
  color: var(--taupe);
  font-size: 0.98rem;
}

/* ========== Book ========== */
.book {
  background: var(--oat);
  padding-bottom: 100px;
}

.book-card {
  background: var(--white);
  border-radius: 20px;
  padding: 52px 48px;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow);
  text-align: center;
}

.book-card h2 {
  margin-bottom: 12px;
}

.book-sub {
  color: var(--taupe);
  margin-bottom: 36px;
}

.book-form {
  text-align: left;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--taupe);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sand);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--cocoa);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--taupe);
}

.form-note a {
  color: var(--cocoa);
  text-decoration: underline;
}

/* ========== Footer ========== */
.footer {
  background: var(--deep-cocoa);
  color: var(--cream);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245, 238, 224, 0.12);
}

.footer-tagline {
  font-style: italic;
  opacity: 0.75;
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--honey);
}

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

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
  color: var(--cream);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
  color: var(--honey);
}

.footer-note {
  font-style: italic;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .package-card.popular {
    transform: none;
  }

  .friends-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--deep-cocoa);
    padding: 24px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .book-card {
    padding: 36px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .themes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 80px;
  }

  .section {
    padding: 70px 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}
