:root {

  /* ── Colors ─────────────────────────────────────────── */
  --ink-black:      #1A1A1A;
  --parchment:      #F1E8D0;
  --cloud-white:    #FAFAF7;
  --aged-sepia:     #B89668;
  --atlas-blue:     #7A99B0;
  --soft-rose:      #E2BFB1;
  --compass-red:    #C8453A;
  --compass-red-dark: #a3362e; /* button hover */
  --stone-gray:     #6B6B68;

  /* Semantic aliases */
  --color-surface-primary: var(--parchment);
  --color-surface-card:    var(--cloud-white);
  --color-text-primary:    var(--ink-black);
  --color-text-muted:      var(--stone-gray);
  --color-border:          var(--aged-sepia);
  --color-cta:             var(--compass-red);
  --color-link:            var(--atlas-blue);
  --color-error:           var(--compass-red);

  /* ── Typography ─────────────────────────────────────── */
  --font-display: "Playfair Display", serif;
  --font-body:    "Lato", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:  "Mansalva", system-ui, -apple-system, BlinkMacSystemFont, cursive;

  /* ── Spacing ─────────────────────────────────────────── */
  --space-1:  4px;   /* inferred */
  --space-2:  8px;   /* inferred */
  --space-3:  12px;  /* inferred */
  --space-4:  16px;  /* inferred */
  --space-5:  20px;  /* inferred */
  --space-6:  24px;  /* container padding = 1.5rem */
  --space-8:  32px;  /* inferred */
  --space-10: 40px;  /* inferred */
  --space-12: 48px;  /* = --section-padding-mobile */
  --space-16: 64px;  /* inferred */
  --space-20: 80px;  /* = --section-padding-desktop */
  --space-24: 96px;  /* hero top padding */

  /* Layout */
  --max-width:               1180px;
  --reading-width:           720px;
  --section-padding-desktop: 80px;
  --section-padding-mobile:  48px;

  /* ── Borders & Radius ───────────────────────────────── */
  --card-radius:  4px;
  --radius-sm:    2px;   /* inferred; polaroid inset, stamps, tags */
  --radius-md:    4px;   /* buttons, cards, inputs = --card-radius */
  --radius-pin:   999px; /* map pins, push pins */

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-sm:           0 4px 10px rgba(0, 0, 0, 0.06);
  --shadow-md:           0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg:           0 14px 36px rgba(0, 0, 0, 0.2);
  --shadow-btn-primary:  0 8px 18px rgba(200, 69, 58, 0.22);
  --shadow-btn-secondary:0 6px 14px rgba(0, 0, 0, 0.2);
  --shadow-focus:        0 0 0 3px rgba(122, 153, 176, 0.25);
  --shadow-focus-error:  0 0 0 2px rgba(200, 69, 58, 0.18);
  --shadow-pin:          0 0 0 4px rgba(200, 69, 58, 0.3);

  /* ── Motion ──────────────────────────────────────────── */
  --transition-fast:   200ms ease;
  --duration-fast:     200ms;   /* UI hover states */
  --duration-base:     300ms;   /* inferred; scroll reveals */
  --duration-slow:     600ms;   /* inferred; SVG draw-ins */
  --ease-default:      ease;
  --ease-out:          cubic-bezier(0, 0, 0.2, 1); /* inferred */

}
/* Reset */
*, *::before, *::after { box-sizing: border-box; }

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

body, .wp-site-blocks {
  margin: 0;
  background-color: var(--parchment);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-black);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--atlas-blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--compass-red); }

/* ── Headings — dual-target native elements AND block classes ── */

h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.hl-heading {
  font-family: var(--font-display);
  color: var(--ink-black);
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1, .wp-block-heading[class*="is-style"] { font-size: clamp(40px, 4vw, 56px); line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 4vw, 56px); line-height: 1.1; }
h2 { font-size: clamp(32px, 3.5vw, 48px); line-height: 1.15; }
h3 { font-size: clamp(24px, 2.5vw, 32px); line-height: 1.2; }
h4 { font-size: 20px; line-height: 1.3; }
h5 { font-size: 16px; line-height: 1.4; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; }
h6 { font-size: 14px; line-height: 1.4; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; color: var(--stone-gray); }

/* ── Body copy ── */

p, .wp-block-paragraph, li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-black);
  margin-top: 0;
}

ul, ol { padding-left: 1.5em; }

/* ── Images ── */

.wp-block-image img,
.hl-img {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 150, 104, 0.7);
}

/* Polaroid block style — is-style-polaroid */
.wp-block-image.is-style-polaroid {
  background: var(--cloud-white);
  border-radius: 4px;
  padding: 0.6rem 0.6rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: inline-block;
  position: relative;
  max-width: 320px;
  transform: rotate(-2deg);
}
.wp-block-image.is-style-polaroid img {
  border: none;
  border-radius: 2px;
  display: block;
}
.wp-block-image.is-style-polaroid::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 18px;
  background: var(--compass-red);
  border-radius: 7px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
}

/* Standard block style — is-style-standard */
.wp-block-image.is-style-standard img {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 150, 104, 0.7);
}

/* ── Quote ── */

.wp-block-quote,
.hl-pullquote {
  border-left: 3px solid var(--compass-red);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-black);
}

.wp-block-quote.is-style-pullquote,
.hl-pullquote {
  font-family: var(--font-accent);
  font-size: 22px;
  line-height: 1.4;
}

.wp-block-quote cite,
.wp-block-quote footer {
  font-size: 14px;
  color: var(--stone-gray);
  font-style: normal;
  display: block;
  margin-top: 0.5rem;
}

/* ── Separator ── */

.wp-block-separator,
.hl-divider {
  border: none;
  border-top: 1px dashed rgba(184, 150, 104, 0.6);
  margin: 2rem 0;
}

/* ── Group block styles ── */

.wp-block-group.is-style-card,
.hl-card {
  background: var(--cloud-white);
  border-radius: var(--card-radius);
  border: 1px solid rgba(184, 150, 104, 0.9);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wp-block-group.is-style-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.wp-block-group.is-style-section-parchment {
  background: var(--parchment);
  padding: var(--section-padding-mobile) 1.5rem;
}

@media (min-width: 900px) {
  .wp-block-group.is-style-section-parchment {
    padding: var(--section-padding-desktop) 1.5rem;
  }
}

/* ── Tables ── */

table { border-collapse: collapse; width: 100%; }
th, td { padding: 0.5rem 0.75rem; border: 1px solid rgba(184, 150, 104, 0.5); text-align: left; }
th { font-weight: 600; background: rgba(241, 232, 208, 0.6); }

/* ── Code ── */

code, pre {
  font-family: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  background: rgba(250, 250, 247, 0.8);
  border: 1px solid rgba(184, 150, 104, 0.5);
  border-radius: 3px;
}
code { padding: 2px 4px; }
pre { padding: 1rem; overflow-x: auto; }

/* ── Reduced motion ── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.hl-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 247, 0.96);
  border-bottom: 1px solid rgba(184, 150, 104, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  position: relative;
}

.hl-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

@media (min-width: 900px) {
  .hl-logo-img { height: 52px; }
}

.hl-nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hl-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-black);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  transition: color var(--transition-fast);
}

/* FA JS replaces <i> with <svg class="svg-inline--fa ..."> — target both */
.hl-nav-link i,
.hl-nav-link svg.svg-inline--fa {
  font-size: 0.9em;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.hl-nav-link:hover i,
.hl-nav-link:hover .svg-inline--fa,
.hl-nav-link--active i,
.hl-nav-link--active .svg-inline--fa {
  opacity: 1;
  color: var(--atlas-blue);
}

/* Brand color overrides — same specificity (0,3,0), later in source so they win */
.hl-nav-link:hover .fa-etsy,
.hl-nav-link--active .fa-etsy { color: #F56400; }

.hl-nav-link:hover .fa-youtube,
.hl-nav-link--active .fa-youtube { color: #FF0000; }

.hl-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--compass-red);
  transition: width var(--transition-fast);
}

.hl-nav-link:hover,
.hl-nav-link--active {
  color: var(--ink-black);
}

.hl-nav-link:hover::after,
.hl-nav-link--active::after {
  width: 100%;
}

.hl-nav-cta {
  margin-left: 0.5rem;
}

/* ── Hamburger toggle (mobile) ── */

.hl-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink-black);
  font-size: 20px;
  line-height: 1;
}

.hl-nav-toggle[aria-expanded="true"] .hl-nav-toggle-open { display: none; }
.hl-nav-toggle[aria-expanded="false"] .hl-nav-toggle-close { display: none; }
.hl-nav-toggle[aria-expanded="true"] .hl-nav-toggle-close { display: block; color: var(--compass-red); }

/* ── Mobile menu drawer ── */

.hl-nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cloud-white);
  border-bottom: 1px solid rgba(184, 150, 104, 0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 19;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}

.hl-nav-mobile.is-open { display: flex; }

.hl-nav-mobile .hl-nav-link {
  font-size: 16px;
  font-weight: 600;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(184, 150, 104, 0.2);
  display: flex;
}

.hl-nav-mobile .hl-nav-link i,
.hl-nav-mobile .hl-nav-link svg.svg-inline--fa {
  font-size: 1em;
  opacity: 0.75;
  width: 1.25em;
  text-align: center;
}

.hl-nav-mobile .hl-nav-link::after { display: none; }

.hl-nav-mobile .hl-btn--ticket {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* ── Dropdown ──────────────────────────────────────────────────────────── */

.hl-nav-dropdown-wrap {
  position: relative;
}

/* Suppress underline animation on dropdown triggers */
.hl-nav-link--has-dropdown::after { display: none; }

.hl-nav-dropdown-caret {
  font-size: 0.6em !important;
  opacity: 0.7 !important;
  margin-left: 0.15rem;
  transition: transform 0.2s ease !important;
}

.hl-nav-dropdown-wrap:hover .hl-nav-dropdown-caret,
.hl-nav-dropdown-wrap:focus-within .hl-nav-dropdown-caret,
.hl-nav-dropdown-wrap.is-open .hl-nav-dropdown-caret {
  transform: rotate(180deg) !important;
}

.hl-nav-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 170px;
  background: rgba(250, 250, 247, 0.98);
  border: 1px solid rgba(184, 150, 104, 0.3);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  padding: 0.4rem 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Small arrow pointing up */
.hl-nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(184, 150, 104, 0.3);
}
.hl-nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(250, 250, 247, 0.98);
}

/* Scoped to desktop nav only — mobile has its own show rule */
.hl-nav-links .hl-nav-dropdown-wrap:hover .hl-nav-dropdown,
.hl-nav-links .hl-nav-dropdown-wrap:focus-within .hl-nav-dropdown,
.hl-nav-links .hl-nav-dropdown-wrap.is-open .hl-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hl-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-black);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.hl-nav-dropdown-item:hover {
  background-color: rgba(184, 150, 104, 0.1);
  color: var(--atlas-blue);
}

.hl-nav-dropdown-item i,
.hl-nav-dropdown-item svg.svg-inline--fa {
  width: 1.1em;
  text-align: center;
  flex-shrink: 0;
  font-size: 1em;
  opacity: 0.75;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.hl-nav-dropdown-item:hover i,
.hl-nav-dropdown-item:hover svg.svg-inline--fa { opacity: 1; }

/* Social brand color tints on hover */
.hl-nav-dropdown-item:hover .fa-instagram  { color: #E4405F; }
.hl-nav-dropdown-item:hover .fa-pinterest  { color: #E60023; }
.hl-nav-dropdown-item:hover .fa-tiktok     { color: var(--ink-black); }
.hl-nav-dropdown-item:hover .fa-facebook-f { color: #1877F2; }
.hl-nav-dropdown-item:hover .fa-etsy       { color: #F1641E; }
.hl-nav-dropdown-item:hover .fa-youtube    { color: #FF0000; }

/* ── Mobile: dropdown collapses/expands via tap ── */

.hl-nav-mobile .hl-nav-dropdown-wrap { position: static; }

.hl-nav-mobile .hl-nav-dropdown {
  display: none;
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.15rem 0 0.25rem 1.5rem;
  transition: none;
}

.hl-nav-mobile .hl-nav-dropdown-wrap.is-open .hl-nav-dropdown {
  display: flex;
  flex-direction: column;
}

.hl-nav-mobile .hl-nav-dropdown::before,
.hl-nav-mobile .hl-nav-dropdown::after { display: none; }

.hl-nav-mobile .hl-nav-dropdown-item {
  font-size: 14px;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(184, 150, 104, 0.15);
  color: var(--ink-black);
  gap: 0.6rem;
}

/* ── Stacked/compressed nav — small tablets (900–1199px) ── */

@media (min-width: 900px) and (max-width: 1199px) {
  .hl-nav-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding-block: 0.5rem;
  }

  .hl-logo-img {
    height: 44px;
  }

  .hl-nav-links {
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hl-nav-link {
    font-size: 13px;
  }

  .hl-nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 899px) {
  .hl-nav-inner { padding-inline: 1rem; }
  .hl-nav-links { display: none; }
  .hl-nav-toggle { display: flex; align-items: center; gap: 0.4rem; }
}
.hl-btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast),
              border-color var(--transition-fast), transform var(--transition-fast),
              box-shadow var(--transition-fast), filter var(--transition-fast);
}

/* Primary */
.hl-btn--primary,
.wp-block-button__link,
.wp-block-button.is-style-primary .wp-block-button__link {
  background: var(--compass-red);
  color: var(--cloud-white);
  border-color: var(--compass-red);
}
.hl-btn--primary:hover,
.wp-block-button__link:hover,
.wp-block-button.is-style-primary .wp-block-button__link:hover {
  background: var(--compass-red-dark);
  border-color: var(--compass-red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-primary);
  color: var(--cloud-white);
}

/* Secondary */
.hl-btn--secondary,
.wp-block-button.is-style-secondary .wp-block-button__link {
  background: transparent;
  color: var(--ink-black);
  border-color: var(--ink-black);
}
.hl-btn--secondary:hover,
.wp-block-button.is-style-secondary .wp-block-button__link:hover {
  background: var(--ink-black);
  color: var(--cloud-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-secondary);
}

/* Tertiary */
.hl-btn--tertiary,
.wp-block-button.is-style-tertiary .wp-block-button__link {
  background: none;
  border: none;
  padding-inline: 0;
  color: var(--atlas-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hl-btn--tertiary:hover,
.wp-block-button.is-style-tertiary .wp-block-button__link:hover {
  color: var(--compass-red);
}

/* Ticket CTA */
.hl-btn--ticket {
  border: none;
  border-radius: 0;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 44' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L160,0 L160,14 A8,8 0 0,0 160,30 L160,44 L0,44 L0,30 A8,8 0 0,0 0,14 Z' fill='%23C8453A'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--cloud-white);
  padding-inline: 2rem;
  filter: drop-shadow(0 8px 18px rgba(200, 69, 58, 0.25));
}
.hl-btn--ticket:hover {
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 44' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L160,0 L160,14 A8,8 0 0,0 160,30 L160,44 L0,44 L0,30 A8,8 0 0,0 0,14 Z' fill='%23a3362e'/%3E%3C/svg%3E");
  border: none;
  box-shadow: none;
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 22px rgba(200, 69, 58, 0.3));
  color: var(--cloud-white);
}
/* Strip ticket visual styles from the WP block button wrapper div — the <a> inside carries them */
.wp-block-button.hl-btn--ticket {
  background: none;
  background-image: none;
  filter: none;
  padding: 0;
}
.wp-block-button.hl-btn--ticket:hover {
  background: none;
  background-image: none;
  filter: none;
  transform: none;
}

/* Atlas Blue */
.hl-btn--atlas {
  background: transparent;
  color: var(--atlas-blue);
  border-color: var(--atlas-blue);
}
.hl-btn--atlas:hover {
  background: var(--atlas-blue);
  color: var(--cloud-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-secondary);
}

/* Disabled */
.hl-btn:disabled,
.hl-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Button row */
.hl-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hl-card {
  background: var(--cloud-white);
  border-radius: var(--card-radius);
  border: 1px solid rgba(184, 150, 104, 0.9);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

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

.hl-card-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-black);
  border: 1px solid var(--aged-sepia);
  padding: 0.3rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, rgba(241, 232, 208, 0.9), rgba(250, 250, 247, 1));
}

.hl-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.hl-card-meta {
  font-size: 13px;
  color: var(--stone-gray);
  margin-bottom: 0.75rem;
}

.hl-card-body {
  font-size: 15px;
  margin-bottom: 0.75rem;
}

.hl-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--atlas-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hl-card-link:hover { color: var(--compass-red); }

.hl-card-link--stretched::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ── Card thumbnail ── */

.hl-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184, 150, 104, 0.7);
  margin-bottom: 1rem;
  display: block;
}

/* ── Memoir single hero image ── */

.hl-memoir-hero-img {
  margin: 0 0 2.5rem;
}

.hl-memoir-hero-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--card-radius);
  border: 1px solid rgba(184, 150, 104, 0.7);
  display: block;
}

/* ── Card grid ── */

.hl-card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .hl-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hl-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hl-card-grid--2col {
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .hl-card-grid--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .hl-card-grid--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hl-card-grid--4col {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .hl-card-grid--4col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .hl-card-grid--4col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── Journey Kit single-page components ── */

.hl-kit-edition {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone-gray);
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

.hl-kit-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hl-kit-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-black);
}

.hl-kit-format-badge,
.hl-kit-age {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid var(--aged-sepia);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(241, 232, 208, 0.8), rgba(250, 250, 247, 1));
  color: var(--ink-black);
}

.hl-kit-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hl-kit-included-list li::before {
  content: '✦';
  font-size: 10px;
  color: var(--atlas-blue);
  margin-right: 0.6rem;
  vertical-align: middle;
}

.hl-kit-item-desc {
  color: var(--stone-gray);
  font-size: 0.9em;
}

.hl-kit-content-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hl-kit-chip {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--atlas-blue);
  border-radius: 100px;
  color: var(--atlas-blue);
  background: transparent;
}

.hl-kit-best-for {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--compass-red);
  background: rgba(241, 232, 208, 0.35);
  font-size: 0.95rem;
  line-height: 1.6;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Kit single — "What's Inside" layout ── */

.hl-kit-inside-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 820px) {
  .hl-kit-inside-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  }
}

.hl-kit-inside-single {
  max-width: var(--reading-width);
  margin: 0 auto;
}

.hl-kit-photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hl-kit-photo-polaroid {
  max-width: 260px;
  width: 100%;
}

.hl-kit-photos-overflow {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  padding-top: 2.5rem;
  margin-top: 1.5rem;
  border-top: 1px dashed var(--atlas-blue);
}

.hl-kit-photo-polaroid--overflow {
  max-width: 220px;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Postcard card component — .hl-postcard
   Reusable for any taxonomy card. Journey Kit is the first consumer.
   CSS-only 3D flip on hover; animated curled corner on load.
   ─────────────────────────────────────────────────────────────────────────── */

.hl-postcard {
  perspective: 1200px;
}

/* Flip container — grid-stacked faces inherit height from the taller face */
.hl-postcard__inner {
  display: grid;
  grid-template-areas: "card";
  transform-style: preserve-3d;
  transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hl-postcard:hover .hl-postcard__inner,
.hl-postcard.is-flipped .hl-postcard__inner {
  transform: rotateY(180deg);
}

/* ── Shared face ── */

.hl-postcard__face {
  grid-area: card;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--card-radius);
  border: 1px solid rgba(184, 150, 104, 0.8);
  background-color: var(--cloud-white);
  /* Subtle ruled-paper lines — postcard texture */
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 23px,
    rgba(184, 150, 104, 0.07) 23px,
    rgba(184, 150, 104, 0.07) 24px
  );
  box-shadow: var(--shadow-md);
}

/* ── Front face ── */

.hl-postcard__face--front {
  display: flex;
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  min-height: 300px;
}

/*
 * Triangle that covers the card border at the fold diagonal.
 * Sits between card content (z-index auto) and the curl (z-index 1).
 * Extends 1px past the border so no seam is visible.
 * Grows in sync with the curl on hover.
 */
.hl-postcard__face--front::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  /* 14px horizontal cut + 2px border coverage */
  width: 16px;
  /* 52px vertical cut + 2px border coverage */
  height: 54px;
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  background: var(--cloud-white);
  z-index: 0;
  pointer-events: none;
  transition: width 0.28s ease, height 0.28s ease;
}

.hl-postcard:hover .hl-postcard__face--front::after,
.hl-postcard.is-flipped .hl-postcard__face--front::after {
  width: 20px;
  height: 69px;
}

/* ── Message panel (left, ~55%) ── */

.hl-postcard__panel--message {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-right: 1.25rem;
}

/* ── Address panel (right, ~45%) ── */

.hl-postcard__panel--address {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 1rem;
  /* right padding clears the absolute postmark (58px + small gutter) */
  padding-right: 68px;
}

/* ── Dashed vertical divider (postcard convention) ── */

.hl-postcard__divider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  background: repeating-linear-gradient(
    to bottom,
    rgba(184, 150, 104, 0.55) 0px,
    rgba(184, 150, 104, 0.55) 5px,
    transparent 5px,
    transparent 9px
  );
}

/* ── Stamp label ── */

.hl-postcard__stamp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px 5px;
  border: 1.5px solid var(--aged-sepia);
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(241, 232, 208, 0.92), var(--cloud-white));
  outline: 2.5px dashed rgba(184, 150, 104, 0.38);
  outline-offset: 3px;
  width: fit-content;
  color: var(--aged-sepia);
}

.hl-postcard__stamp span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-black);
  font-family: var(--font-body);
  font-weight: 700;
}

/* ── Front title ── */

.hl-postcard__title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.25;
  margin: 0;
}

.hl-postcard__title-link {
  color: inherit;
  text-decoration: none;
}

.hl-postcard__title-link:hover {
  color: var(--compass-red);
}

/* ── Tagline & excerpt ── */

.hl-postcard__tagline {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--stone-gray);
  margin: 0;
  line-height: 1.4;
}

.hl-postcard__excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-black);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* ── Circular postmark — absolute, top-right of address panel ── */

.hl-postcard__postmark {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  opacity: 0.9;
  pointer-events: none;
}

.hl-postcard__destination {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stone-gray);
  margin: 0;
}

/* ── Included items list (right panel) ── */

.hl-postcard__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.hl-postcard__item {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-black);
  padding-left: 1.1em;
  position: relative;
}

.hl-postcard__item::before {
  content: "✦";
  position: absolute;
  left: 0;
  font-size: 7px;
  color: var(--atlas-blue);
  top: 0.2em;
}

.hl-postcard__item--more {
  font-size: 11px;
  color: var(--stone-gray);
  font-style: italic;
}

.hl-postcard__item--more::before {
  content: none;
}

/* ── Hover/tap-to-preview hint ── */

.hl-postcard__flip-hint {
  margin-top: auto;
  font-size: 10px;
  color: rgba(107, 107, 104, 0.45);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* Show the appropriate hint variant based on input method */
.hl-postcard__flip-hint--touch { display: none; }

@media (pointer: coarse) {
  .hl-postcard__flip-hint--hover { display: none; }
  .hl-postcard__flip-hint--touch { display: inline; }
}

/* ── Curled corner ── */

/*
 * Curl uses three layers (back → front):
 *   element bg  : parchment fallback (shows when no image)
 *   ::before    : featured image, blurred — "underside" color peek
 *   ::after     : fold crease gradient — white folded surface + transparent triangle
 */
.hl-postcard__curl {
  position: absolute;
  bottom: 0;
  right: 0;
  /* 75° angle from horizontal: width ≈ 14px, height ≈ 52px (ratio ≈ tan 75°) */
  width: 14px;
  height: 52px;
  background: rgba(241, 232, 208, 0.85);
  border-top-left-radius: 3px;
  box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  z-index: 1;
  overflow: hidden; /* clips the oversized blurred ::before */
  animation: hl-curl-in 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
  transition: width 0.28s ease, height 0.28s ease, box-shadow 0.28s ease;
}

/* Blurred image — extends past bounds so blur doesn't thin at the clip edges */
.hl-postcard__curl::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: var(--curl-img, none) bottom left / cover no-repeat;
  filter: blur(6px);
  z-index: 1;
}

/*
 * Fold crease gradient — adapts to the asymmetric 14×52 element.
 * "to bottom right" runs from the upper-left (card surface, white) to
 * the lower-right (fold underside, transparent → blurred image shows through).
 */
.hl-postcard__curl::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    var(--cloud-white) 52%,
    rgba(0, 0, 0, 0.14) 63%,
    transparent 74%
  );
  z-index: 2;
}

.hl-postcard:hover .hl-postcard__curl,
.hl-postcard.is-flipped .hl-postcard__curl {
  width: 18px;
  height: 67px;
  box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.11);
}

@keyframes hl-curl-in {
  from { width: 0; height: 0; opacity: 0; }
  to   { width: 14px; height: 52px; opacity: 1; }
}

/* ── Back face ── */

.hl-postcard__face--back {
  transform: rotateY(180deg);
  display: flex;
  overflow: hidden;
}

.hl-postcard__back-image {
  flex: 0 0 45%;
  overflow: hidden;
}

.hl-postcard__back-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hl-postcard__back-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  gap: 0.75rem;
}

.hl-postcard__back-destination {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone-gray);
  font-weight: 700;
  margin: 0;
}

.hl-postcard__back-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.2;
  margin: 0;
}

/* ── Grid modifier: 2-col landscape layout for postcard archives ── */

.hl-card-grid--postcard {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 720px) {
  .hl-card-grid--postcard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Mobile: tap-to-flip via JS (.is-flipped), cancel ghost :hover ── */

@media (max-width: 599px) {
  /* Touch devices fire ghost :hover — cancel it so only JS-driven .is-flipped flips */
  .hl-postcard:hover:not(.is-flipped) .hl-postcard__inner          { transform: none; }
  .hl-postcard:hover:not(.is-flipped) .hl-postcard__curl            { width: 14px; height: 52px; box-shadow: -3px -3px 7px rgba(0,0,0,0.08); }
  .hl-postcard:hover:not(.is-flipped) .hl-postcard__face--front::after { width: 16px; height: 54px; }

  /* Front face — stacked when not flipped */
  .hl-postcard__face--front {
    flex-direction: column;
    min-height: 0;
  }

  .hl-postcard__divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      rgba(184, 150, 104, 0.5) 0px,
      rgba(184, 150, 104, 0.5) 5px,
      transparent 5px,
      transparent 9px
    );
  }

  .hl-postcard__panel--message,
  .hl-postcard__panel--address {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .hl-postcard__flip-hint { display: none; }

  /* Back face — stacks image above content on narrow screens */
  .hl-postcard__face--back {
    flex-direction: column;
  }

  .hl-postcard__back-image {
    flex: 0 0 180px;
    height: 180px;
  }

  .hl-postcard__back-content {
    padding: 1.25rem;
  }
}

/* ── Reduced motion: disable flip and curl ── */

@media (prefers-reduced-motion: reduce) {
  .hl-postcard__inner {
    transition: none;
  }

  .hl-postcard:hover .hl-postcard__inner,
  .hl-postcard.is-flipped .hl-postcard__inner {
    transform: none;
  }

  .hl-postcard__curl {
    animation: none;
    width: 14px;
    height: 52px;
    opacity: 1;
  }

  .hl-postcard:hover .hl-postcard__curl {
    width: 14px;
    height: 52px;
  }

  .hl-postcard__face--front::after {
    transition: none;
    width: 16px;
    height: 54px;
  }

  .hl-postcard:hover .hl-postcard__face--front::after {
    width: 16px;
    height: 54px;
  }
}

/* ── Coming Soon badge ───────────────────────────────────────────────────────── */

.hl-postcard__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 0;
  font-size: 9px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Perforated postage stamp style */
.hl-postcard__badge--coming-soon {
  background: var(--parchment);
  color: var(--atlas-blue);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 8px;
  letter-spacing: 0.22em;
  padding: 5px 10px;
  outline: 3px dotted var(--aged-sepia);
  outline-offset: 3px;
  /* gap between text box and dotted outline = perforation gutter */
  box-shadow: 0 0 0 6px var(--color-surface-card);
  margin: 14px 0 14px 6px;
}

/* Teaser text shown on the address panel for coming-soon kits */
.hl-postcard__teaser {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: var(--stone-gray);
  line-height: 1.55;
  margin: 0 0 auto;
}

.hl-btn--disabled {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}
.hl-form,
.wpcf7-form {
  max-width: 540px;
}

.hl-field,
.wpcf7-form p {
  margin-bottom: 1.25rem;
}

.hl-label,
.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--stone-gray);
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
}

.hl-input,
.hl-textarea,
.hl-select,
.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea,
.wpcf7-select,
.wpcf7-number,
.wpcf7-file {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--aged-sepia);
  font-family: var(--font-body);
  font-size: 16px;
  background: rgba(250, 250, 247, 0.9);
  color: var(--ink-black);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  box-sizing: border-box;
}

.hl-input:focus,
.hl-textarea:focus,
.hl-select:focus,
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus,
.wpcf7-number:focus {
  outline: none;
  border-color: var(--atlas-blue);
  box-shadow: var(--shadow-focus);
  background: var(--cloud-white);
}

.hl-textarea,
.wpcf7-textarea {
  min-height: 140px;
  resize: vertical;
}

.hl-helper { font-size: 13px; color: var(--stone-gray); margin-top: 0.2rem; }

.hl-error-msg,
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: var(--compass-red);
  margin-top: 0.25rem;
  display: block;
}

.hl-input--error,
.wpcf7-not-valid {
  border-color: var(--compass-red);
  box-shadow: var(--shadow-focus-error);
}

/* CF7 submit */
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--compass-red);
  cursor: pointer;
  background: var(--compass-red);
  color: var(--cloud-white);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.wpcf7-submit:hover {
  background: var(--compass-red-dark);
  border-color: var(--compass-red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-primary);
}

/* CF7 response messages */
.wpcf7-response-output {
  font-size: 14px;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  border: 1px solid var(--aged-sepia);
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: var(--atlas-blue);
  color: var(--atlas-blue);
  background: rgba(122, 153, 176, 0.08);
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  border-color: var(--compass-red);
  color: var(--compass-red);
  background: rgba(200, 69, 58, 0.06);
}

/* MC4WP overrides */
.mc4wp-form .mc4wp-form-fields p { margin-bottom: 1rem; }
.mc4wp-form .mc4wp-form-fields p.hl-signup-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0;
}
.mc4wp-form input[type="email"],
.mc4wp-form input[type="text"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--aged-sepia);
  font-family: var(--font-body);
  font-size: 16px;
  background: rgba(250, 250, 247, 0.9);
  color: var(--ink-black);
  box-sizing: border-box;
}
.hl-signup-row input[type="email"] {
  flex: 1;
  width: auto;
}
.mc4wp-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--compass-red);
  cursor: pointer;
  background: var(--compass-red);
  color: var(--cloud-white);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.mc4wp-form input[type="submit"]:hover {
  background: var(--compass-red-dark);
  border-color: var(--compass-red-dark);
  transform: translateY(-1px);
}

/* File upload */
.wpcf7-file {
  padding: 0.4rem 0.5rem;
  cursor: pointer;
}
/* ── Hero ── */

.hero {
  border-bottom: 1px solid rgba(184, 150, 104, 0.7);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 1.5rem 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

/* Logo */
.hero-logo {
  width: 440px;
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* H1 */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
}

/* Mansalva tagline */
.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: #000;
  max-width: 580px;
  margin-bottom: 1rem;
}

/* Three-polaroid row */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem 2rem;
  width: 100%;
  max-width: 1060px;
  margin-top: 0.5rem;
  text-align: left;
}

@media (min-width: 720px) {
  .hero-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

/* Individual card (polaroid + CTA) */
.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Polaroid overrides for hero context — doubled selector beats .polaroid in scrapbook.css */
.polaroid.hero-polaroid {
  transform: rotate(var(--rotate, -2deg));
  max-width: 100%;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.hero-card-cta {
  width: max-content;
}

/* Center kit meta and button row when inside hero-inner */
.hero-inner .hl-kit-meta,
.hero-inner .hl-btn-row {
  justify-content: center;
}

/* Lead paragraph (archive heroes, standalone hero sections) */
.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--ink);
  max-width: 600px;
}

/* Text block wrapper — ensures centered alignment inside hero-inner */
.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

/* Bouncing scroll-down arrow */
.hero-scroll-arrow {
  margin-top: 1.25rem;
  color: var(--atlas-blue);
  animation: hl-bounce 1.6s ease-in-out infinite;
  line-height: 0;
}

@keyframes hl-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}

/* ── "Intro from Heather" trigger ── */

.hl-intro-trigger {
  font-family: var(--font-accent);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--aged-sepia);
  background: transparent;
  border: 1.5px dashed var(--aged-sepia);
  border-radius: var(--radius-md);
  padding: 0.45em 1.2em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.hl-intro-trigger:hover,
.hl-intro-trigger:focus-visible {
  color: var(--ink-black);
  border-color: var(--ink-black);
  background: rgba(241, 232, 208, 0.45);
  outline: none;
}


/* ── Intro backdrop (click-outside target) ── */

.hl-intro-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9090;
  background: rgba(26, 26, 26, 0.45);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.hl-intro-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Notepad — off-screen until .is-open ── */

/*
 * Line grid is 32px to match the body line-height below.
 * padding-top: 8px means the first text baseline lands ~32px from the top
 * (8px padding + ~24px cap offset in a 32px box) — right on line 1.
 */
.hl-notepad {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9100;
  width: min(520px, calc(100vw - 2rem));
  max-height: 82vh;
  overflow-y: auto;
  background-color: #f9f2e3;
  background-image:
    linear-gradient(
      to right,
      transparent 52px,
      rgba(200, 69, 58, 0.12) 52px,
      rgba(200, 69, 58, 0.12) 54px,
      transparent 54px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 31px,
      rgba(100, 140, 195, 0.09) 31px,
      rgba(100, 140, 195, 0.09) 32px
    );
  background-attachment: local;
  border-radius: 2px 2px 3px 3px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184, 150, 104, 0.2);
  padding: 8px 2rem 2rem 4rem;
  /* off-screen above the viewport */
  transform: translate(-50%, calc(-50% - 100vh));
  opacity: 0;
  visibility: hidden;
  transition: transform 360ms var(--ease-out), opacity 280ms ease, visibility 280ms ease;
}
.hl-notepad.is-open {
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

/* Close button */

.hl-notepad-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--stone-gray);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.hl-notepad-close:hover,
.hl-notepad-close:focus-visible {
  color: var(--ink-black);
  background: rgba(0, 0, 0, 0.08);
  outline: none;
}

/* Notepad heading — 2 rows tall so body text below stays on-grid */

.hl-notepad-from {
  font-family: var(--font-accent);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 32px;
  color: var(--aged-sepia);
  margin: 0 0 32px;
}

/* Notepad body — Mansalva, line-height locked to the 32px grid */

.hl-notepad-body {
  font-family: var(--font-accent);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 32px;
  color: var(--ink-black);
}
.hl-notepad-body p {
  margin: 0;
  line-height: 32px;
}
.hl-notepad-body p + p {
  margin-top: 32px;
}
/* ── Featured Destination — hero image background ── */

.hl-section--featured-dest {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.featured-dest-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hl-section--featured-dest > .container {
  position: relative;
  z-index: 1;
}

.hl-section--featured-dest .hl-section-label {
  color: rgba(241, 232, 208, 0.75);
}

.hl-section--featured-dest .hl-section-title,
.hl-section--featured-dest .scrapbook-notes > p {
  color: var(--cloud-white);
}

.hl-section--featured-dest .scrapbook-stamp {
  border-color: rgba(241, 232, 208, 0.45);
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 3px,
    rgba(255, 255, 255, 0.1)  3px, rgba(255, 255, 255, 0.1)  6px
  );
}

.hl-section--featured-dest .scrapbook-stamp::before {
  border-color: rgba(241, 232, 208, 0.45);
}

.hl-section--featured-dest .scrapbook-stamp-label {
  color: var(--cloud-white);
}

/* ── Featured destination right-column image (no shadow, no border) ── */

.featured-dest-image-col {
  display: flex;
  align-items: flex-start;
}

.featured-dest-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ── Vintage map backdrop ── */

.hl-section--map {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--parchment);
  background-image:
    /* Edge vignette — aged paper darkens at the margins */
    radial-gradient(ellipse 80% 70% at 50% 50%,
      transparent 35%,
      rgba(139, 107, 60, 0.13) 70%,
      rgba(100, 72, 30, 0.22) 100%
    ),
    /* Warm centre bloom — slightly lighter/warmer at heart of page */
    radial-gradient(ellipse 55% 55% at 50% 42%,
      rgba(255, 245, 220, 0.28) 0%,
      transparent 70%
    ),
    /* Fine diagonal paper grain — avoids 0°/90° to prevent grid feel */
    repeating-linear-gradient(
      118deg,
      transparent 0px, transparent 5px,
      rgba(184, 150, 104, 0.045) 5px, rgba(184, 150, 104, 0.045) 6px
    );
}

.hl-section--map > .container,
.hl-section--map > * { position: relative; z-index: 1; }

/* Map overlay — position absolute, covers the section, pointer-events none */
.map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.map-contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-coord {
  position: absolute;
  font-family: "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  color: rgba(107, 107, 104, 0.5);
  line-height: 1.5;
}

.map-coord--tl { top: 14px;    left: 16px; }
.map-coord--bl { bottom: 14px; left: 16px; }
.map-coord--br { bottom: 14px; right: 16px; text-align: right; }

.map-compass {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 54px;
  height: 54px;
}

.map-legend-box {
  position: absolute;
  bottom: 36px;
  right: 16px;
  width: 136px;
  background: rgba(241, 232, 208, 0.82);
  border: 1px solid rgba(184, 150, 104, 0.5);
  padding: 8px 10px 6px;
}

.map-legend-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(107, 107, 104, 0.65);
  font-weight: 700;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(184, 150, 104, 0.4);
  padding-bottom: 4px;
  margin-bottom: 5px;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-family: var(--font-body);
  color: rgba(107, 107, 104, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.map-legend-swatch {
  flex-shrink: 0;
  width: 18px;
  height: 1.5px;
  background: rgba(184, 150, 104, 0.55);
}

.map-legend-swatch--dashed {
  background: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(184, 150, 104, 0.55) 0, rgba(184, 150, 104, 0.55) 4px,
    transparent 4px, transparent 7px
  );
  height: 1px;
}

.map-legend-swatch--pin {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200, 69, 58, 0.45);
}

/* ── Polaroid frame ── */

.polaroid {
  background: var(--cloud-white);
  border-radius: 4px;
  padding: 0.6rem 0.6rem 1.2rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  max-width: 320px;
  position: relative;
  display: inline-block;
}

.polaroid::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 18px;
  background: var(--compass-red);
  border-radius: 7px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.polaroid--right { transform: rotate(2deg); }
.polaroid--left  { transform: rotate(-3deg); }

.polaroid-img {
  border-radius: 2px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  margin-top: 0.6rem;
  font-size: 13px;
  color: var(--stone-gray);
  line-height: 1.4;
}

.polaroid-caption span {
  font-family: var(--font-accent);
  font-size: 15px;
  display: block;
  color: var(--ink-black);
}

/* ── Scrapbook layout row ── */

.scrapbook-row {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 600px) {
  .scrapbook-row {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.scrapbook-notes {
  max-width: var(--reading-width);
}

.scrapbook-layout {
  position: relative;
  min-height: 260px;
}

.scrapbook-polaroid {
  position: absolute;
  width: 180px;
}

.scrapbook-polaroid--left {
  left: 0;
  top: 40px;
  transform: rotate(-3deg);
}

.scrapbook-polaroid--right {
  right: 8%;
  top: 0;
  transform: rotate(2deg);
}

/* ── Postage stamp badge ── */

.scrapbook-stamp {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 80px;
  border-radius: 2px;
  border: 1px solid var(--aged-sepia);
  background: repeating-linear-gradient(
    45deg,
    rgba(241, 232, 208, 0.8) 0, rgba(241, 232, 208, 0.8) 3px,
    rgba(226, 191, 177, 0.7) 3px, rgba(226, 191, 177, 0.7) 6px
  );
  box-shadow: var(--shadow-sm);
  position: relative;
}

.scrapbook-stamp::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(184, 150, 104, 0.7);
  border-radius: 2px;
}

.scrapbook-stamp-label {
  position: absolute;
  inset: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-black);
  font-family: var(--font-body);
}

/* ── Compass Red map pin ── */

.map-pin {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--compass-red);
  box-shadow: var(--shadow-pin);
  position: absolute;
}

/* ── Dashed journey path ── */

.scrapbook-path {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scrapbook-path svg path {
  stroke: var(--aged-sepia);
  stroke-width: 1.8;
  stroke-dasharray: 6 4;
  fill: none;
}

/* ── Journey Story single layout ── */

.hl-story-photo {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

/* Image above text on mobile */
@media (max-width: 899px) {
  .hl-story-photo { order: -1; padding-top: 0; padding-bottom: 1.5rem; }
}

.hl-story-photo .polaroid {
  max-width: 280px;
  width: 100%;
}

.hl-story-content--solo {
  max-width: var(--reading-width);
  margin-inline: auto;
}

.hl-story-byline {
  font-family: var(--font-accent);
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--aged-sepia);
  margin-top: 2rem;
}
/* ── Photo Album Flipbook ─────────────────────────────────────────────────── */

.hl-photo-album {
  max-width: 640px;
  margin: 2.5rem auto 0;
}

/* Stage: relative container; margin gives room for rotated ghost-card edges */
.hl-album-stage {
  position: relative;
  margin: 30px;
}

/* Ghost polaroid cards peeking from behind the active photo */
.hl-album-ghost {
  position: absolute;
  inset: 0;
  background: var(--cloud-white);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.hl-album-ghost--1 { transform: rotate(-4.5deg); z-index: 0; }
.hl-album-ghost--2 { transform: rotate( 2.5deg); z-index: 1; }

/* Track: CSS grid so every slide occupies the same cell */
.hl-album-track {
  display: grid;
  grid-template-areas: 'slide';
  position: relative;
  z-index: 2;
}

.hl-album-slide {
  grid-area: slide;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Defeat .polaroid's max-width: 320px so album photos fill the stage */
.hl-album-slide.polaroid {
  max-width: 100%;
}

.hl-album-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Let album photos display at their natural aspect ratio */
.hl-album-slide .polaroid-img {
  aspect-ratio: unset;
  object-fit: unset;
  height: auto;
}

/* ── Navigation controls ── */

.hl-album-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hl-album-btn {
  background: transparent;
  border: 2px solid var(--aged-sepia);
  color: var(--aged-sepia);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.hl-album-btn:hover {
  background: var(--aged-sepia);
  color: var(--cloud-white);
}

.hl-album-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  background: var(--aged-sepia);
  color: var(--cloud-white);
}

.hl-album-counter {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--stone-gray);
  min-width: 60px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Dot navigation ── */

.hl-album-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.hl-album-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aged-sepia);
  opacity: 0.3;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hl-album-dot.is-active {
  opacity: 1;
  transform: scale(1.35);
}

.hl-album-dot:hover {
  opacity: 0.65;
}

.hl-album-dot:focus-visible {
  outline: 2px solid var(--atlas-blue);
  outline-offset: 2px;
}

/* ── Single-photo variant: no navigation UI ── */

.hl-photo-album--single .hl-album-controls,
.hl-photo-album--single .hl-album-dots { display: none; }

/* ── Briefcase / Lens Scene ─────────────────────────────────────────────── */

/*
 * Layout: briefcase sits BEHIND the album stage as a decorative layer that
 * blends into the map background (mix-blend-mode:multiply on parchment =
 * a warm vintage-sketch effect). The album stage (z-index:1) sits on top so
 * polaroid photos are fully visible and the briefcase provides depth/framing.
 *
 * Geometry: 640×640 square image — lid interior ≈ 15–85% wide, 5–47% tall.
 * At width:140% / left:-20% the lid wraps the album stage on both sides.
 * padding-bottom keeps the scene tall enough for the suitcase body to show.
 */

.hl-lens-scene {
  position: relative;
  max-width: 420px;
  margin: 1.5rem auto 0;
  padding-bottom: 25%;
}

/* Album stage sits in front of the briefcase */
.hl-lens-scene .hl-album-stage {
  position: relative;
  z-index: 1;
}

/* Briefcase: BEHIND the album, blends with the parchment map as a vintage sketch.
   Larger width + greater left/top offsets expose the lid and sides around photos. */
.hl-lens-briefcase {
  position: absolute;
  top: -8%;
  left: -28%;
  width: 160%;
  pointer-events: none;
  z-index: 0;
}

.hl-lens-briefcase-img {
  width: 100%;
  height: auto;
  display: block;
  /* Multiply with parchment background: whites → warm cream, sketch lines → dark
     brown. Creates a vintage-etching-on-aged-paper effect.                   */
  mix-blend-mode: multiply;
  /* sepia(0.35) keeps the sketch warm but not green-tinged; slight tilt makes
     the case feel hand-placed rather than perfectly centered                  */
  filter: sepia(0.35) brightness(0.88) contrast(1.12);
  transform: rotate(-0.8deg);
  transform-origin: center bottom;
}

.hl-photo-album .hl-album-controls {
  margin-top: 1.5rem;
}

@media (max-width: 480px) {
  .hl-lens-scene {
    max-width: 100%;
    padding-bottom: 25%;
  }
  .hl-lens-briefcase {
    left: -14%;
    width: 128%;
    top: -4%;
  }
}
/* ── Lead Magnet CTA section ── */

.hl-lm-cta {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

/* ── Preview image column ── */

.hl-lm-cta__image {
  flex: 0 0 38%;
  display: flex;
  justify-content: center;
}

.hl-lm-preview-frame {
  position: relative;
  display: inline-block;
  background: var(--cloud-white);
  padding: 12px 12px 36px;
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  border: 1px solid rgba(139, 107, 60, 0.15);
}

/* Corner tape strips */
.hl-lm-preview-frame::before,
.hl-lm-preview-frame::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 14px;
  background: rgba(241, 232, 208, 0.75);
  border: 1px solid rgba(139, 107, 60, 0.25);
  opacity: 0.85;
}

.hl-lm-preview-frame::before {
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
}

.hl-lm-preview-frame::after {
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
}

.hl-lm-preview-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 2px;
}

/* ── Content column ── */

.hl-lm-cta__content {
  flex: 1;
  min-width: 0;
}

.hl-lm-cta__lead {
  margin: var(--space-4) 0 var(--space-8);
  color: var(--ink-dark);
  line-height: 1.65;
  max-width: 54ch;
}

/* Form inherits forms.css — no overrides needed */

/* ── Mobile: stacked, image first ── */

@media (max-width: 768px) {
  .hl-lm-cta {
    flex-direction: column;
    gap: var(--space-10);
  }

  .hl-lm-cta__image {
    flex: none;
    width: 100%;
  }

  .hl-lm-preview-frame {
    transform: rotate(-1deg);
  }

  .hl-lm-preview-img {
    max-width: 260px;
  }
}
/* ── Story Section ────────────────────────────────────────────────────────── */

.hl-story-section .container {
    max-width: var(--reading-width);
}

.hl-story-section__title {
    font-family: var(--font-accent);
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.15;
    color: var(--ink-black);
    text-align: center;
    margin-bottom: var(--space-10);
}

.hl-story-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.hl-story-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.hl-story-item__image {
    flex: 0 0 20%;
    max-width: 20%;
}

.hl-story-item__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.hl-story-item__text {
    flex: 1;
}

.hl-story-item__text > *:first-child {
    margin-top: 0;
}

.hl-story-item__text > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 899px) {
    .hl-story-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hl-story-item__image {
        flex: 0 0 auto;
        max-width: 120px;
    }
}

/* ── About page social links ───────────────────────────────────────────────── */

.hl-about-social {
    border-top: 1px solid rgba(184, 150, 104, 0.25);
    padding-top: 2rem;
    margin-top: 2.5rem;
}

.hl-about-social__label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--ink-mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.hl-about-social__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
}

.hl-about-social__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ink-black);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hl-about-social__link i,
.hl-about-social__link svg.svg-inline--fa {
    font-size: 1.15em;
    opacity: 0.65;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.hl-about-social__link:hover { color: var(--atlas-blue); }
.hl-about-social__link:hover i,
.hl-about-social__link:hover svg.svg-inline--fa { opacity: 1; }

.hl-about-social__link:hover .fa-instagram  { color: #E4405F; }
.hl-about-social__link:hover .fa-pinterest  { color: #E60023; }
.hl-about-social__link:hover .fa-tiktok     { color: var(--ink-black); }
.hl-about-social__link:hover .fa-facebook-f { color: #1877F2; }
.hl-about-social__link:hover .fa-etsy       { color: #F1641E; }
.hl-about-social__link:hover .fa-youtube    { color: #FF0000; }
/* ── Container ── */

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

.container--reading {
  max-width: var(--reading-width);
}

/* ── Section ── */

.hl-section {
  padding: var(--section-padding-mobile) 0;
}

@media (min-width: 900px) {
  .hl-section {
    padding: var(--section-padding-desktop) 0;
  }
}

.hl-section--parchment { background: var(--parchment); }
.hl-section--cloud    { background: var(--cloud-white); }

/* ── Section heading group ── */

.hl-section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone-gray);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.hl-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hl-section-lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ── Divider ── */

.hl-divider {
  border: none;
  border-top: 1px dashed rgba(184, 150, 104, 0.6);
  margin: 2rem 0;
}

/* ── Inline ornamental divider ── */

.hl-ornament {
  text-align: center;
  color: var(--aged-sepia);
  font-size: 20px;
  margin: 2rem 0;
}

/* ── Grid helpers ── */

.hl-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .hl-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hl-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── CTA band ── */

.hl-cta-band {
  background: var(--compass-red);
  padding: 3rem 1.5rem;
  text-align: center;
}

.hl-cta-band h2,
.hl-cta-band h3 {
  color: var(--cloud-white);
  margin-bottom: 1rem;
}

.hl-cta-band p { color: var(--cloud-white); }

/* Inverted buttons for the compass-red band background */
.hl-cta-band .hl-btn--primary {
  background: var(--cloud-white);
  color: var(--compass-red);
  border-color: var(--cloud-white);
}
.hl-cta-band .hl-btn--primary:hover {
  background: var(--parchment);
  border-color: var(--parchment);
  color: var(--compass-red);
  box-shadow: none;
}
.hl-cta-band .hl-btn--secondary {
  color: var(--cloud-white);
  border-color: var(--cloud-white);
}
.hl-cta-band .hl-btn--secondary:hover {
  background: var(--cloud-white);
  color: var(--compass-red);
}
.hl-cta-band .hl-btn-row { justify-content: center; }

/* ── Visibility helpers ── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Scroll reveal ── */

.hl-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.hl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hl-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Footer ── */

.hl-footer {
  background: var(--parchment);
  border-top: 1px solid rgba(184, 150, 104, 0.4);
  padding: 3rem 0 2rem;
}

.hl-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hl-footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.hl-footer-logo { height: 40px; width: auto; display: block; margin-bottom: 1rem; }

.hl-footer-tagline {
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--ink-black);
  margin-bottom: 0.5rem;
}

.hl-footer-nav { list-style: none; padding: 0; margin: 0; }
.hl-footer-nav li + li { margin-top: 0.4rem; }
.hl-footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-black);
  text-decoration: none;
}
.hl-footer-nav a:hover { color: var(--compass-red); }

.hl-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hl-footer-social a {
  color: var(--ink-black);
  font-size: 20px;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.hl-footer-social a:hover { color: var(--compass-red); }

.hl-footer-copy {
  font-size: 13px;
  color: var(--stone-gray);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(184, 150, 104, 0.4);
  text-align: center;
}

.hl-footer-copy a { color: var(--atlas-blue); }

.hl-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.hl-footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--ink-black);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hl-footer-contact a:hover { color: var(--compass-red); }

.hl-footer-contact i { color: var(--stone-gray); font-size: 13px; }

/* ── Contact page contact info ── */

.hl-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(184, 150, 104, 0.5);
}

.hl-contact-info a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 16px;
  color: var(--ink-black);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hl-contact-info a:hover { color: var(--compass-red); }

.hl-contact-info i { color: var(--stone-gray); }

/* ── Archive pagination — matches "Through the Lens" album controls ─────────── */

.hl-pagination {
  margin-top: 2.5rem;
}

.hl-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.hl-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--aged-sepia);
  background: transparent;
  color: var(--aged-sepia);
  font-family: var(--font-accent);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.hl-pagination .page-numbers:hover {
  background: var(--aged-sepia);
  color: var(--cloud-white);
}

.hl-pagination .page-numbers.current {
  background: var(--aged-sepia);
  color: var(--cloud-white);
  pointer-events: none;
}

.hl-pagination .prev.page-numbers,
.hl-pagination .next.page-numbers {
  font-size: 0;
}

.hl-pagination .prev.page-numbers::before {
  content: '\2190'; /* ← */
  font-size: 20px;
}

.hl-pagination .next.page-numbers::after {
  content: '\2192'; /* → */
  font-size: 20px;
}

.hl-pagination .dots {
  border: none;
  background: transparent;
  color: var(--stone-gray);
  width: auto;
  height: auto;
  pointer-events: none;
  font-size: 16px;
}
