/* ═══════════════════════════════════════════════════════════
   Ruvoni Marketing Site — Global Styles
   Light editorial feel, Cormorant Garamond headlines,
   system sans-serif body, warm cream + gold accents
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

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

/* ─── Tokens ────────────────────────────────────────────── */
:root {
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Georgia', serif;
  --gold: #8B7D3C;
  --gold-light: #D4C5A0;
  --gold-dim: rgba(139, 125, 60, 0.08);
  --cream: #FAF8F3;
  --parchment: #F8F5ED;
  --surface: #EDE8DC;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-sec: #5A5650;
  --text-light: #8A8580;
  --forest: #0C1710;
  --green: #3A5C42;
  --border: rgba(0,0,0,0.08);
  --max-w: 1120px;
  --max-w-narrow: 720px;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  font-variant-numeric: lining-nums;
  font-variant-caps: normal;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.6em; }
h3 { font-size: 1.5rem; margin-bottom: 0.5em; }

p { margin-bottom: 1.2em; }
ul, ol { margin-bottom: 1.2em; padding-left: 1.5em; }
li { margin-bottom: 0.4em; }

/* ─── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }

/* ─── Site Header ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.site-header__logo:hover { text-decoration: none; }
.site-header__nav { display: flex; gap: 32px; align-items: center; }
.site-header__nav a {
  font-size: 14px;
  color: var(--text-sec);
  letter-spacing: 0.02em;
}
.site-header__nav a:hover { color: var(--text); text-decoration: none; }
.site-header__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
}
.site-header__cta:hover { opacity: 0.9; text-decoration: none !important; }

/* ─── Hero (Home) ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 40px 60px;
  color: var(--white);
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: opacity 0.2s;
}
.hero__cta:hover { opacity: 0.9; text-decoration: none; }

/* ─── Section Spacing ───────────────────────────────────── */
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--parchment { background: var(--parchment); }
.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__heading {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.section__sub {
  color: var(--text-sec);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ─── How It Works ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 36px;
}
.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.step__desc {
  color: var(--text-sec);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Destination Grid ──────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.dest-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}

/* ─── Waitlist Form ─────────────────────────────────────── */
.waitlist {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}
.waitlist__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 4px;
  display: block;
}
.waitlist__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist__input:focus { border-color: var(--gold); }
.waitlist__input::placeholder { color: var(--text-light); }
.waitlist__submit {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.waitlist__submit:hover { opacity: 0.9; }
.waitlist__note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ─── Blog Cards ────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 36px;
}
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card:hover { text-decoration: none; }
.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 20px;
}
.blog-card:hover .blog-card__img { opacity: 0.92; }
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--text);
}
.blog-card__excerpt {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ─── Blog Article ──────────────────────────────────────── */
.article-hero {
  width: 100%;
  height: 50vh;
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
}
.article-meta {
  padding: 32px 0 0;
  color: var(--text-light);
  font-size: 14px;
}
.article-body { padding: 20px 0 64px; }
.article-body h1 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
.article-body h2 {
  font-size: 1.8rem;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-body p { font-size: 17px; }
.article-body strong { font-weight: 600; }

/* ─── About Page ────────────────────────────────────────── */
.about-hero {
  padding: 64px 0 40px;
}
.about-hero .section__eyebrow { text-align: center; }
.about-hero h1 { margin-bottom: 16px; }
.about-hero p { color: var(--text-sec); }
.about-section { padding: 32px 0; }
.about-section + .about-section { border-top: 1px solid var(--border); }

/* ─── Legal Pages ───────────────────────────────────────── */
.legal { padding: 80px 0; }
.legal h1 { margin-bottom: 8px; }
.legal__updated { color: var(--text-light); font-size: 14px; margin-bottom: 40px; }
.legal h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal p { font-size: 16px; }
.legal ul { font-size: 16px; }
.legal a { color: var(--gold); }

/* ─── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 24px;
}
.cta-banner a {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 40px;
}
.cta-banner a:hover { opacity: 0.9; text-decoration: none; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.site-footer__tagline {
  font-size: 14px;
  color: var(--text-sec);
}
.site-footer__links { display: flex; gap: 48px; }
.site-footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.site-footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 8px;
}
.site-footer__col a:hover { color: var(--text); }
.site-footer__copy {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

/* ─── Mobile Menu Toggle ────────────────────────────────── */
.site-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  .site-header__nav { display: none; }
  .site-header__toggle { display: block; }
  .site-header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .hero { min-height: 50vh; }
  .hero__content { padding: 32px 24px; }
  .hero__headline { font-size: 2.4rem; }
  .hero__sub { font-size: 1rem; }

  .steps { grid-template-columns: 1fr; gap: 28px; }
  .dest-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 56px 0; }

  .about-hero { padding: 48px 0 24px; }
  .about-section { padding: 24px 0; }

  .article-meta { padding: 24px 0 0; }
  .article-body { padding: 16px 0 48px; }
  .article-body h1 { font-size: 2rem; margin-bottom: 20px; }
  .article-body h2 { margin-top: 28px; padding-top: 16px; }
  .article-hero { height: 36vh; min-height: 220px; }

  .cta-banner { padding: 48px 24px; }

  .site-footer { padding: 32px 0; }
  .site-footer__inner { flex-direction: column; gap: 28px; }
  .site-footer__links { flex-direction: column; gap: 20px; }
  .site-footer__copy { margin: 20px auto 0; padding: 16px 24px 0; }
}

@media (max-width: 480px) {
  .hero { min-height: 44vh; }
  .hero__headline { font-size: 2rem; }
  .hero__content { padding: 24px 20px; }
  .hero__sub { font-size: 0.95rem; margin-bottom: 24px; }
  body { font-size: 16px; }

  .section { padding: 48px 0; }
  .about-hero { padding: 40px 0 20px; }
  .about-hero h1 { font-size: 1.8rem; }
  .about-section { padding: 20px 0; }
  .cta-banner { padding: 40px 20px; }
}
