:root {
  --forest: #14251c;
  --forest-2: #21362a;
  --charcoal: #1a1d1b;
  --slate: #58605c;
  --stone: #d2ccc1;
  --sand: #cbbd9d;
  --bone: #f7f4ec;
  --white: #fffdf7;
  --copper: #a5643f;
  --bronze: #806247;
  --shadow: 0 28px 80px rgba(20, 37, 28, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bone);
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.7;
  letter-spacing: 0;
}

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

button,
input,
textarea,
summary {
  font: inherit;
}

main {
  overflow: hidden;
}

.site-nav {
  align-items: center;
  animation: nav-surface linear both;
  animation-range: 0 220px;
  animation-timeline: scroll();
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  max-width: 100%;
  padding: 22px clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  min-width: max-content;
}

.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-top: 7px;
  text-transform: uppercase;
}

.brand-mark {
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  width: 38px;
}

.brand-mark::before,
.brand-mark::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 8px;
  position: absolute;
  right: 8px;
  top: 18px;
  transform: rotate(-32deg);
}

.brand-mark::after {
  left: 13px;
  right: 10px;
  top: 22px;
  transform: rotate(28deg);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  justify-content: flex-end;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 650;
  opacity: 0.86;
  position: relative;
}

.desktop-nav a::after {
  background: currentColor;
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: 220ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.nav-cta,
.button,
.inquiry-form button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.nav-cta {
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  color: var(--forest);
  font-size: 13px;
}

.button:hover,
.nav-cta:hover,
.inquiry-form button:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.mobile-nav {
  display: none;
}

.hero {
  background: var(--forest);
  color: var(--white);
  min-height: 100svh;
  overflow: hidden;
  padding: 170px clamp(20px, 7vw, 86px) 58px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(20, 37, 28, 0.88), rgba(20, 37, 28, 0.18)),
    linear-gradient(0deg, rgba(20, 37, 28, 0.85), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.film-frame {
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 224, 168, 0.34), transparent 28%),
    linear-gradient(150deg, rgba(247, 244, 236, 0.1), transparent 28%),
    linear-gradient(135deg, #1b3025 0%, #2f3f38 38%, #8d704e 100%);
  filter: saturate(0.82) contrast(1.04);
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.08);
}

.frame-one {
  animation: cinematic-one 18s ease-in-out infinite;
  opacity: 1;
}

.frame-two {
  animation: cinematic-two 18s ease-in-out infinite;
  background:
    radial-gradient(circle at 74% 74%, rgba(180, 93, 48, 0.38), transparent 18%),
    linear-gradient(140deg, #14251c 0%, #40554b 44%, #b5a782 100%);
}

.frame-three {
  animation: cinematic-three 18s ease-in-out infinite;
  background:
    radial-gradient(circle at 42% 72%, rgba(222, 183, 118, 0.42), transparent 16%),
    linear-gradient(120deg, #0e1914 0%, #2f4037 52%, #736a58 100%);
}

.video-hint {
  border: 1px solid rgba(255, 253, 247, 0.2);
  bottom: 36px;
  color: rgba(255, 253, 247, 0.58);
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 8px 12px;
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  text-transform: uppercase;
  z-index: 2;
}

.hero-content {
  max-width: 930px;
  position: relative;
  z-index: 2;
}

.kicker {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--sand);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 9vw, 126px);
  max-width: 1050px;
}

h2 {
  color: var(--forest);
  font-size: clamp(38px, 5.4vw, 82px);
  max-width: 900px;
}

h3 {
  color: var(--forest);
  font-size: clamp(28px, 3vw, 44px);
}

.hero-copy {
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(19px, 2vw, 25px);
  margin: 32px 0 0;
  max-width: 720px;
}

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

.button-primary {
  background: var(--white);
  color: var(--forest);
}

.button-secondary {
  border: 1px solid rgba(255, 253, 247, 0.46);
  color: var(--white);
}

.scroll-note {
  bottom: 42px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 12px;
  left: clamp(20px, 7vw, 86px);
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

section {
  padding: clamp(82px, 11vw, 150px) clamp(20px, 6vw, 74px);
}

.intro-section,
.map-section,
.gallery-section,
.faq-section {
  margin: 0 auto;
  max-width: 1300px;
}

.intro-section {
  display: grid;
  gap: clamp(36px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.intro-copy {
  align-self: end;
  color: var(--slate);
  font-size: 20px;
  max-width: 520px;
}

.intro-copy a,
.journal-section a {
  border-bottom: 1px solid var(--copper);
  color: var(--forest);
  display: inline-flex;
  font-weight: 800;
  margin-top: 18px;
  padding-bottom: 4px;
}

.rhythm-section {
  background: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-left: clamp(20px, 6vw, 74px);
  padding-right: clamp(20px, 6vw, 74px);
}

.rhythm-card {
  background: var(--white);
  border-left: 1px solid rgba(20, 37, 28, 0.12);
  min-height: 420px;
  padding: clamp(28px, 4vw, 58px);
}

.rhythm-card > span {
  color: var(--copper);
  display: block;
  font-family: var(--serif);
  font-size: 46px;
  margin-bottom: 72px;
}

.rhythm-card p {
  color: var(--slate);
  margin: 18px 0 0;
}

.rhythm-card p:first-of-type {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.wide-story {
  align-items: center;
  display: grid;
  gap: clamp(42px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  margin: 0 auto;
  max-width: 1440px;
}

.story-media {
  min-height: 620px;
  position: relative;
}

.story-photo,
.gallery-item div {
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.18), transparent 22%),
    radial-gradient(circle at 68% 76%, rgba(165, 100, 63, 0.34), transparent 18%),
    linear-gradient(135deg, #24372e 0%, #6f756a 52%, #c1ad82 100%);
  box-shadow: var(--shadow);
}

.story-photo-large {
  height: 82%;
  left: 0;
  position: absolute;
  top: 0;
  width: 70%;
}

.story-photo-small {
  bottom: 0;
  height: 45%;
  position: absolute;
  right: 0;
  width: 44%;
}

.story-content p:not(.kicker) {
  color: var(--slate);
  font-size: 19px;
  margin: 28px 0;
}

.trust-strip {
  border-top: 1px solid rgba(20, 37, 28, 0.14);
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
}

.trust-strip span {
  color: var(--forest);
  font-weight: 750;
}

.map-section {
  display: grid;
  gap: 48px;
}

.map-shell {
  aspect-ratio: 16 / 8.5;
  background:
    radial-gradient(circle at 37% 48%, rgba(203, 189, 157, 0.58), transparent 18%),
    radial-gradient(circle at 72% 62%, rgba(165, 100, 63, 0.18), transparent 16%),
    linear-gradient(145deg, #e7e0d1, #c8c6b6 46%, #9aa093);
  border: 1px solid rgba(20, 37, 28, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.map-shell::before {
  border: 1px solid rgba(20, 37, 28, 0.16);
  content: "";
  inset: 12%;
  position: absolute;
  transform: rotate(-10deg) skewX(-6deg);
}

.route-line {
  border-top: 1px solid rgba(20, 37, 28, 0.44);
  height: 40%;
  left: 28%;
  position: absolute;
  top: 39%;
  transform: rotate(-18deg);
  width: 50%;
}

.map-marker {
  align-items: center;
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(20, 37, 28, 0.22);
  border-radius: 999px;
  color: var(--forest);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 780;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  position: absolute;
  transform: translate(-50%, -50%);
}

.map-marker span {
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(165, 100, 63, 0.16);
  height: 8px;
  width: 8px;
}

.gallery-section {
  display: grid;
  gap: 46px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-item {
  margin: 0;
  min-height: 280px;
  position: relative;
}

.gallery-item div {
  height: 100%;
  min-height: inherit;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover div {
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.015);
}

.gallery-item figcaption {
  bottom: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  left: 18px;
  max-width: calc(100% - 36px);
  position: absolute;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
}

.item-1,
.item-6 {
  grid-column: span 6;
  min-height: 440px;
}

.item-2,
.item-3,
.item-4,
.item-5 {
  grid-column: span 3;
}

.proof-section {
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

.proof-section h2 {
  color: var(--white);
}

.proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article {
  border: 1px solid rgba(255, 253, 247, 0.16);
  min-height: 170px;
  padding: 24px;
}

.proof-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: 1;
}

.proof-grid span,
.proof-section blockquote {
  color: rgba(255, 253, 247, 0.74);
}

.proof-section blockquote {
  border-left: 1px solid var(--copper);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 58px);
  grid-column: 2;
  line-height: 1.12;
  margin: 0;
  padding-left: 32px;
}

.proof-section cite {
  color: var(--sand);
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.14em;
  margin-top: 24px;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 44px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(20, 37, 28, 0.12);
  padding: 24px 28px;
}

.faq-list summary {
  color: var(--forest);
  cursor: pointer;
  font-size: 20px;
  font-weight: 780;
}

.faq-list p {
  color: var(--slate);
  margin: 16px 0 0;
  max-width: 780px;
}

.journal-section {
  background:
    linear-gradient(90deg, rgba(20, 37, 28, 0.86), rgba(20, 37, 28, 0.34)),
    linear-gradient(135deg, #23372d, #88765d);
  color: var(--white);
}

.journal-section article {
  margin: 0 auto;
  max-width: 980px;
}

.journal-section h2 {
  color: var(--white);
}

.journal-section p:not(.kicker) {
  color: rgba(255, 253, 247, 0.78);
  font-size: 20px;
  max-width: 680px;
}

.journal-section a {
  color: var(--white);
}

.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(38px, 7vw, 94px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  margin: 0 auto;
  max-width: 1300px;
}

.inquiry-form {
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
}

.inquiry-form label {
  color: var(--forest);
  display: grid;
  font-size: 13px;
  font-weight: 780;
  gap: 7px;
}

.inquiry-form input,
.inquiry-form textarea {
  background: #fbf8f0;
  border: 1px solid rgba(20, 37, 28, 0.14);
  border-radius: 0;
  color: var(--charcoal);
  min-height: 52px;
  padding: 13px 15px;
}

.inquiry-form textarea {
  min-height: 132px;
  resize: vertical;
}

.inquiry-form button {
  background: var(--forest);
  border: 0;
  color: var(--white);
  cursor: pointer;
  margin-top: 8px;
}

footer {
  align-items: center;
  background: var(--charcoal);
  color: rgba(255, 253, 247, 0.76);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 34px clamp(20px, 6vw, 74px);
}

footer span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@keyframes nav-surface {
  to {
    backdrop-filter: blur(18px);
    background: rgba(255, 253, 247, 0.94);
    box-shadow: 0 12px 40px rgba(20, 37, 28, 0.1);
    color: var(--forest);
  }
}

@keyframes cinematic-one {
  0%,
  42% {
    opacity: 1;
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  52%,
  100% {
    opacity: 0;
    transform: scale(1.13) translate3d(-1.5%, 0, 0);
  }
}

@keyframes cinematic-two {
  0%,
  32% {
    opacity: 0;
  }
  42%,
  70% {
    opacity: 1;
    transform: scale(1.08) translate3d(1.5%, 0, 0);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes cinematic-three {
  0%,
  68% {
    opacity: 0;
  }
  78%,
  100% {
    opacity: 1;
    transform: scale(1.1) translate3d(0, -1.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav summary {
    align-items: center;
    background: rgba(255, 253, 247, 0.16);
    border: 1px solid currentColor;
    border-radius: 999px;
    cursor: pointer;
    display: grid;
    gap: 4px;
    height: 48px;
    justify-items: center;
    list-style: none;
    width: 48px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    background: currentColor;
    height: 1px;
    width: 18px;
  }

  .mobile-nav div {
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--forest);
    display: grid;
    gap: 4px;
    min-width: 230px;
    padding: 16px;
    position: absolute;
    right: 0;
    top: 60px;
  }

  .mobile-nav a {
    border-bottom: 1px solid rgba(20, 37, 28, 0.08);
    min-height: 44px;
    padding: 10px 4px;
  }

  .intro-section,
  .wide-story,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-section blockquote {
    grid-column: 1;
  }

  .rhythm-section {
    grid-template-columns: 1fr;
  }

  .rhythm-card {
    min-height: auto;
  }

  .rhythm-card > span {
    margin-bottom: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .item-1,
  .item-6,
  .item-2,
  .item-3,
  .item-4,
  .item-5 {
    grid-column: span 3;
  }
}

@media (max-width: 720px) {
  .site-nav {
    padding: 16px 18px;
  }

  .brand {
    font-size: 19px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    min-height: 96svh;
    padding: 138px 20px 44px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero-copy,
  .intro-copy,
  .journal-section p:not(.kicker) {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  section {
    padding: 72px 20px;
  }

  .story-media {
    min-height: 460px;
  }

  .map-shell {
    aspect-ratio: 1 / 1.1;
  }

  .map-marker {
    font-size: 0;
    min-height: 34px;
    padding: 0;
    width: 34px;
  }

  .map-marker span {
    margin: auto;
  }

  .gallery-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .item-1,
  .item-6,
  .item-2,
  .item-3,
  .item-4,
  .item-5 {
    grid-column: auto;
    min-height: 320px;
  }

  .proof-section blockquote {
    font-size: 31px;
    padding-left: 20px;
  }
}
