:root {
  --cream: #f5f1f1;
  --cream-2: #ece5e6;
  --ink: #201b1e;
  --ink-soft: #4d454a;
  --muted: #8b8086;
  --brand: #a18999;
  --brand-deep: #806a79;
  --line: rgba(32, 27, 30, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 10px 16px; z-index: 100; border-radius: 0 0 6px 0;
}
.skip:focus { left: 0; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 660px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 400;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 120px;
  background:
    radial-gradient(120% 80% at 50% 12%, #fdfbfc 0%, var(--cream) 55%, var(--cream-2) 100%);
}

.hero-inner { max-width: 640px; }

.mark {
  width: clamp(104px, 30vw, 150px);
  height: auto;
  margin: 0 auto 30px;
  mix-blend-mode: multiply;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 26px;
  padding-left: 0.46em;
}

.lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 11vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.lead span { display: block; }

.sub {
  margin-top: 26px;
  font-size: clamp(0.98rem, 3.6vw, 1.12rem);
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.place {
  margin-top: 34px;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 46px;
  background: linear-gradient(var(--brand), transparent);
  opacity: 0.7;
}

/* ---------- Intro ---------- */
.intro { padding: clamp(72px, 14vw, 132px) 0; }
.statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 5.4vw, 2.3rem);
  line-height: 1.34;
  color: var(--ink);
}

/* ---------- Services ---------- */
.services { padding: clamp(24px, 6vw, 40px) 0 clamp(72px, 14vw, 124px); }

.cards { display: grid; gap: 14px; }
.card {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 34px 28px 32px;
  background: rgba(255, 255, 255, 0.36);
}
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  margin: 0 0 12px;
  line-height: 1.15;
}
.card p { font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery { padding: 0 0 clamp(72px, 14vw, 124px); }
.gallery .kicker { margin-bottom: 44px; }

.grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.shot { overflow: hidden; border-radius: 3px; background: var(--cream-2); }
.shot a, .shot picture { display: block; }
.shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.shot:hover img { transform: scale(1.05); }

.more { text-align: center; margin-top: 40px; }
.more a {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brand);
  padding-bottom: 6px;
  transition: color 0.4s var(--ease);
}
.more a:hover { color: var(--brand-deep); }

/* ---------- Contact ---------- */
.contact {
  padding: clamp(84px, 16vw, 150px) 0;
  background:
    radial-gradient(120% 90% at 50% 100%, #fdfbfc 0%, var(--cream) 60%, var(--cream-2) 100%);
  text-align: center;
}
.contact .kicker { margin-bottom: 22px; }
.cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 40px;
}

.ig-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border: 1px solid var(--brand);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--brand-deep);
  box-shadow: 0 6px 18px -12px rgba(32, 27, 30, 0.45);
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.ig-btn > * { position: relative; z-index: 1; }
.ig-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.ig-btn:hover { color: #fff; border-color: transparent; box-shadow: 0 14px 30px -12px rgba(204, 35, 102, 0.6); }
.ig-btn:hover::before { opacity: 1; }
.ig-btn svg { flex: none; }

.contact .place { margin-top: 34px; }

/* ---------- Footer ---------- */
.foot {
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.foot .wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.foot-mark { width: 46px; height: auto; mix-blend-mode: multiply; opacity: 0.9; }
.foot p { font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.02em; }
.foot a {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  transition: color 0.4s var(--ease);
}
.foot a:hover { color: var(--brand-deep); }
.copy { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--muted); margin-top: 6px; }

/* ---------- Reveal on scroll (only when JS is on; no-JS shows everything) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.grid .shot { transition-delay: var(--d, 0s); }

/* Hero children cascade in one by one */
.hero-inner > .reveal:nth-child(1) { transition-delay: 0.08s; }
.hero-inner > .reveal:nth-child(2) { transition-delay: 0.20s; }
.hero-inner > .reveal:nth-child(3) { transition-delay: 0.32s; }
.hero-inner > .reveal:nth-child(4) { transition-delay: 0.44s; }
.hero-inner > .reveal:nth-child(5) { transition-delay: 0.56s; }

/* ---------- Larger screens ---------- */
@media (min-width: 620px) {
  .grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 780px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .grid { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
