/* ============================================================
   MOLLY'S MAPS — Editorial Italian Travel Aesthetic
   ============================================================ */

/* Fonts: Fraunces (display serif) + Karla (body sans) from Google */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,600&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Caveat:wght@500;700&family=Fredoka:wght@400;500&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

:root {
  --paper: #F5EDDC;
  --paper-soft: #FBF6EC;
  --paper-warm: #EAD9BD;
  --ink: #2D2419;
  --ink-soft: #5C4F3D;
  --ink-mute: #8A7C68;
  --vino: #C8553D;
  --vino-deep: #9B3F2D;
  --gold: #D4A574;
  --mustard: #C8A951;
  --sage: #6B8E5A;
  --sea: #3E6B7C;
  --terracotta: #C8553D;
  --stone: #8A7C68;
  --line: rgba(45, 36, 25, 0.18);
  --line-soft: rgba(45, 36, 25, 0.10);
  --border-soft: rgba(45, 36, 25, 0.10);
  --border-warm: rgba(45, 36, 25, 0.22);
  --shadow-soft: 0 4px 12px rgba(45, 36, 25, 0.10);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Lilita One', 'Playfair Display', Georgia, serif;
  --script: 'Caveat', 'Brush Script MT', cursive;

  --container-narrow: 760px;
  --container-wide: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  background: var(--paper);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Paper grain texture overlay for atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.2 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: multiply;
  z-index: 1;
}

main, header, footer { position: relative; z-index: 2; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  font-variation-settings: "opsz" 64, "SOFT" 25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500; line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 500; line-height: 1.05; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--sans); }
h6 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--sans); color: var(--vino); }

p { margin-bottom: 1.2em; }
p.lead {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}

em { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

a {
  color: var(--vino);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
a:hover { color: var(--vino-deep); text-decoration-thickness: 2px; }

::selection { background: var(--gold); color: var(--ink); }

/* Eyebrow / kicker text */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vino);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '—';
  margin-right: 0.5em;
  color: var(--gold);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container        { width: 100%; max-width: var(--container);        margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.container-wide   { width: 100%; max-width: var(--container-wide);   margin: 0 auto; padding: 0 1.5rem; }

section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
section.compact { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }

.divider {
  width: 60px;
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 2rem 0;
}
.divider.center { margin-left: auto; margin-right: auto; }
.divider.gold   { background: var(--gold); height: 2px; width: 40px; }

/* ============================================================
   HEADER & NAV
   ============================================================ */

header.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(250, 246, 237, 0.92);
}

.site-header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}
.brand:hover { color: var(--vino); text-decoration: none; }
.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vino);
  color: var(--paper);
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-weight: 700; color: inherit; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--sans); }
.brand-text em {
  font-family: var(--serif);
  font-size: 0.6875rem;
  color: var(--stone);
  font-style: italic;
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* HAMBURGER ON ALL VIEWPORTS — nav is hidden by default, opens on click */
nav.site-nav {
  position: absolute;
  top: 100%;
  right: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1rem 1.75rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-deep);
  border-radius: 4px;
  min-width: 220px;
  z-index: 50;
  margin-top: 4px;
}
nav.site-nav.open { display: flex; }
nav.site-nav a {
  width: 100%;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
}
nav.site-nav a:last-child { border-bottom: 0; }
nav.site-nav a:hover { color: var(--vino); }
nav.site-nav a.active {
  color: var(--vino);
  font-style: italic;
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s, border-color 0.15s;
}
.nav-toggle:hover { background: var(--paper-soft); border-color: var(--ink); }
.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle-label { display: inline; }

@media (max-width: 540px) {
  .site-header-inner { padding: 1rem 1.25rem; }
  .nav-toggle-label { display: none; }
  .nav-toggle { padding: 0.5rem; }
  .brand-text em { display: none; }
  nav.site-nav { right: 0.75rem; min-width: 180px; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

nav.breadcrumb {
  font-size: 0.8125rem;
  color: var(--stone);
  padding: 1.5rem 0 0;
  letter-spacing: 0.02em;
}
nav.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
nav.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
nav.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: var(--line);
  font-size: 1rem;
}
nav.breadcrumb a {
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.15s ease;
}
nav.breadcrumb a:hover { color: var(--vino); border-bottom-color: var(--vino); }
nav.breadcrumb li[aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--vino);
  color: var(--paper);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}
.btn-primary:hover { background: var(--vino-deep); color: var(--paper); box-shadow: 0 6px 18px rgba(139, 26, 26, 0.3); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

.btn-ghost {
  background: transparent;
  color: var(--vino);
  padding: 0.5rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0;
  border-bottom: 1px solid var(--vino);
}
.btn-ghost:hover { color: var(--vino-deep); border-bottom-color: var(--vino-deep); transform: none; }

.btn-large { padding: 1.125rem 2.25rem; font-size: 1rem; }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */

.hero {
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-content h1 {
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  letter-spacing: -0.025em;
}
.hero-content h1 .gold-underline {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero-content h1 .gold-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.32em;
  background: var(--gold);
  opacity: 0.45;
  z-index: -1;
  border-radius: 2px;
}
.hero-content .lead {
  margin: 1.75rem 0 2.25rem;
  max-width: 32em;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--paper-soft), var(--paper-deep));
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}
.hero-visual-inner {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--paper);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(139, 26, 26, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(200, 162, 74, 0.05) 0%, transparent 60%);
}
.hero-visual-label {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.hero-visual-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero-visual-stamp {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 80px;
  height: 80px;
  border: 1.5px solid var(--vino);
  border-radius: 50%;
  color: var(--vino);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
  line-height: 1.2;
  transform: rotate(-12deg);
  opacity: 0.85;
}
.hero-visual-list {
  list-style: none;
  margin-top: auto;
}
.hero-visual-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--sans);
  font-size: 0.875rem;
}
.hero-visual-list li:first-child { border-top: 0; }
.hero-visual-list .num {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--vino);
  font-weight: 600;
  min-width: 1.5rem;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
  border-color: var(--line);
  text-decoration: none;
}
.product-card-visual {
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.product-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, var(--accent-color, var(--vino)) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, var(--accent-color-2, var(--gold)) 0%, transparent 50%);
  opacity: 0.08;
}
.product-card-emoji {
  font-size: 4rem;
  filter: grayscale(0.2);
  z-index: 1;
}
.product-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.375rem 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  z-index: 2;
  border-radius: 999px;
}
.product-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.product-card-eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.product-card-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.product-card-meta {
  font-size: 0.875rem;
  color: var(--stone);
  margin-bottom: 1rem;
}
.product-card-desc { font-size: 0.9375rem; line-height: 1.55; flex: 1; }
.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.product-card-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.product-card-cta {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vino);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.15s ease;
}
.product-card:hover .product-card-cta { gap: 0.5rem; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 880px) {
  .product-detail { grid-template-columns: 1fr; }
}

.product-detail-visual {
  position: sticky;
  top: 96px;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-deep);
}
@media (max-width: 880px) { .product-detail-visual { position: relative; top: 0; } }

.product-detail-visual-stamp {
  align-self: flex-end;
  font-family: var(--serif);
  font-style: italic;
  color: var(--vino);
  border: 1.5px solid var(--vino);
  border-radius: 50%;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.2;
  transform: rotate(-8deg);
  margin-bottom: 1rem;
}

.product-detail-content h1 { margin-bottom: 1rem; }
.product-detail-content .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--stone);
}
.product-detail-content .price-block {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.product-detail-content .price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.product-detail-content .price-note {
  font-size: 0.8125rem;
  color: var(--stone);
}

.included-list {
  list-style: none;
  margin: 1.5rem 0;
}
.included-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-size: 0.9375rem;
}
.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1.125rem;
}
.included-list li:last-child { border-bottom: 0; }

/* ============================================================
   FEATURE / VALUE PROPS
   ============================================================ */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.feature {
  text-align: left;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--vino);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  font-family: var(--sans);
  letter-spacing: -0.005em;
}
.feature p { font-size: 0.9375rem; color: var(--ink-soft); margin-bottom: 0; }

/* ============================================================
   TESTIMONIALS / QUOTES
   ============================================================ */

.testimonial {
  background: var(--paper-soft);
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  position: relative;
  border-radius: 0 4px 4px 0;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
}
.testimonial blockquote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0;
  position: absolute;
  top: 2rem;
  left: 0.5rem;
  opacity: 0.4;
}
.testimonial cite {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-style: normal;
  color: var(--stone);
  letter-spacing: 0.02em;
}
.testimonial cite strong { color: var(--ink); font-weight: 600; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */

.signup-block {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  border-radius: 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup-block::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.15), transparent 70%);
  pointer-events: none;
}
.signup-block h2 { color: var(--paper); position: relative; }
.signup-block p { color: rgba(250, 246, 237, 0.75); max-width: 32em; margin: 1rem auto 2rem; position: relative; }
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.signup-form input[type=email] {
  flex: 1;
  min-width: 220px;
  padding: 0.875rem 1.25rem;
  background: rgba(250, 246, 237, 0.08);
  border: 1px solid rgba(250, 246, 237, 0.2);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.9375rem;
  transition: border-color 0.15s, background 0.15s;
}
.signup-form input[type=email]::placeholder { color: rgba(250, 246, 237, 0.5); }
.signup-form input[type=email]:focus { outline: 0; border-color: var(--gold); background: rgba(250, 246, 237, 0.12); }
.signup-form button {
  background: var(--gold);
  color: var(--ink);
}
.signup-form button:hover { background: var(--paper); }
.signup-disclaimer {
  font-size: 0.75rem;
  color: rgba(250, 246, 237, 0.5);
  margin-top: 1rem;
  position: relative;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  margin-top: 3rem;
}
details.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
details.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
  line-height: 1.4;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--vino);
  font-weight: 300;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item summary:hover { color: var(--vino); }
details.faq-item-body {
  padding-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 237, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.footer-brand { font-family: var(--serif); font-size: 1.25rem; color: var(--paper); margin-bottom: 1rem; font-weight: 600; }
.footer-tagline { font-size: 0.875rem; line-height: 1.55; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a {
  color: rgba(250, 246, 237, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-col a:hover { color: var(--paper); text-decoration: underline; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 246, 237, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(250, 246, 237, 0.4);
}

/* ============================================================
   UTILITY: STAMPED HEADER FOR SECTIONS
   ============================================================ */

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow { display: block; margin-bottom: 0.75rem; }
.section-head h2 { max-width: 18ch; margin: 0 auto; }
.section-head p { max-width: 36em; margin: 1.25rem auto 0; color: var(--ink-soft); }

/* Two-column editorial layout */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 800px) { .editorial { grid-template-columns: 1fr; } }
.editorial-aside {
  position: sticky;
  top: 96px;
  padding-right: 1rem;
}
@media (max-width: 800px) { .editorial-aside { position: relative; top: 0; } }

/* 404 page */
.notfound {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.notfound-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(6rem, 16vw, 11rem);
  font-weight: 400;
  color: var(--vino);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.85;
}


/* Ad slot styling (for Google AdSense placeholder boxes) */
.ad-slot {
  background: var(--paper-soft);
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2rem 0;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ad-slot::before {
  content: 'Advertisement';
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.ad-slot-placeholder {
  font-size: 0.8125rem;
  color: var(--stone);
  font-style: italic;
}


/* ==========================================
   Retro postcard hero
   ========================================== */
.postcard-hero {
  padding: clamp(2rem, 5vw, 4rem) 1.25rem clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  text-align: center;
}
.postcard-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}
.postcard-image-wrap {
  display: inline-block;
  position: relative;
  transform: rotate(-0.8deg);
  margin-bottom: 1.75rem;
  max-width: 100%;
}
.postcard-image-wrap img {
  display: block;
  width: 100%;
  max-width: 880px;
  height: auto;
  box-shadow: 6px 6px 0 rgba(45, 36, 25, 0.18);
}
.postcard-tagline {
  font-family: var(--script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1rem;
  transform: rotate(-0.4deg);
}
.postcard-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.postcard-cta .btn {
  font-family: var(--sans);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.25rem;
}

/* ==========================================
   City mini-postcards
   ========================================== */
.mini-postcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.mini-postcard {
  background: var(--paper-soft);
  padding: 0.4rem 0.4rem 0.6rem;
  box-shadow: 3px 3px 0 rgba(61, 40, 23, 0.16);
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.15s ease;
}
.mini-postcard:nth-child(4n+1) { transform: rotate(-1deg); }
.mini-postcard:nth-child(4n+2) { transform: rotate(0.8deg); }
.mini-postcard:nth-child(4n+3) { transform: rotate(-0.5deg); }
.mini-postcard:nth-child(4n+4) { transform: rotate(1deg); }
.mini-postcard:hover {
  transform: rotate(0) translateY(-2px);
}
.mini-postcard-image {
  display: block;
  width: 100%;
  height: 110px;
  background: var(--paper-warm);
  object-fit: cover;
}
.mini-postcard-name {
  font-family: var(--display);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 0.45rem;
  color: var(--ink);
}
.mini-postcard-note {
  font-family: var(--script);
  font-size: 0.875rem;
  text-align: center;
  color: var(--ink-soft);
}

/* ==========================================
   Sectional headline with handwritten feel
   ========================================== */
.script-headline {
  font-family: var(--script);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.15;
  transform: rotate(-0.4deg);
  display: inline-block;
}

/* Tighter content sections */
.container-narrow > section,
.container-wide > section {
  margin-block: 1.5rem;
}


/* ==========================================
   Landing page: minimal header + slide menu
   ========================================== */
.landing-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.landing-header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--ink);
}
.landing-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vino);
  color: var(--paper-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
}
.landing-logo-text {
  font-family: var(--display);
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 80vw);
  height: 100vh;
  background: var(--paper-soft);
  border-left: 1px solid var(--border-soft);
  padding: 4.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: right 0.25s ease;
  z-index: 90;
  box-shadow: -4px 0 24px rgba(61, 40, 23, 0.08);
}
.slide-menu.open { right: 0; }
.slide-menu a {
  font-family: var(--display);
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: 0.02em;
}
.slide-menu a:hover {
  color: var(--vino);
}

/* ==========================================
   Landing page story block
   ========================================== */
.landing-story {
  padding: 1.5rem 0 4rem;
  background: var(--paper);
}
.landing-story .container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.story-title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  color: var(--ink);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}
.story-tagline {
  font-family: var(--script);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  color: var(--vino);
  margin: 0 0 2rem;
  font-weight: 700;
  line-height: 1.25;
}
.story-body {
  text-align: left;
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.story-body p {
  margin: 0 0 1.125rem;
}
.story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ==========================================
   Simplified footer
   ========================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 2.25rem 1.25rem 1.5rem;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245, 228, 190, 0.15);
  margin-bottom: 1rem;
}
.footer-brand-block { max-width: 320px; }
.footer-brand {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 0.375rem;
}
.footer-tagline {
  font-family: var(--script);
  font-size: 1.125rem;
  color: rgba(245, 228, 190, 0.85);
  margin: 0;
  line-height: 1.35;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 1.5rem;
  align-items: center;
}
.footer-nav a {
  color: rgba(245, 228, 190, 0.9);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--paper-soft); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: rgba(245, 228, 190, 0.7);
}
.footer-bottom em {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(245, 228, 190, 0.85);
}

/* ==========================================
   Postcard image utility (for itineraries & contact)
   ========================================== */
.postcard-image {
  display: block;
  background: var(--paper-soft);
  padding: 8px 8px 14px;
  box-shadow: 4px 4px 0 rgba(61, 40, 23, 0.15);
  transform: rotate(-0.8deg);
  margin: 1rem auto 1.5rem;
  max-width: 480px;
}
.postcard-image img {
  display: block;
  width: 100%;
  height: auto;
}
.postcard-image-caption {
  font-family: var(--script);
  font-size: 1.0625rem;
  color: var(--ink);
  text-align: center;
  margin-top: 0.5rem;
}

.postcard-image.tilt-right { transform: rotate(0.8deg); }
.postcard-image.tilt-left { transform: rotate(-1.2deg); }

@media (max-width: 640px) {
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ==========================================
   Overlapping postcard slots (vacation photo placeholders)
   Replace inner placeholder with <img src="/images/your-photo.jpg" alt="...">
   ========================================== */
.postcard-slot-section {
  padding: 1rem 1.25rem 2rem;
  background: var(--paper);
}
.postcard-slot-group {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.postcard-slot {
  width: 200px;
  flex-shrink: 0;
  background: var(--paper-soft);
  padding: 10px 10px 16px;
  box-shadow: 4px 4px 0 rgba(45, 36, 25, 0.18);
  position: relative;
  margin: 0;
}
.postcard-slot:nth-child(1) {
  transform: rotate(-3deg);
  z-index: 2;
  margin-right: -28px;
}
.postcard-slot:nth-child(2) {
  transform: rotate(1.5deg);
  z-index: 3;
  margin-top: 12px;
}
.postcard-slot:nth-child(3) {
  transform: rotate(-1deg);
  z-index: 1;
  margin-left: -28px;
  margin-top: 6px;
}
.postcard-slot-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 130px;
  background: var(--paper-warm);
  background-image:
    linear-gradient(45deg, transparent 49%, rgba(45, 36, 25, 0.12) 49%, rgba(45, 36, 25, 0.12) 51%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(45, 36, 25, 0.12) 49%, rgba(45, 36, 25, 0.12) 51%, transparent 51%);
  font-family: var(--script);
  font-size: 1rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.3;
  padding: 0 8px;
}
.postcard-slot img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.postcard-slot-caption {
  font-family: var(--script);
  font-size: 0.9375rem;
  text-align: center;
  color: var(--ink);
  margin: 8px 0 0;
  line-height: 1.3;
  font-weight: 700;
}
@media (max-width: 640px) {
  .postcard-slot-group {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .postcard-slot {
    margin: 0 !important;
    width: 45%;
  }
  .postcard-slot:nth-child(odd) { transform: rotate(-2deg); }
  .postcard-slot:nth-child(even) { transform: rotate(2deg); }
}
