:root {
  --bg: #f7f1e8;
  --bg-deep: #ede2d2;
  --paper: rgba(255, 252, 247, 0.88);
  --paper-strong: #fffdf9;
  --text: #413c36;
  --muted: #6d665f;
  --line: rgba(173, 149, 112, 0.24);
  --gold: #d7c39a;
  --gold-deep: #b5965a;
  --blue: #6d9ab3;
  --blue-deep: #496f87;
  --shadow: 0 26px 80px rgba(114, 86, 49, 0.11);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 195, 154, 0.26), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(109, 154, 179, 0.12), transparent 24%),
    linear-gradient(180deg, #fcf7f1 0%, #f3e8d9 46%, #f7f1e8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 18%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.2), transparent 22%);
  opacity: 0.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

strong {
  color: var(--text);
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.topbar,
.hero,
.hero-card,
.service-card,
.photo-card,
.offer-card,
.pricing-card,
.pricing-note,
.manifesto-box,
.ebook-card,
.ebook-notes,
.destinations-card,
.experience-card,
.story-card,
.quote-card,
.contact-box {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.82);
  box-shadow: 0 14px 38px rgba(146, 122, 80, 0.08);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(220, 203, 157, 0.45);
}

.brand span {
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #5d89aa;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #655e57;
  font-size: 0.96rem;
  flex-wrap: nowrap;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(69, 127, 176, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #6e9db8 0%, #4d738b 100%);
  box-shadow: 0 12px 24px rgba(73, 111, 135, 0.2);
}

.hero {
  margin-top: 20px;
  padding: 34px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(109, 154, 179, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.84), rgba(244, 234, 216, 0.94));
  border: 1px solid rgba(220, 203, 157, 0.34);
  box-shadow: var(--shadow);
}

.sub-hero {
  margin-top: 20px;
  padding: 38px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(109, 154, 179, 0.08), transparent 24%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.84), rgba(244, 234, 216, 0.94));
  border: 1px solid rgba(220, 203, 157, 0.34);
  box-shadow: var(--shadow);
}

.hero-layout,
.sub-hero-grid,
.gallery-grid,
.travel-journal-grid,
.service-grid,
.offer-grid,
.section-split,
.story-layout {
  display: grid;
  gap: 24px;
}

.hero-layout {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.sub-hero-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.hero-copy {
  padding: 16px 6px 16px 4px;
}

.eyebrow,
.card-label {
  margin: 0 0 14px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.card-label {
  color: var(--blue-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  letter-spacing: -0.03em;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.95rem;
}

.hero-text,
.section-heading p:last-child,
.service-card p,
.photo-card figcaption p:last-child,
.offer-card p,
.manifesto-box p,
.ebook-card p,
.ebook-notes li,
.story-card p,
.contact-box p,
.hero-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 62ch;
  margin-top: 24px;
  font-size: 1.04rem;
}

.hero-inline-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.note-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(220, 203, 157, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-inline-note + .hero-actions {
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.service-card:hover,
.photo-card:hover,
.journal-card:hover,
.offer-card:hover,
.pricing-card:hover,
.hero-photo-card:hover,
.hero-card:hover,
.manifesto-box:hover,
.ebook-card:hover,
.quote-card:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #6e9db8 0%, #496f87 100%);
  box-shadow: 0 14px 30px rgba(73, 111, 135, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.trust-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-points li {
  padding: 16px 18px;
  border: 1px solid rgba(220, 203, 157, 0.36);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.76);
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 20px;
}

.hero-photo-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-photo-card figcaption {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
  background: rgba(20, 42, 52, 0.62);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-photo-card figcaption p {
  margin: 0;
  max-width: 18ch;
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  line-height: 1.04;
}

.hero-photo-card .badge-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.05) 100%);
}

.hero-badge,
.hero-card,
.service-card,
.photo-card,
.offer-card,
.pricing-card,
.pricing-note,
.manifesto-box,
.ebook-card,
.ebook-notes,
.destinations-card,
.experience-card,
.story-card,
.quote-card,
.contact-box {
  padding: 28px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-badge {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(215, 195, 154, 0.18), rgba(255, 252, 248, 0.84)),
    var(--paper);
}

.hero-badge p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--blue-deep);
}

.badge-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-deep) 50%, transparent 100%);
}

.hero-card h2 {
  margin-bottom: 16px;
}

.visual-card,
.process-card,
.info-panel,
.cta-panel,
.bundle-panel,
.request-panel,
.request-form,
.proof-card,
.proof-highlight,
.newsletter-panel {
  padding: 28px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    var(--paper);
  box-shadow: var(--shadow);
}

.process-grid,
.split-layout,
.request-layout,
.proof-grid,
.deliverables-grid,
.audience-grid {
  display: grid;
  gap: 24px;
}

.process-grid,
.proof-grid,
.deliverables-grid,
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-layout,
.request-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li {
  line-height: 1.72;
}

.bullet-list li + li {
  margin-top: 12px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.ebook-stack-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.ebook-stack-preview .ebook-cover-preview {
  margin: 0;
}

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

.ebook-product-card {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(109, 154, 179, 0.08), transparent 34%),
    rgba(255, 251, 244, 0.9);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ebook-product-card:hover {
  transform: translateY(-2px);
}

.product-cover,
.product-cover-image {
  aspect-ratio: 1660 / 2348;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.product-cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-price {
  margin: 12px 0 14px;
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  color: var(--blue-deep);
  line-height: 1;
}

.ebook-product-card p:not(.card-label):not(.product-price),
.bundle-panel p,
.mini-ebook-item p {
  color: var(--muted);
  line-height: 1.7;
}

.bundle-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  background:
    linear-gradient(145deg, rgba(215, 195, 154, 0.18), rgba(255, 251, 244, 0.92)),
    rgba(255, 251, 244, 0.9);
}

.bundle-price {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.bundle-price span {
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--blue-deep);
  line-height: 1;
}

.bundle-price small {
  max-width: 22ch;
  color: var(--gold-deep);
  font-weight: 800;
  line-height: 1.4;
}

.mini-ebook-list {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
}

.mini-ebook-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
}

.mini-ebook-item h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.mini-ebook-item p {
  margin: 0 0 6px;
}

.mini-ebook-cover {
  aspect-ratio: 1660 / 2348;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mini-ebook-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card {
  background:
    radial-gradient(circle at top right, rgba(109, 154, 179, 0.08), transparent 36%),
    rgba(255, 251, 244, 0.9);
}

.audience-card {
  padding: 28px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.9), rgba(245, 236, 222, 0.88)),
    rgba(255, 251, 244, 0.9);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.audience-card:hover {
  transform: translateY(-2px);
}

.audience-card h3 {
  color: var(--blue-deep);
}

.audience-card p {
  color: var(--muted);
  line-height: 1.72;
}

.proof-highlight {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  background:
    linear-gradient(145deg, rgba(215, 195, 154, 0.16), rgba(255, 251, 244, 0.92)),
    rgba(255, 251, 244, 0.9);
}

.proof-cover {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  box-shadow: var(--shadow);
}

.proof-cover img {
  width: 100%;
  height: auto;
  display: block;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 700;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(220, 203, 157, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}

.field input,
.field select {
  min-height: 54px;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(92, 159, 213, 0.18);
  border-color: var(--blue);
}

.field-full {
  margin-top: 16px;
}

.micro-note {
  margin: 14px 0 0;
  color: var(--gold-deep);
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-block {
  padding-top: 92px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

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

.gallery-grid,
.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.travel-journal-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.compact-journal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journal-card-large {
  grid-row: span 2;
}

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

.service-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.photo-card,
.offer-card,
.pricing-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.journal-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-index {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(220, 203, 157, 0.3);
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.featured-card {
  background:
    radial-gradient(circle at top right, rgba(92, 159, 213, 0.1), transparent 34%),
    rgba(255, 251, 244, 0.9);
}

.photo-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.journal-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.photo-frame {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(220, 203, 157, 0.32);
  background: rgba(255, 252, 247, 0.75);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.journal-card-large .photo-frame {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.journal-card-large .photo-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.photo-card figcaption {
  padding-top: 18px;
}

.journal-card figcaption {
  padding-top: 18px;
}

.photo-card figcaption p:last-child,
.journal-card figcaption p:last-child,
.offer-card p:last-child {
  margin-bottom: 0;
}

.offer-card {
  background:
    radial-gradient(circle at top right, rgba(92, 159, 213, 0.08), transparent 34%),
    rgba(255, 251, 244, 0.88);
}

.pricing-card {
  background:
    radial-gradient(circle at top right, rgba(92, 159, 213, 0.1), transparent 32%),
    rgba(255, 251, 244, 0.9);
}

.featured-price {
  background:
    radial-gradient(circle at top right, rgba(220, 203, 157, 0.18), transparent 30%),
    rgba(255, 251, 244, 0.94);
}

.price {
  margin: 12px 0 8px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-deep);
  line-height: 1;
}

.pricing-meta {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-weight: 700;
}

.pricing-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-list li {
  line-height: 1.72;
}

.pricing-list li + li {
  margin-top: 10px;
}

.pricing-note {
  margin-top: 24px;
  max-width: 860px;
  background:
    linear-gradient(145deg, rgba(220, 203, 157, 0.14), rgba(255, 251, 244, 0.88)),
    rgba(255, 251, 244, 0.88);
}

.manifesto-box {
  max-width: 980px;
  background:
    radial-gradient(circle at 90% 20%, rgba(220, 203, 157, 0.2), transparent 24%),
    rgba(255, 251, 244, 0.88);
}

.section-split,
.destinations-layout,
.story-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.ebook-notes ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.ebook-notes li + li {
  margin-top: 12px;
}

.inline-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue-deep);
  font-weight: 800;
}

.ebook-cover-preview {
  aspect-ratio: 1660 / 2348;
  margin: 6px 0 20px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  box-shadow: var(--shadow);
}

.ebook-cover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebook-price-card {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(109, 154, 179, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.ebook-price-card h2 {
  margin: 8px 0 10px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--text);
}

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

.country-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.map-heading {
  margin-bottom: 16px;
}

.map-heading h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--text);
}

.map-heading p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
}

.world-map {
  min-height: 320px;
  margin: 4px 0 22px;
  border: 1px solid rgba(220, 203, 157, 0.34);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(108, 168, 216, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.78);
}

.world-map img {
  display: block;
  width: 100%;
  height: auto;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(220, 203, 157, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-weight: 700;
}

.legend-swatch {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.legend-swatch-visited {
  background: #6ca8d8;
}

.legend-swatch-base {
  background: #d8d4cd;
}

.legal-grid {
  display: grid;
  gap: 22px;
}

.legal-card {
  background:
    linear-gradient(145deg, rgba(255, 252, 247, 0.9), rgba(245, 236, 222, 0.9));
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.legal-card p {
  color: var(--muted);
}

.legal-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(92, 159, 213, 0.09);
  border: 1px solid rgba(92, 159, 213, 0.18);
  color: var(--text);
}

.country-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(220, 203, 157, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.country-cloud span:hover {
  transform: translateY(-2px);
  background: rgba(108, 168, 216, 0.15);
  border-color: rgba(92, 159, 213, 0.38);
  box-shadow: 0 10px 24px rgba(92, 159, 213, 0.12);
}

.country-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  margin-right: 8px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  vertical-align: -1px;
}

.experience-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.experience-list li {
  line-height: 1.72;
}

.experience-list li + li {
  margin-top: 12px;
}

.quote-card {
  display: flex;
  align-items: center;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(220, 203, 157, 0.16), rgba(255, 251, 244, 0.9)),
    rgba(255, 251, 244, 0.88);
}

.quote-card p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.18;
  color: var(--text);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 32px;
  align-items: stretch;
  background:
    radial-gradient(circle at 80% 18%, rgba(109, 154, 179, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.92), rgba(239, 227, 209, 0.96));
}

.newsletter-signup-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(181, 150, 90, 0.38);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 247, 0.88)),
    var(--paper-strong);
  box-shadow: 0 22px 54px rgba(73, 111, 135, 0.14);
}

.newsletter-signup-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-deep), var(--blue));
}

.newsletter-signup-card h3 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1.04;
}

.newsletter-signup-card p:not(.card-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.newsletter-form-public {
  align-items: center;
}

.embed-shell {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(109, 154, 179, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.embed-shell iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: transparent;
}

.newsletter-embed {
  width: 100%;
}

.letter-landing {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: center;
  margin-top: 34px;
  padding-top: clamp(52px, 7vw, 92px);
}

.letter-landing-copy h1 {
  max-width: 11ch;
  margin: 0 0 22px;
  font-family: "Fraunces", serif;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.92;
  color: var(--text);
}

.letter-landing-copy > p:not(.eyebrow):not(.micro-note) {
  max-width: 62ch;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.75;
}

.letter-landing-card {
  display: grid;
  gap: 18px;
}

.letter-landing-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(220, 203, 157, 0.42);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.letter-landing-card .newsletter-signup-card {
  border-radius: 30px;
}

.letter-proof {
  margin-top: 26px;
}

.contact-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 84px;
  padding: 22px 8px 8px;
  border-top: 1px solid rgba(220, 203, 157, 0.34);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(220, 203, 157, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--blue-deep);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 159, 213, 0.42);
  background: rgba(108, 168, 216, 0.14);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(92, 159, 213, 0.12);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link svg rect,
.social-link svg circle {
  fill: none;
}

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

.contact-form input {
  min-width: min(100%, 320px);
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(220, 203, 157, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus {
  outline: 2px solid rgba(92, 159, 213, 0.18);
  border-color: var(--blue);
}

.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;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1024px) {
  .hero-layout,
  .sub-hero-grid,
  .gallery-grid,
  .travel-journal-grid,
  .section-split,
  .offer-grid,
  .pricing-grid,
  .process-grid,
  .deliverables-grid,
  .split-layout,
  .request-layout,
  .proof-grid,
  .proof-highlight,
  .ebook-product-grid,
  .ebook-product-card,
  .bundle-panel,
  .audience-grid,
  .field-grid,
  .cta-panel,
  .newsletter-panel,
  .destinations-layout,
  .story-layout,
  .toc-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .letter-landing {
    grid-template-columns: 1fr;
  }

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

  .compact-journal-grid {
    grid-template-columns: 1fr;
  }

  .ebook-stack-preview {
    grid-template-columns: 1fr;
  }

  .bundle-price {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 12px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding: 24px;
    border-radius: 28px;
  }

  .sub-hero {
    padding: 24px;
    border-radius: 28px;
  }

  .brand span {
    font-size: 1.12rem;
    white-space: normal;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-badge,
  .hero-card,
  .service-card,
  .photo-card,
  .offer-card,
  .pricing-card,
  .pricing-note,
  .manifesto-box,
  .ebook-card,
  .ebook-notes,
  .ebook-product-card,
  .bundle-panel,
  .audience-card,
  .visual-card,
  .process-card,
  .info-panel,
  .cta-panel,
  .request-panel,
  .request-form,
  .proof-card,
  .proof-highlight,
  .newsletter-panel,
  .destinations-card,
  .experience-card,
  .story-card,
  .quote-card,
  .contact-box {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-form {
    justify-content: stretch;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .letter-landing {
    padding-top: 42px;
  }

  .letter-landing-copy h1 {
    max-width: 12ch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form input,
  .contact-form button,
  .contact-actions a {
    width: 100%;
  }

  .world-map {
    min-height: 0;
  }

  .journal-card-large {
    grid-row: auto;
  }

  .map-legend {
    gap: 10px;
  }

  .legend-item {
    width: 100%;
    justify-content: flex-start;
  }

  .photo-frame {
    min-height: 0;
  }

  .photo-frame img {
    max-height: none;
  }

  .mini-ebook-item {
    grid-template-columns: 82px 1fr;
  }

  .mini-ebook-cover,
  .mini-ebook-cover img {
    min-height: 0;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
