:root {
  --paper: #faf6f0;
  --ink: #2b2620;
  --ink-deep: #241f1a;
  --ink-hover: #463e33;
  --body: #5c5347;
  --muted: #8a7e6d;
  --muted-2: #7a6f61;
  --sand: #a3927c;
  --hairline: #e9e1d6;
  --hairline-2: #cbbfae;
  --tint: #f1e9dd;
  --dark-muted: #b5aa99;
  --field-bg: #3a332b;
  --field-border: #55493c;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Karla, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

img { display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px;
  background: rgba(250, 246, 240, 0.94);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-right { justify-content: flex-end; }

.nav a {
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--ink); }

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 2px 48px;
  text-decoration: none;
  color: var(--ink);
}

.logo-name {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-sub {
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-sub .rule {
  width: 26px;
  height: 1px;
  background: var(--hairline-2);
}

.logo-sub .word {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  text-indent: 0.3em;
}

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 97px);
  min-height: 540px;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 1.1s cubic-bezier(0.65, 0.05, 0.25, 1);
}

.hero-slide {
  position: relative;
  flex: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 132%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 140px 48px 44px;
  background: linear-gradient(to top, rgba(28, 23, 18, 0.72), rgba(28, 23, 18, 0));
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-copy {
  pointer-events: auto;
  max-width: 620px;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--paper);
}

.hero-copy h1 em { font-weight: 400; }

.hero-sub {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.82);
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-light {
  display: inline-block;
  white-space: nowrap;
  padding: 14px 28px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-light:hover { background: var(--hairline); }

.btn-ghost {
  display: inline-block;
  white-space: nowrap;
  padding: 13px 26px;
  font-size: 14px;
  color: var(--paper);
  border: 1px solid rgba(250, 246, 240, 0.5);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.hero-nav {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 246, 240, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 17px;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s ease;
}

.hero-arrow:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.hero-counter {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: rgba(250, 246, 240, 0.85);
  white-space: nowrap;
}

/* ---------- Stories ---------- */
.section-stories {
  padding: 24px 48px 72px;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.section-stories h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 11px;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s ease;
}

.story-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(43, 38, 32, 0.14);
  transform: translateY(-5px);
}

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

.story-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.story-title-row .title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.story-title-row .arrow {
  font-size: 15px;
  color: var(--sand);
}

.story-card .sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: -6px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--tint);
  padding: 72px 48px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonials figure {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  margin: 0;
}

.testimonials blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  line-height: 1.45;
}

.testimonials figcaption {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- About ---------- */
.about {
  padding: 72px 48px;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.about-inner img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

.about h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
}

.about p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--body);
  max-width: 640px;
}

.about p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 48px;
  scroll-margin-top: 80px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
}

.contact-lede {
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-muted);
  max-width: 400px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.contact-links a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact input,
.contact textarea {
  padding: 13px 16px;
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 2px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  resize: vertical;
}

.contact input::placeholder,
.contact textarea::placeholder { color: #9c9082; }

.contact button {
  align-self: flex-start;
  padding: 13px 28px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact button:hover { background: var(--hairline); }

.hidden { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 22px 48px;
  background: var(--ink-deep);
  color: var(--muted);
  font-size: 12px;
}

/* ---------- Story pages ---------- */
.story-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}

.breadcrumb {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s ease;
}

.breadcrumb:hover { color: var(--ink); }

.story-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.story-head .kicker {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}

.story-head h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.06;
}

.story-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.ph {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

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

.ph img.parallax {
  position: absolute;
  left: 0;
  top: 0;
  height: 145%;
}

.sp2 { grid-column: span 2; }
.sp3 { grid-column: span 3; }
.sp4 { grid-column: span 4; }
.sp6 { grid-column: span 6; }

.ar-169 { aspect-ratio: 16 / 9; }
.ar-219 { aspect-ratio: 21 / 9; }
.ar-45 { aspect-ratio: 4 / 5; }
.ar-11 { aspect-ratio: 1 / 1; }
.ar-32 { aspect-ratio: 3 / 2; }
.ar-43 { aspect-ratio: 4 / 3; }
.ar-34 { aspect-ratio: 3 / 4; }

.story-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

.back-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover { color: var(--ink); }

.btn-dark {
  display: inline-block;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-dark:hover { background: var(--ink-hover); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-track { transition: none; }
  .hero-slide img { height: 100%; transform: none !important; }
  .ph img.parallax { position: static; height: 100%; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .site-header { padding: 12px 20px; }
  .nav { gap: 16px; font-size: 11px; }
  .logo { padding: 2px 16px; }
  .logo-name { font-size: 26px; }

  .hero { height: calc(100svh - 84px); min-height: 460px; }
  .hero-overlay { padding: 110px 20px 84px; }
  .hero-nav { bottom: 20px; }

  .section-stories { padding: 24px 20px 56px; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials { padding: 56px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about { padding: 56px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; justify-items: center; text-align: left; }

  .contact { padding: 56px 20px; }
  .contact-inner { grid-template-columns: 1fr; }

  .site-footer { padding: 18px 20px; }

  .story-page { padding: 40px 20px 64px; }
  .photo-grid .sp2 { grid-column: span 3; }
  .photo-grid .sp3,
  .photo-grid .sp4 { grid-column: span 6; }
}

@media (max-width: 600px) {
  .stories-grid { grid-template-columns: 1fr; }
  .photo-grid .sp2 { grid-column: span 6; }
}
