:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5f635e;
  --soft: #f5f2ea;
  --paper: #fffdf8;
  --line: rgba(21, 21, 21, 0.14);
  --green: #315849;
  --green-2: #dfe8df;
  --gold: #b79663;
  --shadow: 0 24px 80px rgba(20, 20, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  min-height: 56px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(19, 18, 16, 0.46);
  padding: 8px 10px 8px 14px;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.brand strong {
  font-size: 0.96rem;
}

.site-header nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.nav-cta {
  background: white;
  color: var(--ink) !important;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: #111;
  color: white;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 88svh;
  width: min(1120px, calc(100% - 32px));
  align-content: end;
  margin: 0 auto;
  padding: 128px 0 86px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e8efe5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 13vw, 12.5rem);
  font-weight: 500;
  line-height: 0.82;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.92;
}

h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.lede {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
}

.hero-actions,
.booking-panel,
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.booking-panel a,
.booking-panel span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--green-2);
  color: #102019;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
}

.availability {
  appearance: none;
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  min-width: 210px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  padding: 16px;
  color: white;
  cursor: pointer;
  font: inherit;
  text-align: left;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.availability:hover,
.availability:focus-visible {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  outline: 0;
}

.availability span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.availability strong {
  font-size: 1.2rem;
}

.availability small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.availability-panel {
  background: var(--paper);
}

.availability-panel[hidden] {
  display: none;
}

.availability-shell {
  display: block;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px) 0 0;
}

.availability-tool {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(245, 242, 234, 0.72), rgba(255, 253, 248, 0.92)),
    var(--paper);
  padding: clamp(18px, 4vw, 34px);
  box-shadow: 0 18px 54px rgba(20, 20, 20, 0.07);
}

.availability-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.availability-topline h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

.availability-topline span {
  flex: 0 0 auto;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--muted);
  padding: 8px 11px;
  font-size: 0.74rem;
  font-weight: 800;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pill {
  min-height: 42px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  padding: 9px 14px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-pill:hover,
.service-pill:focus-visible {
  border-color: rgba(49, 88, 73, 0.28);
  color: var(--green);
  outline: 0;
}

.service-pill.active {
  border-color: rgba(49, 88, 73, 0.24);
  background: var(--green);
  color: white;
  transform: translateY(-1px);
}

.availability-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  max-width: 720px;
  border-left: 1px solid rgba(49, 88, 73, 0.24);
  padding-left: 16px;
}

.availability-result p,
.source-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(183, 150, 99, 0.18);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-card {
  display: flex;
  min-height: 150px;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 24px;
  background: var(--paper);
  padding: 18px;
}

.source-card .source-main {
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.source-card h3 {
  margin: 0;
}

.source-date {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 0.95;
}

.source-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  align-self: end;
  border: 1px solid rgba(49, 88, 73, 0.22);
  border-radius: 999px;
  color: var(--green);
  padding: 9px 13px;
  font-weight: 900;
}

.source-card.unavailable {
  opacity: 0.68;
}

.source-card.unavailable .source-date {
  color: var(--muted);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip div {
  background: var(--paper);
  padding: 28px max(22px, 5vw);
}

.intro-strip span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.intro-strip p {
  margin: 8px 0 0;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 800;
}

.section,
.gallery-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.section-copy p,
.booking p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.portrait-card {
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.services {
  border-top: 1px solid var(--line);
}

.philosophy {
  border-top: 1px solid var(--line);
}

.principles {
  align-items: stretch;
}

.principles article {
  flex: 1 1 250px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  padding: clamp(22px, 3vw, 30px);
}

.principles span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.principles p {
  color: var(--muted);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}

.service-grid article {
  display: flex;
  min-height: 160px;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  background: var(--paper);
  padding: clamp(22px, 4vw, 34px);
}

.service-grid p {
  color: var(--muted);
}

.service-grid strong {
  color: var(--green);
  font-size: 1.45rem;
}

.gallery-section {
  width: min(1260px, calc(100% - 32px));
  border-top: 1px solid var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(210px, 26vw);
  gap: 14px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--soft);
}

.gallery .tall {
  grid-row: span 2;
}

.gallery .wide {
  grid-column: span 2;
}

.proof {
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.proof-line {
  display: grid;
  grid-template-columns: auto auto minmax(240px, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 242, 234, 0.72);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-line strong {
  color: var(--ink);
}

.proof-line span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.proof-line .quote {
  justify-self: end;
  color: var(--green);
  font-style: italic;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.booking-panel {
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--soft);
  padding: 22px;
}

.booking-panel a,
.booking-panel span {
  width: 100%;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: var(--paper);
}

.link-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.link-panel article {
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 22px;
  background: var(--paper);
  padding: 20px;
}

.link-panel article > span {
  width: auto;
  min-height: 0;
  justify-content: start;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.link-panel h3 {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.link-panel p {
  margin-bottom: 16px;
  color: var(--muted);
}

.link-panel a {
  min-height: 44px;
  justify-content: start;
  border-color: rgba(49, 88, 73, 0.22);
  color: var(--green);
}

footer {
  display: flex;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 30px 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    left: 14px;
    width: auto;
    min-height: 50px;
    transform: none;
    border-radius: 999px;
    padding: 8px;
  }

  .brand strong {
    display: none;
  }

  .site-header nav {
    display: none;
  }

  .site-header nav a {
    padding: 8px 9px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-copy {
    min-height: 86svh;
    padding: 108px 0 176px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.16) 58%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
  }

  .availability {
    right: 16px;
    bottom: 18px;
    left: 16px;
    min-width: 0;
    padding: 14px;
  }

  .hero-actions {
    max-width: 270px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .intro-strip,
  .split,
  .service-grid,
  .booking {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    padding: 20px 22px;
  }

  .section,
  .gallery-section {
    width: min(100% - 24px, 640px);
    padding: 64px 0;
  }

  .section-heading {
    display: block;
  }

  .proof-line {
    grid-template-columns: 1fr;
    border-radius: 24px;
    padding: 16px;
  }

  .proof-line .quote {
    justify-self: start;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 10px;
  }

  .gallery .wide,
  .gallery .tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery figure:nth-child(1),
  .gallery figure:nth-child(3) {
    grid-column: span 2;
  }

  footer {
    display: grid;
  }

  .availability-shell {
    width: min(100% - 24px, 640px);
    padding: 32px 0 0;
  }

  .availability-topline {
    display: grid;
  }

  .source-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 14px;
    right: auto;
    width: auto;
    transform: none;
    justify-content: start;
    padding: 8px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    max-width: 358px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .lede {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

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

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(3) {
    grid-column: auto;
  }
}
