/* Summer & Beyond Travel — shared site styles
   Extracted from index.html during SEO multi-page refactor (May 2026).
   Single source of truth for all pages. */

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

:root {
  --sage: #A3BA9E;
  --cream: #F5F0E8;
  --dusty-pink: #D4A5A0;
  --pale-yellow: #E8D98A;
  --warm-brown: #6B4F3A;
  --stone: #A09B99;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--warm-brown);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-bottom 0.3s ease;
}
nav.scrolled {
  border-bottom: 1px solid rgba(107, 79, 58, 0.08);
}

.logo-lockup { display: flex; flex-direction: column; line-height: 1; text-decoration: none; align-items: flex-start; }
.logo-name {
  font-family: 'Forum', serif;
  font-size: 20px;
  color: var(--warm-brown);
  letter-spacing: 0.01em;
}
.logo-name .amp { color: var(--sage); }
.logo-sub { text-align: center; width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-variant: small-caps;
  letter-spacing: 0.18em;
  color: var(--warm-brown);
  margin-top: 1px;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-brown);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage); }
.nav-links a[aria-current="page"] { color: var(--sage); }

.btn-nav {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: var(--sage);
  color: var(--cream);
  border: none;
  padding: 10px 22px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: #8eaa89; transform: translateY(-1px); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-brown);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(107,79,58,0.1);
  padding: 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--warm-brown);
  text-decoration: none;
}

/* ─── PAGE OFFSET FOR FIXED NAV ─── */
main { padding-top: 72px; }
main.no-offset { padding-top: 0; } /* For homepage hero that owns its own top padding */

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Forum', serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.15;
  color: var(--warm-brown);
  margin-bottom: 24px;
}
.hero-subline {
  font-size: 17px;
  line-height: 1.65;
  color: var(--stone);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: var(--sage);
  color: var(--cream);
  padding: 14px 32px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #8eaa89; transform: translateY(-1px); }
.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  color: var(--warm-brown);
  padding: 13px 30px;
  border: 1px solid var(--warm-brown);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  background: var(--warm-brown);
  color: var(--cream);
  transform: translateY(-1px);
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── ABOUT ─── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.about-left {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-left img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex: 1;
}
.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
  background: var(--cream);
}
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.section-headline {
  font-family: 'Forum', serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.2;
  color: var(--warm-brown);
  margin-bottom: 28px;
}
.about-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #7a6558;
  font-weight: 300;
  margin-bottom: 18px;
}
.about-highlights {
  background: #F5F0E8;
  border: 1px solid #A3BA9E;
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 28px;
  margin-bottom: 8px;
}
.highlight-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.highlight-item:last-child {
  margin-bottom: 0;
}
.highlight-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A3BA9E;
  font-weight: 500;
  margin-bottom: 3px;
}
.highlight-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #7a6558;
  font-weight: 300;
  line-height: 1.5;
}
.about-closing {
  font-family: 'Forum', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--warm-brown);
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 1.4;
}


/* ─── SERVICES ─── */
#services {
  padding: 100px 80px;
  background: var(--cream);
}
.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.services-subline {
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone);
  font-weight: 300;
  margin-top: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(107, 79, 58, 0.15);
  border-radius: 6px;
  padding: 44px 40px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(107, 79, 58, 0.09);
}
.service-card.elevated {
  border-color: var(--sage);
  border-width: 1.5px;
}
.card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.card-tag.sage { color: var(--sage); }
.card-tag.pink { color: var(--dusty-pink); }
.card-tag.yellow { color: #b89d30; }

/* Arrow/form icon (Tier 1 — sage) */
.icon-arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--sage);
  border-radius: 4px;
  position: relative;
  margin-bottom: 28px;
}
.icon-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--sage);
  transform: translate(-50%, -50%);
}
.icon-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 3px);
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--sage);
  border-right: 1.5px solid var(--sage);
  transform: translateY(-50%) rotate(45deg);
}

/* Compass icon CSS (Tier 2 — dusty pink) */
.icon-compass {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--dusty-pink);
  border-radius: 50%;
  position: relative;
  margin-bottom: 28px;
}
.icon-compass::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--dusty-pink);
  transform: translate(-50%, -50%) rotate(-35deg);
}

/* Star/diamond icon (Tier 3 — pale yellow) */
.icon-star {
  width: 44px;
  height: 44px;
  position: relative;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-star::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--pale-yellow);
  transform: rotate(45deg);
  border-radius: 2px;
}

.card-title {
  font-family: 'Forum', serif;
  font-size: 26px;
  color: var(--warm-brown);
  margin-bottom: 16px;
  line-height: 1.2;
}
.card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #7a6558;
  font-weight: 300;
  margin-bottom: 32px;
}
.btn-card {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-brown);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--warm-brown);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-card:hover { color: var(--sage); border-color: var(--sage); }

/* ─── SUB-SERVICE ─── */
.sub-service {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(107,79,58,0.12);
}
.sub-service-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.sub-service-title {
  font-family: 'Forum', serif;
  font-size: 17px;
  color: var(--warm-brown);
  margin-bottom: 10px;
  font-weight: 400;
}
.sub-service-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--warm-brown);
  line-height: 1.7;
  opacity: 0.85;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--sage);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
}
.contact-headline {
  font-family: 'Forum', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-subline {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.75);
  font-weight: 300;
  margin-bottom: 44px;
}
.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 240, 232, 0.88);
  font-weight: 300;
}
.expect-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(245,240,232,0.4);
  border-radius: 50%;
  margin-top: 1px;
  background: rgba(245,240,232,0.15);
}

.contact-right {
  display: flex;
  align-items: center;
  padding: 60px 80px 60px 40px;
}
.form-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 48px;
  width: 100%;
  max-width: 520px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 7px;
}
input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-brown);
  background: var(--white);
  border: 1px solid rgba(107,79,58,0.18);
  border-radius: 4px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--sage);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09B99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 90px; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #7a6558;
  cursor: pointer;
  font-weight: 300;
}
.checkbox-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(107,79,58,0.25);
  border-radius: 2px;
  accent-color: var(--sage);
  cursor: pointer;
}

.form-field { display: flex; flex-direction: column; }

.btn-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: var(--warm-brown);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: #5a4030; transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--cream);
  border-top: 1px solid rgba(107,79,58,0.08);
  padding: 48px 80px 0;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 36px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-nav a {
  font-size: 13px;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--warm-brown); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-domain {
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.03em;
}
.icon-instagram {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--stone);
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}
.icon-instagram::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border: 1.5px solid var(--stone);
  border-radius: 50%;
}
.icon-instagram::before {
  content: '';
  position: absolute;
  top: 4px; right: 4px;
  width: 3px; height: 3px;
  background: var(--stone);
  border-radius: 50%;
}
.icon-instagram:hover { border-color: var(--warm-brown); }
.footer-bottom {
  border-top: 1px solid rgba(107,79,58,0.08);
  padding: 20px 0;
  font-size: 12px;
  color: var(--stone);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.7s ease forwards; }
.fade-up:nth-child(2).visible { animation-delay: 0.1s; }
.fade-up:nth-child(3).visible { animation-delay: 0.2s; }
.fade-up:nth-child(4).visible { animation-delay: 0.3s; }

/* ─── INTERIOR PAGE HEADER ─── */
.page-header {
  padding: 140px 80px 56px;
  text-align: center;
  background: var(--cream);
}
.page-header h1 {
  font-family: 'Forum', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  color: var(--warm-brown);
  margin-bottom: 16px;
}
.page-header .lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--stone);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* ─── HOMEPAGE TEASERS ─── */
.teaser-section {
  padding: 100px 80px;
  background: var(--cream);
}
.teaser-section.alt { background: #FAF7F2; }
.teaser-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.teaser-inner.reverse > div:first-child { order: 2; }
.teaser-text h2 {
  font-family: 'Forum', serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  color: var(--warm-brown);
  margin-bottom: 20px;
}
.teaser-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #7a6558;
  font-weight: 300;
  margin-bottom: 28px;
}
.teaser-image {
  height: 440px;
  border-radius: 6px;
  overflow: hidden;
}
.teaser-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── 404 ─── */
.notfound {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  background: var(--cream);
}
.notfound-inner { max-width: 480px; text-align: center; }
.notfound h1 {
  font-family: 'Forum', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--warm-brown);
  margin-bottom: 16px;
}
.notfound p {
  font-size: 16px;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  #home { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 32px; order: 2; }
  .hero-right { height: 50vh; order: 1; }

  #about { grid-template-columns: 1fr; }
  .about-left { height: 260px; flex-direction: row; gap: 3px; }
  .about-left img { height: 100%; width: 50%; flex: 1; }
  .about-right { padding: 48px 32px; }

  #services { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  #contact { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 32px 40px; }
  .contact-right { padding: 0 24px 60px; }
  .form-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }

  footer { padding: 40px 24px 0; }
  .footer-main { flex-direction: column; gap: 24px; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-right { justify-content: center; }

  #about-anna { padding: 48px 24px !important; }
  .anna-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .anna-grid > div:last-child { height: 300px !important; }

  .page-header { padding: 110px 24px 40px; }
  .teaser-section { padding: 64px 24px; }
  .teaser-inner { grid-template-columns: 1fr; gap: 32px; }
  .teaser-inner.reverse > div:first-child { order: initial; }
  .teaser-image { height: 280px; }
}

/* Date Range Picker */
.date-range-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.date-range-display {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgba(107,79,58,0.2);
  border-radius: 4px;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--warm-brown);
  transition: border-color 0.15s;
}

.date-range-display:hover { border-color: var(--sage); }
.date-range-display.active { border-color: var(--sage); }

.date-icon { font-size: 16px; }

.flexible-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.flexible-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--sage);
  cursor: pointer;
}

.flexible-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--stone);
}

.calendar-flyout {
  position: absolute;
  z-index: 100;
  background: white;
  border: 1px solid rgba(107,79,58,0.15);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(107,79,58,0.12);
  padding: 20px;
  margin-top: 8px;
  width: 100%;
  max-width: 580px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cal-nav-btn {
  background: none;
  border: 1px solid rgba(107,79,58,0.2);
  border-radius: 4px;
  width: auto;
  height: 32px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--warm-brown);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.15s;
}
.cal-nav-btn:hover { background: var(--cream); }

.calendar-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.calendar-month { font-family: 'DM Sans', sans-serif; }

.cal-month-header {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 12px;
}

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

.cal-day-header {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--stone);
  padding: 4px 0;
}

.cal-day {
  text-align: center;
  padding: 7px 4px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 3px;
  color: var(--warm-brown);
  transition: background 0.1s;
}

.cal-day:hover:not(.cal-empty):not(.cal-past) { background: var(--cream); }
.cal-day.cal-empty { cursor: default; }
.cal-day.cal-past { color: #ccc; cursor: default; }
.cal-day.cal-selected { background: var(--sage); color: white; border-radius: 3px; }
.cal-day.cal-in-range { background: rgba(163,186,158,0.2); border-radius: 0; }
.cal-day.cal-range-start { background: var(--sage); color: white; border-radius: 3px 0 0 3px; }
.cal-day.cal-range-end { background: var(--sage); color: white; border-radius: 0 3px 3px 0; }
.cal-day.cal-today { font-weight: 700; }

.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(107,79,58,0.1);
}

#cal-selection-hint {
  font-size: 13px;
  color: var(--stone);
  font-family: 'DM Sans', sans-serif;
}

.cal-clear {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

@media (max-width: 600px) {
  .calendar-months { grid-template-columns: 1fr; }
  .calendar-flyout { max-width: 100%; }
}

/* ─── PROCESS ─── */
.process-section {
  padding: 100px 80px;
  background: var(--cream);
}
.process-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.process-steps {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(107,79,58,0.12);
}
.process-step:first-child { border-top: none; padding-top: 0; }
.process-number {
  font-family: 'Forum', serif;
  font-size: 44px;
  color: var(--sage);
  line-height: 1;
}
.process-title {
  font-family: 'Forum', serif;
  font-size: 26px;
  color: var(--warm-brown);
  margin-bottom: 6px;
  line-height: 1.2;
}
.process-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--dusty-pink);
  font-style: italic;
  margin-bottom: 14px;
}
.process-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #7a6558;
  font-weight: 300;
  margin-bottom: 12px;
}
.process-body em {
  display: block;
  padding: 12px 18px;
  background: #FAF7F2;
  border-left: 3px solid var(--sage);
  border-radius: 0 4px 4px 0;
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--warm-brown);
}
.process-body a { color: var(--sage); text-decoration: underline; }

/* ─── JOURNAL INDEX ─── */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 80px 100px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card .journal-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 24px;
  background: #ECE5DA;
}
.journal-card .journal-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.journal-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  font-weight: 500;
}
.journal-card-title {
  font-family: 'Forum', serif;
  font-size: 28px;
  line-height: 1.2;
  color: var(--warm-brown);
  margin-bottom: 10px;
}
.journal-byline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 12px;
}
.journal-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #7a6558;
  font-weight: 300;
  margin-bottom: 14px;
}
.journal-card .read-more {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-brown);
  border-bottom: 1px solid var(--warm-brown);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ─── ARTICLE (journal post) ─── */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}
.article-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  margin: 0 auto 40px;
  max-width: 1080px;
  background: #ECE5DA;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.article-header {
  text-align: center;
  margin-bottom: 36px;
}
.article-header .journal-tag {
  display: inline-block;
}
.article-header h1 {
  font-family: 'Forum', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  color: var(--warm-brown);
  margin: 12px 0 16px;
}
.article-byline {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--stone);
}
.article-byline a { color: var(--sage); text-decoration: none; }
.article-byline a:hover { text-decoration: underline; }

.article-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #4d3a2a;
  font-weight: 300;
}
.article-content p { margin-bottom: 22px; }
.article-content h2 {
  font-family: 'Forum', serif;
  font-size: 28px;
  color: var(--warm-brown);
  margin: 44px 0 16px;
  line-height: 1.25;
}
.article-content h3 {
  font-family: 'Forum', serif;
  font-size: 22px;
  color: var(--warm-brown);
  margin: 36px 0 14px;
  line-height: 1.25;
}
.article-content strong { color: var(--warm-brown); font-weight: 500; }
.article-content em { font-style: italic; }
.article-content a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.article-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.article-footer {
  border-top: 1px solid rgba(107,79,58,0.12);
  margin-top: 56px;
  padding-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.article-footer h3 {
  font-family: 'Forum', serif;
  font-size: 20px;
  color: var(--warm-brown);
  margin-bottom: 12px;
}
.article-footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #7a6558;
  font-weight: 300;
  margin-bottom: 10px;
}
.article-cta {
  background: var(--sage);
  color: var(--cream);
  text-align: center;
  padding: 36px 32px;
  border-radius: 6px;
  margin: 56px auto 0;
  max-width: 760px;
}
.article-cta h2 {
  font-family: 'Forum', serif;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 10px;
}
.article-cta p {
  font-size: 15px;
  color: rgba(245,240,232,0.88);
  font-weight: 300;
  margin-bottom: 20px;
}
.article-cta .btn-primary {
  background: var(--cream);
  color: var(--warm-brown);
}
.article-cta .btn-primary:hover { background: var(--white); }

/* Broken-image safety net is implemented in scripts/site.js (onerror handler).
   We deliberately do NOT have CSS rules targeting :error / :has(:error) — those
   pseudo-classes don't exist; trying to use them is a silent no-op. */

@media (max-width: 900px) {
  .process-section { padding: 64px 24px; }
  .process-step { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .process-number { font-size: 32px; }
  .journal-grid { grid-template-columns: 1fr; padding: 0 24px 64px; gap: 32px; }
  .article { padding: 24px 20px 56px; }
  .article-images { grid-template-columns: 1fr; }
  .article-footer { grid-template-columns: 1fr; gap: 24px; }
}
