:root {
  --ink: #0e1f3a; --ink-soft: #4a5874;
  --blue: #2e5cb8; --blue-deep: #1a3a7a; --blue-soft: #aabbd9;
  --mist: #e8eef5; --bone: #f6f1e8; --paper: #faf6ee;
  --cream: #efe7d6; --gold: #c08a3e; --line: #d6dde8;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --nav-h: 72px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--blue); color: var(--paper); }
img { max-width: 100%; display: block; }
a { color: inherit; }

.topstrip { background: var(--ink); color: var(--bone); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; text-align: center; padding: 10px 24px; font-weight: 500; font-family: var(--sans); }
.topstrip span { opacity: 0.65; margin: 0 12px; }
.topstrip a { color: var(--blue-soft); text-decoration: none; border-bottom: 1px solid rgba(170,187,217,0.4); padding-bottom: 1px; }

.site-nav { position: sticky; top: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 16px 48px; display: flex; justify-content: space-between; align-items: center; z-index: 100; height: var(--nav-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1; padding-bottom: 2px; }
.brand-text { font-family: var(--serif); font-size: 18px; line-height: 1; font-weight: 500; }
.brand-text small { display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; font-weight: 500; }
.site-nav ul { display: flex; gap: 28px; list-style: none; align-items: center; }
.site-nav .navlink { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink); text-decoration: none; transition: color 0.3s; position: relative; padding: 4px 0; }
.site-nav .navlink:hover { color: var(--blue); }
.site-nav .navlink.active { color: var(--blue); }
.site-nav .navlink.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--blue); }
.nav-cta { background: var(--blue); color: var(--paper) !important; padding: 10px 20px; border-radius: 999px; font-size: 12.5px !important; letter-spacing: 0.04em; font-weight: 600 !important; transition: background 0.3s, transform 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-mobile { display: none; background: var(--blue); color: var(--paper); width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; text-decoration: none; font-size: 18px; font-weight: 700; border: none; cursor: pointer; flex-shrink: 0; }
.nav-mobile:hover { background: var(--blue-deep); }

.floating-cta { position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: var(--paper); padding: 14px 22px 14px 18px; border-radius: 999px; text-decoration: none; font-family: var(--sans); font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; z-index: 99; box-shadow: 0 10px 30px rgba(14,31,58,0.25); display: flex; align-items: center; gap: 10px; transition: opacity 0.4s, transform 0.3s, background 0.3s, box-shadow 0.3s; opacity: 1; }
.floating-cta.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.floating-cta:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(46,92,184,0.35); }
.floating-cta-dot { width: 8px; height: 8px; border-radius: 50%; background: #6fe88a; box-shadow: 0 0 0 0 rgba(111,232,138,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(111,232,138,0.7); } 70% { box-shadow: 0 0 0 8px rgba(111,232,138,0); } 100% { box-shadow: 0 0 0 0 rgba(111,232,138,0); } }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 999px; text-decoration: none; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; transition: all 0.3s; border: 1.5px solid transparent; cursor: pointer; }
.btn-primary { background: var(--blue); color: var(--paper); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--blue-soft); }
.btn-outline-light { color: var(--paper); border-color: var(--paper); background: transparent; }
.btn-outline-light:hover { background: var(--paper); color: var(--ink); }

.hero { padding: 70px 48px 90px; position: relative; overflow: hidden; }
.hero-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--blue); flex-shrink: 0; }
.hero h1 { font-family: var(--serif); font-size: clamp(46px, 6vw, 80px); line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); font-weight: 400; margin-bottom: 20px; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--blue); }
.hero-roles { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-soft); margin-bottom: 28px; font-weight: 300; }
.hero-roles .dot { color: var(--gold); margin: 0 8px; }
.hero-lede { font-size: 18px; line-height: 1.65; color: var(--ink-soft); max-width: 540px; margin-bottom: 36px; }
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-credentials { padding-top: 28px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 540px; }
.hero-credentials > div { font-size: 13px; }
.hero-credentials strong { display: block; font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.hero-credentials em { font-family: var(--serif); font-style: italic; color: var(--gold); font-weight: 400; }
.hero-credentials span { color: var(--ink-soft); font-size: 12px; letter-spacing: 0.04em; }

.hero-visual { position: relative; min-height: 520px; aspect-ratio: 4/5; max-height: 640px; }
.hero-photo-frame { position: absolute; inset: 0; border-radius: 4px; overflow: hidden; background: var(--mist); box-shadow: 0 30px 60px rgba(14,31,58,0.18); transform: rotate(-1.5deg); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-photo-tag { position: absolute; bottom: -22px; left: -22px; background: var(--ink); color: var(--paper); font-family: var(--serif); font-style: italic; font-size: 16px; padding: 14px 22px; border-radius: 999px; transform: rotate(-2deg); z-index: 2; box-shadow: 0 10px 24px rgba(14,31,58,0.2); }
.hero-photo-tag span { color: var(--blue-soft); font-style: normal; font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.hero-photo-stamp { position: absolute; top: -16px; right: -16px; background: var(--blue); color: var(--paper); font-family: var(--serif); font-size: 14px; padding: 18px 14px; border-radius: 50%; width: 116px; height: 116px; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.25; transform: rotate(8deg); z-index: 2; font-style: italic; box-shadow: 0 8px 20px rgba(46,92,184,0.35); font-weight: 500; }

.trusted { padding: 32px 48px; background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trusted-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.trusted-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.trusted-platforms { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink); justify-content: center; }
.trusted-platforms span { display: flex; align-items: center; gap: 8px; }
.trusted-platforms span::before { content: '\2726'; color: var(--gold); font-size: 11px; font-style: normal; }

section { padding: 90px 48px; scroll-margin-top: var(--nav-h); }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-eyebrow .roman { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 15px; letter-spacing: 0.05em; font-weight: 400; }
h2 { font-family: var(--serif); font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -0.015em; margin-bottom: 24px; color: var(--ink); font-weight: 400; max-width: 900px; }
h2 em { font-style: italic; color: var(--blue); font-weight: 400; }
.section-lede { font-size: 19px; color: var(--ink-soft); max-width: 720px; margin-bottom: 56px; line-height: 1.6; }
.section-lede em { font-style: italic; color: var(--ink); }

.page-header { background: var(--bone); padding: 60px 48px 56px; border-bottom: 1px solid var(--line); }
.page-header-inner { max-width: 1300px; margin: 0 auto; }
.page-header h1 { font-family: var(--serif); font-size: clamp(40px, 5.2vw, 64px); line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); font-weight: 400; margin-bottom: 18px; max-width: 1000px; }
.page-header h1 em { font-style: italic; color: var(--blue); font-weight: 300; }
.page-header-lede { font-size: 20px; color: var(--ink-soft); max-width: 720px; font-family: var(--serif); font-weight: 300; line-height: 1.55; }
.page-header-lede em { font-style: italic; color: var(--ink); }
.crumb { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.crumb a { color: var(--blue); text-decoration: none; font-weight: 600; }
.crumb a:hover { text-decoration: underline; }
.crumb .sep { color: var(--ink-soft); opacity: 0.5; }

.bg-bone { background: var(--bone); }
.bg-mist { background: var(--mist); }

.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-photo-wrap { position: sticky; top: calc(var(--nav-h) + 30px); }
.about-photo { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; box-shadow: 0 24px 48px rgba(14,31,58,0.15); background: var(--mist); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-caption { margin-top: 14px; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-soft); text-align: center; }
.about-prose p { font-size: 19px; line-height: 1.75; color: var(--ink); margin-bottom: 22px; font-family: var(--serif); font-weight: 300; }
.about-prose p:first-child::first-letter { font-family: var(--serif); font-size: 76px; float: left; line-height: 0.85; padding: 6px 12px 0 0; color: var(--blue); font-weight: 500; }
.about-prose p strong { font-weight: 500; color: var(--ink); font-style: normal; }
.about-prose em { font-style: italic; color: var(--blue); }
.about-fact-list { margin-top: 40px; padding-top: 32px; border-top: 2px solid var(--ink); list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.about-fact-list li { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); }
.about-fact-list li strong { display: block; color: var(--ink); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.about-fact-list li em { color: var(--blue); font-style: italic; }

.home-about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.home-about-photo { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; box-shadow: 0 24px 48px rgba(14,31,58,0.15); }
.home-about-photo img { width: 100%; height: 100%; object-fit: cover; }
.home-about-prose { font-size: 19px; line-height: 1.7; color: var(--ink-soft); font-family: var(--serif); font-weight: 300; margin-bottom: 24px; }
.home-about-prose em { color: var(--blue); font-style: italic; }
.home-about-prose strong { color: var(--ink); font-weight: 500; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service { padding: 44px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: background 0.4s; position: relative; }
.service:hover { background: var(--mist); }
.service:hover .service-num { color: var(--blue); }
.service-num { font-family: var(--serif); font-size: 14px; color: var(--ink-soft); letter-spacing: 0.15em; margin-bottom: 24px; transition: color 0.3s; font-weight: 500; }
.service h3 { font-family: var(--serif); font-size: 28px; line-height: 1.2; margin-bottom: 18px; color: var(--ink); font-weight: 500; }
.service h3 em { font-style: italic; color: var(--blue); font-weight: 400; }
.service-tagline { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-soft); margin-bottom: 20px; }
.service-tagline em { color: var(--blue); }
.service ul { list-style: none; margin-bottom: 24px; }
.service ul li { padding: 8px 0; color: var(--ink); font-size: 14.5px; border-bottom: 1px dashed var(--line); display: flex; align-items: flex-start; gap: 10px; }
.service ul li:last-child { border-bottom: none; }
.service ul li::before { content: '\2192'; color: var(--blue); font-weight: 600; flex-shrink: 0; }
.service-creds { background: var(--cream); padding: 14px 16px; border-radius: 4px; font-size: 13px; color: var(--ink); line-height: 1.55; }
.service-creds strong { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 4px; }
.service-rate { margin-top: 14px; font-family: var(--serif); font-size: 15px; color: var(--ink); }
.service-rate strong { color: var(--blue); font-style: italic; font-weight: 500; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 32px; }
.process-step h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; font-weight: 500; }
.process-step .step-num { font-family: var(--serif); font-size: 56px; color: var(--blue); line-height: 1; margin-bottom: 16px; font-style: italic; }
.process-step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

.testimonials { background: var(--mist); position: relative; overflow: hidden; }
.testimonials::before { content: '\201C'; position: absolute; top: 30px; right: 60px; font-family: var(--serif); font-size: 360px; color: rgba(46,92,184,0.05); line-height: 0.7; pointer-events: none; font-style: italic; }
.testimonials-inner { position: relative; z-index: 2; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.testimonial { background: var(--paper); padding: 36px 36px 32px; border-radius: 6px; box-shadow: 0 4px 16px rgba(14,31,58,0.06); border-top: 3px solid var(--blue); display: flex; flex-direction: column; }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 0.15em; margin-bottom: 16px; }
.testimonial-quote { font-family: var(--serif); font-size: 18px; line-height: 1.55; color: var(--ink); font-weight: 300; margin-bottom: 24px; flex-grow: 1; }
.testimonial-quote em { font-style: italic; color: var(--blue); }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: var(--paper); font-size: 18px; font-weight: 500; }
.testimonial-author-info strong { display: block; font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.testimonial-author-info span { font-family: var(--sans); font-size: 12px; color: var(--ink-soft); }
.av-1 { background: linear-gradient(135deg, #2e5cb8, #1a3a7a); }
.av-2 { background: linear-gradient(135deg, #c08a3e, #8a5e25); }
.av-3 { background: linear-gradient(135deg, #4a5874, #2c3a55); }
.av-4 { background: linear-gradient(135deg, #2e5cb8, #4a8acc); }
.av-5 { background: linear-gradient(135deg, #6e84a8, #2e5cb8); }
.av-6 { background: linear-gradient(135deg, #c08a3e, #2e5cb8); }
.text-center { text-align: center; }

.travel-cta { padding: 0; position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.travel-cta-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 480px; }
.travel-cta-photo { position: relative; background: var(--ink); overflow: hidden; min-height: 320px; }
.travel-cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.travel-cta-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--ink) 100%); }
.travel-cta-text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.travel-cta-text .section-eyebrow { color: var(--blue-soft); }
.travel-cta-text .section-eyebrow .roman { color: var(--blue-soft); opacity: 0.7; }
.travel-cta-text h2 { color: var(--paper); margin-bottom: 24px; }
.travel-cta-text h2 em { color: var(--blue-soft); }
.travel-cta-text p { color: rgba(246,241,232,0.78); font-size: 18px; line-height: 1.7; max-width: 480px; margin-bottom: 32px; font-family: var(--serif); font-weight: 300; }
.travel-cta-text p em { font-style: italic; color: var(--paper); }
.travel-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.travel-strip { position: relative; height: 60vh; min-height: 400px; max-height: 680px; overflow: hidden; }
.travel-strip img { width: 100%; height: 100%; object-fit: cover; }
.travel-strip::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(14,31,58,0.5) 100%); }
.travel-strip-caption { position: absolute; bottom: 32px; left: 48px; color: var(--paper); font-family: var(--serif); font-style: italic; font-size: 18px; max-width: 600px; z-index: 2; }

.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.reel { text-decoration: none; color: inherit; display: block; }
.reel-card { aspect-ratio: 9/16; border-radius: 6px; position: relative; overflow: hidden; box-shadow: 0 8px 24px rgba(14,31,58,0.18); display: flex; align-items: flex-end; padding: 20px; color: var(--paper); transition: transform 0.4s; }
.reel:hover .reel-card { transform: translateY(-4px); }
.reel-1 { background: linear-gradient(135deg, #2e5cb8, #1a3a7a); }
.reel-2 { background: linear-gradient(135deg, #c08a3e, #6e4a1a); }
.reel-3 { background: linear-gradient(135deg, #4a5874, #1a2238); }
.reel-meta { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.reel-title { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.3; }

.brand-deck { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.brand-card { background: var(--paper); padding: 32px; border-radius: 6px; box-shadow: 0 4px 16px rgba(14,31,58,0.06); }
.brand-card.b1 { border-left: 3px solid var(--blue); }
.brand-card.b2 { border-left: 3px solid var(--gold); }
.brand-card.b3 { border-left: 3px solid var(--ink); }
.brand-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 14px; font-weight: 500; }
.brand-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }

.travel-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 32px; }
.travel-gallery .gphoto { border-radius: 4px; overflow: hidden; background: var(--mist); position: relative; box-shadow: 0 6px 18px rgba(14,31,58,0.10); }
.travel-gallery .gphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.travel-gallery .gphoto figcaption { position: absolute; left: 14px; bottom: 14px; background: rgba(14,31,58,0.78); color: var(--paper); font-family: var(--serif); font-style: italic; font-size: 13px; padding: 6px 12px; border-radius: 999px; letter-spacing: 0.01em; max-width: 80%; }
.travel-gallery .span-7 { grid-column: span 7; aspect-ratio: 4/3; }
.travel-gallery .span-5 { grid-column: span 5; aspect-ratio: 4/5; }
.travel-gallery .span-6 { grid-column: span 6; aspect-ratio: 4/3; }
.travel-gallery .span-12 { grid-column: span 12; aspect-ratio: 16/9; }

.story-pair { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; margin: 56px 0; }
.story-pair.flip { grid-template-columns: 1fr 1.2fr; }
.story-pair.flip .story-prose { order: 2; }
.story-pair .story-prose h3 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); line-height: 1.15; margin-bottom: 18px; font-weight: 400; color: var(--ink); }
.story-pair .story-prose h3 em { font-style: italic; color: var(--blue); font-weight: 300; }
.story-pair .story-prose p { font-family: var(--serif); font-size: 18px; line-height: 1.7; color: var(--ink-soft); font-weight: 300; margin-bottom: 14px; }
.story-pair .story-prose p em { font-style: italic; color: var(--ink); }
.story-pair .story-photo { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; box-shadow: 0 24px 48px rgba(14,31,58,0.15); background: var(--mist); }
.story-pair .story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pullquote { margin: 60px auto; max-width: 820px; padding: 36px 32px; border-left: 3px solid var(--blue); background: var(--bone); font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); line-height: 1.35; font-style: italic; color: var(--ink); font-weight: 300; border-radius: 0 6px 6px 0; }
.pullquote .attrib { display: block; font-style: normal; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-top: 18px; }

.experience-list { margin-top: 32px; }
.exp-item { display: grid; grid-template-columns: 200px 1fr; gap: 48px; padding: 36px 0; border-top: 1px solid var(--line); align-items: baseline; }
.exp-item:last-child { border-bottom: 1px solid var(--line); }
.exp-date { font-family: var(--sans); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); font-weight: 600; }
.exp-item h3 { font-family: var(--serif); font-size: 24px; line-height: 1.3; color: var(--ink); margin-bottom: 4px; font-weight: 500; }
.exp-item .exp-org { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink-soft); margin-bottom: 12px; }
.exp-item p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; max-width: 700px; }

.work-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.work-aside h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 14px; color: var(--ink); font-weight: 500; }
.work-aside p { color: var(--ink-soft); margin-bottom: 28px; font-size: 15.5px; line-height: 1.65; }
.work-aside p em { font-style: italic; color: var(--ink); }
.work-aside-block { background: var(--paper); padding: 28px; border-radius: 6px; margin-bottom: 20px; border-left: 3px solid var(--blue); }
.work-aside-block strong { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; font-weight: 700; }
.work-aside-block ul { list-style: none; font-family: var(--serif); font-size: 16px; color: var(--ink); }
.work-aside-block li { padding: 4px 0; }
.work-aside-block li::before { content: '\2726'; color: var(--gold); margin-right: 8px; font-size: 11px; }
.work-direct { margin-top: 20px; font-size: 14px; color: var(--ink-soft); }
.work-direct a { color: var(--blue); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--blue); }

form { background: var(--paper); padding: 40px; border-radius: 8px; box-shadow: 0 4px 16px rgba(14,31,58,0.06); }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); font-weight: 700; margin-bottom: 8px; }
label .req { color: var(--blue); }
input[type="text"], input[type="email"], select, textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); background: var(--paper); border-radius: 4px; font-family: var(--sans); font-size: 15px; color: var(--ink); transition: border-color 0.3s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); }
textarea { resize: vertical; min-height: 120px; font-family: var(--sans); }
.form-submit { width: 100%; padding: 16px; background: var(--blue); color: var(--paper); border: none; border-radius: 999px; font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; transition: background 0.3s, transform 0.2s; margin-top: 8px; }
.form-submit:hover { background: var(--blue-deep); transform: translateY(-2px); }
.form-note { margin-top: 16px; font-size: 13px; color: var(--ink-soft); text-align: center; font-style: italic; font-family: var(--serif); }

.ribbon { padding: 60px 0; background: var(--ink); color: var(--paper); overflow: hidden; }
.ribbon-inner { display: flex; gap: 48px; font-family: var(--serif); font-size: 28px; font-style: italic; white-space: nowrap; animation: scroll 40s linear infinite; font-weight: 300; }
.ribbon-inner span { color: var(--blue-soft); }
.ribbon-inner .dot { color: var(--gold); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.cta-strip { background: var(--bone); padding: 80px 48px; text-align: center; border-top: 1px solid var(--line); }
.cta-strip h2 { margin: 0 auto 16px; text-align: center; }
.cta-strip p { color: var(--ink-soft); font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; font-family: var(--serif); font-weight: 300; font-style: italic; }
.cta-strip-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

footer { background: var(--ink); color: var(--bone); padding: 80px 48px 40px; border-top: 1px solid rgba(246,241,232,0.12); }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand h4 { font-family: var(--serif); font-size: 28px; margin-bottom: 12px; font-weight: 500; }
.footer-brand h4 em { font-style: italic; color: var(--blue-soft); font-weight: 300; }
.footer-brand p { color: rgba(246,241,232,0.65); font-size: 14.5px; line-height: 1.6; font-family: var(--serif); font-weight: 300; max-width: 320px; }
.footer-col h5 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-soft); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a { color: var(--bone); text-decoration: none; font-size: 14.5px; font-family: var(--serif); transition: color 0.3s; }
.footer-col a:hover { color: var(--blue-soft); }
.footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(246,241,232,0.12); display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 11.5px; color: rgba(246,241,232,0.55); letter-spacing: 0.1em; flex-wrap: wrap; gap: 12px; }
.footer-bottom em { font-family: var(--serif); font-style: italic; color: var(--blue-soft); font-size: 13px; letter-spacing: 0; }

.mobile-menu { position: fixed; inset: 0; background: var(--ink); color: var(--paper); z-index: 200; padding: 30px 24px; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.3s; display: none; }
.mobile-menu.open { display: flex; opacity: 1; pointer-events: auto; }
.mobile-menu-close { align-self: flex-end; background: transparent; border: none; color: var(--paper); font-size: 28px; cursor: pointer; padding: 4px 12px; font-weight: 300; }
.mobile-menu ul { list-style: none; margin-top: 40px; display: flex; flex-direction: column; }
.mobile-menu ul li { width: 100%; border-bottom: 1px solid rgba(246,241,232,0.12); }
.mobile-menu ul li:last-child { border-bottom: none; margin-top: 24px; }
.mobile-menu ul a { display: block; padding: 18px 4px; color: var(--paper); font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.01em; text-decoration: none; }
.mobile-menu ul .nav-cta { display: inline-block; font-family: var(--sans); font-size: 14px !important; text-align: center; padding: 14px 28px; }
.mobile-menu-foot { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(246,241,232,0.12); font-family: var(--serif); font-style: italic; color: var(--blue-soft); font-size: 14px; }

@media (max-width: 980px) {
  .site-nav { padding: 12px 20px; }
  .site-nav ul { display: none; }
  .nav-mobile { display: flex; }
  .topstrip { font-size: 10px; padding: 8px 16px; }
  .topstrip span:nth-child(2), .topstrip span:nth-child(4) { display: none; }
  .hero { padding: 50px 20px 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 380px; margin: 0 auto; min-height: 460px; }
  .hero-photo-stamp { width: 96px; height: 96px; font-size: 12px; top: -10px; right: -10px; }
  .trusted { padding: 24px 20px; }
  .trusted-platforms { gap: 18px; font-size: 16px; }
  .trusted-inner { gap: 18px; }
  section { padding: 70px 20px; }
  .page-header { padding: 40px 20px; }
  .home-about { grid-template-columns: 1fr; gap: 40px; }
  .home-about-photo { max-width: 380px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { position: static; }
  .about-photo { max-width: 380px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 32px 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials::before { font-size: 200px; right: 10px; top: 20px; }
  .testimonial-grid, .testimonial-grid.cols-3 { grid-template-columns: 1fr; }
  .travel-cta-grid { grid-template-columns: 1fr; min-height: auto; }
  .travel-cta-photo { height: 320px; min-height: 320px; }
  .travel-cta-photo::after { background: linear-gradient(180deg, transparent 50%, var(--ink) 100%); }
  .travel-cta-text { padding: 48px 24px; }
  .travel-strip-caption { left: 24px; bottom: 24px; font-size: 16px; }
  .reels-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .brand-deck { grid-template-columns: 1fr; gap: 16px; }
  .travel-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .travel-gallery .span-7, .travel-gallery .span-5, .travel-gallery .span-6, .travel-gallery .span-12 { grid-column: span 2; aspect-ratio: 4/5; }
  .story-pair, .story-pair.flip { grid-template-columns: 1fr; gap: 32px; margin: 32px 0; }
  .story-pair.flip .story-prose { order: 0; }
  .story-pair .story-photo { max-width: 380px; margin: 0 auto; }
  .pullquote { padding: 24px 20px; margin: 40px auto; }
  .exp-item { grid-template-columns: 1fr; gap: 8px; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .work-aside { order: 2; }
  form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip { padding: 60px 20px; }
  .ribbon-inner { font-size: 22px; }
  footer { padding: 60px 20px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px 12px 14px; font-size: 12.5px; }
  .brand-text { font-size: 16px; }
  .brand-text small { font-size: 8.5px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-fact-list { grid-template-columns: 1fr; }
  .topstrip span:nth-child(3) { display: none; }
  .reels-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
