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

:root {
  --ink:   #0f1a0f;
  --sage:  #196146;
  --mid:   #196146;
  --muted: #7a8a7a;
  --line:  #d8e0d8;
  --cream: #f7f5ef;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── STICKY NAV — hidden until scroll ── */
.sticky-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  height: 56px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.sticky-nav.visible { transform: translateY(0); }
.sticky-logo img { height: 38px; width: auto; display: block; }
.sticky-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.sticky-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.sticky-links a:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  background: var(--white);
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Watercolour — static, anchored bottom-right */
.hero-layer-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 62%;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.4s 0.3s forwards;
}
.hero-layer-bg img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes fadeIn { to { opacity: 1; } }

/* Top bar: logo left, nav right */
.hero-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 3rem;
}
.hero-logo-link { display: block; line-height: 0; padding-top: 0.25rem; }
.hero-logo {
  height: 128px;
  width: auto;
  display: block;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.hero-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
  padding-top: 1.75rem;
}
.hero-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.hero-nav a:hover { opacity: 1; }

/* Bottom: headline over the illustration */
.hero-text {
  position: relative;
  z-index: 2;
  padding: 0 3rem 3.5rem;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s 0.6s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero-cta {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--sage); color: #fff; }
.btn-solid {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: var(--sage);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--sage);
  transition: background 0.25s;
  cursor: pointer;
}
.btn-solid:hover { background: var(--ink); border-color: var(--ink); }
.btn-solid:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--sage);
  color: rgba(255,255,255,0.65);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.marquee-inner span { margin: 0 2.5rem; }
.marquee-inner span.dot { opacity: 0.3; margin: 0 1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-section {
  padding: 8rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.about-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s, transform 0.7s;
}
.about-label.visible { opacity: 1; transform: translateX(0); }
.about-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 3rem;
}
.about-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s, transform 0.6s;
}
.about-headline .word.visible { opacity: 1; transform: translateY(0); }
.about-headline em { font-style: italic; color: var(--mid); }
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  align-items: start;
}
.about-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}
.about-body p.visible { opacity: 1; transform: translateY(0); }
.about-body .cta-wrap {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
}
.about-body .cta-wrap.visible { opacity: 1; transform: translateY(0); }

/* ── GALLERY ── */
.gallery-section { padding: 2rem 0 5rem; overflow: hidden; }
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 3rem;
  margin-bottom: 2rem;
}
.gallery-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
}
.gallery-header h2 em { font-style: italic; color: var(--mid); }
.gallery-year {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.gallery-track {
  display: flex;
  gap: 6px;
  padding: 0 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  cursor: grab;
}
.gallery-track:active { cursor: grabbing; }
.gallery-track img {
  flex: 0 0 auto;
  height: 420px;
  width: auto;
  object-fit: cover;
  scroll-snap-align: start;
  filter: saturate(0.85);
  transition: filter 0.4s;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.gallery-hint {
  padding: 1rem 3rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--ink);
  color: #fff;
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: 'PAA';
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 28vw;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 5rem;
  align-items: start;
}
.contact-left    { grid-column: 1; grid-row: 1; }
.contact-address { grid-column: 1; grid-row: 2; }
.contact-form    { grid-column: 2; grid-row: 1 / span 2; }

.contact-left .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.contact-left h2 {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.contact-left h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}
.contact-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}
.address a {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.address a:hover { color: #fff; border-color: #fff; }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; }
.field {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.2s;
}
.field:focus-within { border-color: rgba(255,255,255,0.45); }
.field label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 1.25rem 0 0;
}
.field input, .field textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.3rem 0 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  resize: none;
}
.field textarea { height: 80px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.form-submit { margin-top: 2rem; align-self: flex-start; }

/* Form success message */
.form-success {
  display: none;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.form-success strong {
  display: block;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-logo { height: 40px; width: auto; opacity: 0.4; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  /* Hero: slim top bar, watercolour as hero image, headline below */
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-bar {
    padding: 0.5rem 1.25rem;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .hero-logo { height: 86px; }
  .hero-logo-link { padding-top: 0; }
  .hero-nav { gap: 1.5rem; padding-top: 0; }
  .hero-nav a { font-size: 0.68rem; letter-spacing: 0.08em; }

  /* Watercolour: in-flow, full width, no absolute positioning */
  .hero-layer-bg {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    opacity: 1;
    animation: none;
    background: var(--cream);
    padding: 1.5rem 1.25rem 0;
  }
  .hero-layer-bg img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }

  /* Headline: tighter, left aligned, no wasted space */
  .hero-text {
    padding: 1.25rem 1.25rem 2.5rem;
  }
  .hero-eyebrow { margin-bottom: 0.75rem; }
  .hero h1 {
    font-size: 2.6rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .btn-solid { width: 100%; text-align: center; padding: 1rem; }

  /* Sticky nav */
  .sticky-nav { padding: 0 1.25rem; height: 48px; }
  .sticky-logo img { height: 30px; }
  .sticky-links { gap: 1.25rem; }
  .sticky-links a { font-size: 0.68rem; }

  /* About: tighter padding, single column */
  .about-section { padding: 3rem 1.25rem; }
  .about-headline { font-size: 2rem; margin-bottom: 2rem; }
  .about-body { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-body p { font-size: 0.92rem; }
  .about-body .cta-wrap { margin-top: 0.5rem; }
  .about-body .btn-solid { width: auto; }

  /* Gallery: shorter images, more visible at once */
  .gallery-section { padding: 2rem 0 3rem; }
  .gallery-header { padding: 0 1.25rem; margin-bottom: 1.25rem; }
  .gallery-header h2 { font-size: 1.6rem; }
  .gallery-track { padding: 0 1.25rem; gap: 4px; }
  .gallery-track img { height: 200px; }
  .gallery-hint { padding: 0.75rem 1.25rem 0; }

  /* Contact: stack, reduce padding */
  .contact-section { padding: 3rem 1.25rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-left    { grid-column: 1; grid-row: auto; order: 1; }
  .contact-form    { grid-column: 1; grid-row: auto; order: 2; }
  .contact-address { grid-column: 1; grid-row: auto; order: 3; }
  .contact-left h2 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit .btn-solid { width: 100%; text-align: center; }

  /* Footer */
  footer {
    padding: 1.25rem;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
  .footer-logo { height: 44px; }
}