/* scratch baked goods — cottage editorial */
:root {
  --bg: #f8f1e6;
  --bg-2: #f1e6d3;
  --paper: #fdf8ee;
  --ink: #2a201a;
  --ink-2: #5a4a3c;
  --muted: #8a7a6a;
  --line: #d8c8b0;
  --rose: #c98a82;
  --rose-deep: #a76960;
  --sage: #8c9d7e;
  --honey: #c79a4a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
  --hand: "Caveat", cursive;
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* Reveal-on-scroll ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* NAV ------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 241, 230, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .01em;
  transition: border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 500;
}
.brand__mark {
  font-style: italic;
  font-weight: 500;
  color: var(--rose-deep);
}
.brand__sep { color: var(--line); font-weight: 400; }
.brand__name { color: var(--ink); }
.nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--rose-deep); }
@media (max-width: 640px) {
  .nav__links { gap: 14px; font-size: 11px; }
}

/* HERO ------------------------------------------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 5vw, 80px) clamp(40px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 24px; }
}
.hero__kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  background: rgba(201, 138, 130, 0.06);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.94;
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}
.hero__title-l1 {
  display: block;
  font-size: clamp(64px, 11vw, 148px);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}
.hero__title-l2 {
  display: block;
  font-size: clamp(56px, 9.4vw, 132px);
  margin-top: -.08em;
  letter-spacing: -0.025em;
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero__lede .loc {
  font-style: italic;
  color: var(--rose-deep);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform .2s, background .2s, color .2s;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-1px); }
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--lg { padding: 16px 28px; font-size: 15px; }

.hero__avail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.hero__dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(140, 157, 126, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(140, 157, 126, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(140, 157, 126, 0.05); }
}
.hero__scribble {
  position: absolute;
  top: clamp(30px, 6vw, 90px);
  right: clamp(30px, 8vw, 110px);
  font-family: var(--hand);
  font-size: clamp(22px, 2.6vw, 38px);
  color: var(--rose-deep);
  transform: rotate(-6deg);
  pointer-events: none;
}
.hero__scribble em { color: var(--honey); }
@media (max-width: 880px) { .hero__scribble { display: none; } }

.hero__image {
  position: relative;
}
.hero__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 60px -30px rgba(60, 40, 20, 0.35);
}
.hero__image figcaption {
  position: absolute;
  bottom: -38px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--ink-2);
  font-style: italic;
}

/* TICKER --------------------------------------------------------------- */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--bg-2);
  border-bottom: 1px solid var(--bg-2);
  margin-top: clamp(60px, 8vw, 100px);
}
.ticker__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.005em;
  animation: scroll 28s linear infinite;
}
.ticker__track > span:nth-child(even) { color: var(--rose); font-style: normal; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* STATS ---------------------------------------------------------------- */
.stats {
  background: var(--bg);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 80px);
}
.stats__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}
@media (max-width: 720px) { .stats__row { grid-template-columns: 1fr; } }
.stats__cell {
  padding: 24px;
  border-top: 1px solid var(--line);
}
.stats__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.stats__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Section common ------------------------------------------------------- */
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.display-1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.display-1 em { color: var(--rose-deep); font-weight: 500; }
.display-2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
}
.display-2 em { color: var(--rose-deep); font-weight: 500; }
.muted { color: var(--ink-2); }

/* ABOUT ---------------------------------------------------------------- */
.about {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; } }
.about__copy p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.about__copy a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.about__copy a:hover { color: var(--ink); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  text-decoration: none !important;
  transition: color .2s, border-color .2s, gap .2s;
}
.link-arrow::after { content: "→"; transition: transform .25s; }
.link-arrow:hover { color: var(--rose-deep) !important; border-color: var(--rose-deep); gap: 10px; }
.about__portrait {
  position: relative;
}
.about__portrait video {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 60px -30px rgba(60, 40, 20, 0.4);
}
.about__caption {
  display: block;
  margin-top: 14px;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--ink-2);
  text-align: center;
  font-style: italic;
}

/* FEATURE -------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  background: var(--bg-2);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px);
}
@media (max-width: 880px) { .feature { grid-template-columns: 1fr; } }
.feature__img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 60px -30px rgba(60, 40, 20, 0.35);
}
.feature__copy p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 20px;
}
.feature__like {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* GALLERY -------------------------------------------------------------- */
.gallery {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.gallery__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 70px);
}
.gallery__kicker {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--rose-deep);
  margin-bottom: 12px;
}
.gallery__lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}
.gallery__lede em { color: var(--rose-deep); font-style: italic; }
.gallery__lede-divider { color: var(--line); margin: 0 8px; }
.gallery__period { font-family: var(--hand); color: var(--rose-deep); font-size: 1.2em; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.6vw, 44px) clamp(16px, 2vw, 32px);
  align-items: start;
}

/* Editorial 12-col layout for 12 tiles */
.tile:nth-child(1)  { grid-column: 1 / span 5; }
.tile:nth-child(1)  .tile__frame { aspect-ratio: 4 / 5; }

.tile:nth-child(2)  { grid-column: 7 / span 4; }
.tile:nth-child(2)  .tile__frame { aspect-ratio: 3 / 4; }

.tile:nth-child(3)  { grid-column: 1 / span 4; }
.tile:nth-child(3)  .tile__frame { aspect-ratio: 1 / 1; }

.tile:nth-child(4)  { grid-column: 5 / span 4; }
.tile:nth-child(4)  .tile__frame { aspect-ratio: 4 / 5; }

.tile:nth-child(5)  { grid-column: 9 / span 4; }
.tile:nth-child(5)  .tile__frame { aspect-ratio: 1 / 1; }

.tile:nth-child(6)  { grid-column: 5 / span 4; padding: clamp(8px, 1.4vw, 24px) 0; }
.tile:nth-child(6)  .tile__frame { aspect-ratio: 4 / 5; }
.tile:nth-child(6)  .tile__label { text-align: center; padding: 0 8px; }

.tile:nth-child(7)  { grid-column: 1 / span 4; }
.tile:nth-child(7)  .tile__frame { aspect-ratio: 3 / 4; }

.tile:nth-child(8)  { grid-column: 5 / span 5; }
.tile:nth-child(8)  .tile__frame { aspect-ratio: 4 / 5; }

.tile:nth-child(9)  { grid-column: 1 / span 4; }
.tile:nth-child(9)  .tile__frame { aspect-ratio: 1 / 1; }

.tile:nth-child(10) { grid-column: 5 / span 4; }
.tile:nth-child(10) .tile__frame { aspect-ratio: 3 / 4; }

.tile:nth-child(11) { grid-column: 9 / span 4; }
.tile:nth-child(11) .tile__frame { aspect-ratio: 1 / 1; }

.tile:nth-child(12) { grid-column: 3 / span 8; }
.tile:nth-child(12) .tile__frame { aspect-ratio: 16 / 9; }

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); gap: 18px; }
  .tile:nth-child(odd)  { grid-column: 1 / span 3; }
  .tile:nth-child(even) { grid-column: 4 / span 3; }
  .tile .tile__frame { aspect-ratio: 4 / 5 !important; }
  .tile:nth-child(6) .tile__frame, .tile:nth-child(12) .tile__frame { aspect-ratio: 4 / 5 !important; }
}
@media (max-width: 540px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .tile:nth-child(n) { grid-column: 1 / -1; }
}

.tile {
  display: flex;
  flex-direction: column;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}
.tile__frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-2);
  transition: transform .35s ease;
}
.tile__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.tile:hover .tile__frame { transform: translateY(-4px); }
.tile:hover .tile__frame img { transform: scale(1.04); }
.tile__num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--paper);
  background: rgba(0,0,0,.32);
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.tile__label {
  display: block;
  margin-top: 14px;
  padding: 0 4px;
}
.tile__cap {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 4px;
}
.tile__meta {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* QUOTE ---------------------------------------------------------------- */
.quote {
  text-align: center;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  background: var(--bg-2);
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  max-width: 880px;
  margin: 0 auto 18px;
  color: var(--ink);
}
.quote p em { color: var(--rose-deep); font-style: normal; font-family: var(--hand); font-size: 1.1em; }
.quote__attr {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* PRESS ---------------------------------------------------------------- */
.press {
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 80px);
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.press__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 22px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  color: var(--ink);
}
.press__name em { color: var(--rose-deep); font-style: italic; }
.press__div { color: var(--line); font-weight: 300; }

/* CONTACT -------------------------------------------------------------- */
.contact {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px);
  max-width: 920px;
  margin: 0 auto;
}
.contact__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.contact__lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px clamp(20px, 3vw, 36px);
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--rose-deep); }
.field textarea { resize: vertical; min-height: 110px; font-family: var(--serif); }
.contact__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.contact__fallback {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
}
.contact__fallback a { color: var(--rose-deep); border-bottom: 1px solid var(--rose-deep); }
.contact__success {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--sage);
  background: rgba(140, 157, 126, 0.08);
  border-left: 3px solid var(--sage);
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 10px;
}
.contact__success.contact__error { color: var(--rose-deep); background: rgba(201, 138, 130, 0.08); border-left-color: var(--rose-deep); }
.contact__success em { font-style: italic; opacity: .8; display: block; margin-top: 4px; font-size: 14px; }
form.is-sending { opacity: .65; pointer-events: none; }

@media (max-width: 640px) {
  .contact__form { grid-template-columns: 1fr; }
}

/* FOOTER --------------------------------------------------------------- */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 36px clamp(20px, 5vw, 80px);
}
.foot__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.foot__row a { color: var(--rose); border-bottom: 1px solid transparent; transition: border-color .2s; }
.foot__row a:hover { border-bottom-color: var(--rose); }
.foot__row--small {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(253, 248, 238, 0.5);
  letter-spacing: .04em;
}

/* LIGHTBOX ------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 14, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--serif);
  transition: transform .2s;
}
.lightbox__close:hover { transform: scale(1.15); }
.lightbox__inner {
  max-width: 920px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lightbox__inner img {
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__inner figcaption {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}
.lightbox__meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(253, 248, 238, 0.6);
}
