:root {
  --cream: #efece7;
  --cream-deep: #e6e1d9;
  --brown: #674814;
  --ink: #3d2c0c;
  --olive: #705b15;
  --sea: #467886;
  --white: #f7f5f1;
  --logo: var(--brown);
  --serif: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  --sans: "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --logo-font: "Poppins", "Jost", "Helvetica Neue", Arial, sans-serif;
  --header-h: 5rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 34rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { font-family: var(--sans); font-weight: 400; color: var(--brown); margin: 0; }
h2 { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem); line-height: 1.15; margin-bottom: 1.2rem; letter-spacing: 0.01em; }
h3 { font-size: 1.15rem; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
:focus-visible { outline: 2px solid var(--sea); outline-offset: 4px; }
.wordmark {
  display: inline-block; color: var(--logo);
  font-family: var(--logo-font); font-weight: 400; line-height: 1;
  letter-spacing: 0.24em; text-indent: 0.24em;
  white-space: nowrap;
}
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 10; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  color: var(--white);
  transition: background-color 0.35s, color 0.35s, box-shadow 0.35s;
}
.site-header .wordmark { font-size: 1.35rem; color: currentColor; }
.site-header.is-solid {
  background: rgba(239, 236, 231, 0.94); color: var(--brown);
  box-shadow: 0 1px 0 rgba(103, 72, 20, 0.14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
.contact-page main { padding-top: calc(var(--header-h) + 2rem); }
.site-nav { display: flex; gap: clamp(1rem, 3vw, 2.4rem); font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0.08em; }
.site-nav a { padding-bottom: 2px; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.site-nav a:hover { border-bottom-color: currentColor; }
@media (max-width: 640px) { .site-nav a.hide-sm { display: none; } }
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  color: var(--white);
  background: #22393c url("assets/img/hero-sea-1200.jpg") center / cover no-repeat;
  padding: 6rem var(--gutter) 5rem;
}
@media (min-width: 1200px) { .hero { background-image: url("assets/img/hero-sea-2400.jpg"); } }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(12, 30, 34, 0.22); }
.hero > * { position: relative; z-index: 1; }
.hero .wordmark { font-size: clamp(2.6rem, 1rem + 8.5vw, 7rem); color: var(--white); margin: 0 auto 2.6rem; }
.hero .manifesto {
  font-size: clamp(1.35rem, 1rem + 1.4vw, 2.1rem); line-height: 1.35; font-style: italic;
  max-width: 30ch; margin: 0 auto;
}
.hero .scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.2em; opacity: 0.8; }
.spread {
  display: grid; grid-template-columns: 1fr; min-height: 70vh;
}
.spread .text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3.5rem, 8vw, 7rem) var(--gutter);
}
.spread .photo { position: relative; aspect-ratio: 4 / 5; }
.spread .photo.wide { aspect-ratio: 3 / 2; }
.spread .photo.face-top img { object-position: center 15%; }
.spread .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .spread { grid-template-columns: 1fr 1fr; min-height: 88vh; }
  .spread .photo, .spread .photo.wide { aspect-ratio: auto; }
  .spread.photo-left .photo { order: -1; }
  .spread .text { padding-inline: clamp(3rem, 7vw, 8rem); }
}
.spread .lead { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); line-height: 1.35; color: var(--brown); margin-bottom: 1.4rem; }
.spread.deep { background: var(--cream-deep); }
.chapter {
  position: relative; min-height: 88vh; display: flex; align-items: flex-end;
  color: var(--white); padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  background-color: #2a3a2f; background-size: cover; background-position: center;
}
.chapter::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 25, 20, 0.62), rgba(20, 25, 20, 0.05) 60%); }
.chapter > div { position: relative; max-width: 40rem; }
.chapter h2 { color: var(--white); }
.chapter p { color: var(--white); }
.chapter.mountain { background-image: url("assets/img/mountain-1200.jpg"); }
.chapter.pier { background-image: url("assets/img/pier-1200.jpg"); align-items: center; }
@media (min-width: 1200px) {
  .chapter.mountain { background-image: url("assets/img/mountain-2400.jpg"); }
  .chapter.pier { background-image: url("assets/img/pier-2400.jpg"); }
}
.values { padding: clamp(4rem, 9vw, 8rem) var(--gutter); }
.values .strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin: 0.5rem 0 clamp(2.5rem, 5vw, 4rem); }
.values .strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.values .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 2.5rem 3rem; max-width: 72rem; }
.values .grid p { font-size: 1.05em; }
@media (max-width: 640px) { .values .strip { grid-template-columns: repeat(2, 1fr); } }
.man-list { list-style: none; padding: 0; margin: 0 0 1.5rem; max-width: var(--measure); }
.man-list li { padding: 0.55rem 0; border-top: 1px solid rgba(103, 72, 20, 0.18); }
.man-list li:last-child { border-bottom: 1px solid rgba(103, 72, 20, 0.18); }
.universe { padding: clamp(4rem, 9vw, 8rem) var(--gutter); background: var(--cream-deep); }
.universe .inner { display: grid; gap: 3rem; max-width: 76rem; }
.universe .words { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1.3; color: var(--brown); max-width: 24ch; }
.universe .trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; align-items: end; }
.universe .trio img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.universe .trio img:nth-child(2) { aspect-ratio: 3 / 4; }
@media (min-width: 900px) { .universe .inner { grid-template-columns: 1fr 1.4fr; align-items: center; } }
.soon { text-align: center; padding: clamp(4rem, 9vw, 7rem) var(--gutter); }
.soon .wordmark { font-size: clamp(1.8rem, 1rem + 3vw, 3rem); margin: 0 auto 1.6rem; }
.soon p { margin-inline: auto; }
.soon .ig { font-family: var(--sans); letter-spacing: 0.08em; font-size: 0.95rem; border-bottom: 1px solid var(--brown); padding-bottom: 2px; }
.contact-page { min-height: 100svh; display: grid; grid-template-rows: 1fr auto; }
.site-header.on-photo-light { color: var(--ink); }
.contact-spread {
  position: relative; min-height: 100svh; display: grid;
  grid-template-columns: 1fr; grid-template-rows: auto 1fr;
  background: #c8a67e;
}
.contact-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 12% center; }
.contact-card {
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  color: var(--ink);
}
.contact-card h1 { font-size: clamp(2.4rem, 1.6rem + 2.6vw, 4rem); color: var(--ink); margin-bottom: 1.2rem; }
.contact-card .intro { font-size: 1.1em; max-width: 30rem; margin-bottom: 2.6rem; }
.contact-card .cols { display: grid; gap: 2rem 3rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); max-width: 46rem; }
.contact-card h3 { color: var(--ink); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; padding-bottom: 0.4rem; border-bottom: 1px solid rgba(61, 44, 12, 0.3); }
.contact-card address { font-style: normal; line-height: 1.65; }
.contact-card address a { border-bottom: 1px solid rgba(61, 44, 12, 0.35); transition: border-color 0.2s; }
.contact-card address a:hover { border-bottom-color: var(--ink); }
.contact-card .sub { opacity: 0.8; }
.contact-card .soon-line { margin-top: 2.6rem; font-style: italic; opacity: 0.85; }
@media (min-width: 900px) {
  .contact-spread { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .contact-photo { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-position: left center; }
  .contact-card {
    position: relative; align-self: center; justify-self: end;
    width: 56%; padding: calc(var(--header-h) + 1rem) clamp(2.5rem, 5vw, 6rem) 3rem 0;
    font-size: clamp(0.95rem, 0.8rem + 0.35vw, 1.2rem);
  }
  .contact-card .cols { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2rem; max-width: none; }
  .contact-card .intro { margin-bottom: 2rem; }
}
.site-footer {
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: space-between; align-items: center;
  padding: 2rem var(--gutter) 2.5rem; border-top: 1px solid rgba(103, 72, 20, 0.18);
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--olive);
}
.site-footer .mark { width: 2rem; opacity: 0.85; }
.site-footer nav { display: flex; gap: 1.6rem; }
.site-footer a:hover { color: var(--brown); }
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 9;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(239, 236, 231, 0.92); color: var(--brown);
  border: 1px solid rgba(103, 72, 20, 0.25);
  opacity: 0; transform: translateY(0.5rem); transition: opacity 0.3s, transform 0.3s;
}
.to-top.is-visible { opacity: 1; transform: none; }
.to-top:hover { background: var(--brown); color: var(--cream); }
@media (prefers-reduced-motion: reduce) { .site-header, .to-top { transition: none; } }
