:root {
  --bg: #f5efe7;
  --bg-deep: #efe5d9;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #241b17;
  --muted: #6d635b;
  --accent: #9d7351;
  --accent-dark: #6d4c33;
  --accent-soft: #d7bc9b;
  --olive: #66755f;
  --line: rgba(36, 27, 23, 0.09);
  --shadow: 0 24px 60px rgba(61, 45, 27, 0.16);
  --shadow-soft: 0 18px 40px rgba(61, 45, 27, 0.1);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 32%),
    radial-gradient(circle at top right, rgba(215, 188, 155, 0.45), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f8f4ed 48%, var(--bg-deep) 100%);
}

body.lightbox-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: auto;
  pointer-events: none;
  filter: blur(24px);
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 7rem;
  left: -4rem;
  background: rgba(212, 201, 182, 0.28);
  border-radius: 50%;
}

body::after {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  bottom: 9rem;
  background: rgba(193, 157, 120, 0.16);
  border-radius: 50%;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3,
strong {
  color: var(--text);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section--first {
  padding-top: 7rem;
}

.section--contrast {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.18);
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 239, 231, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(61, 45, 27, 0.08);
  border-bottom: 1px solid rgba(36, 27, 23, 0.06);
  background: rgba(248, 244, 237, 0.92);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: grid;
  gap: 0.2rem;
}

.brand__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(36, 27, 23, 0.82);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.site-nav .button--primary,
.site-nav .button--primary:hover {
  color: #fff9f3;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.9rem;
  padding-inline: 1.1rem;
}

.button--primary {
  color: #fff9f3;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 18px 30px rgba(109, 76, 51, 0.22);
}

.button--primary:hover {
  box-shadow: 0 24px 36px rgba(109, 76, 51, 0.28);
}

.button--ghost {
  border-color: rgba(36, 27, 23, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(109, 76, 51, 0.2);
  box-shadow: var(--shadow-soft);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 3rem;
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 1.25rem;
}

.hero__lead {
  max-width: 57ch;
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.hero__point {
  min-height: 100%;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
}

.hero__point strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

.hero__point p {
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
  min-height: 38rem;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 2rem 1rem 1.75rem 3.2rem;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, rgba(215, 188, 155, 0.25), rgba(102, 117, 95, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card--main {
  top: 0;
  right: 0;
  width: min(31rem, 82%);
  aspect-ratio: 16 / 11;
}

.visual-card--offset {
  left: 0;
  bottom: 4rem;
  width: min(20rem, 48%);
  aspect-ratio: 3 / 4;
}

.visual-note {
  position: absolute;
  right: 1.3rem;
  left: 7.8rem;
  bottom: 0;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(36, 27, 23, 0.86);
  box-shadow: var(--shadow);
  color: rgba(255, 249, 243, 0.9);
  line-height: 1.65;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.section-heading--row {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 21rem);
  align-items: end;
  gap: 1.5rem;
}

.section-heading__aside {
  text-align: right;
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card__media {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.04);
}

.feature-card h3 {
  margin-bottom: 0.7rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 3.5rem;
  align-items: start;
}

.story__media {
  position: relative;
  min-height: 38rem;
  padding: 0 3.25rem 3.5rem 0;
}

.story-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-shot--tall {
  right: 0;
  bottom: 0;
  width: min(17rem, 38%);
  aspect-ratio: 3 / 4;
  z-index: 1;
}

.story-shot--wide {
  inset: 0 2.5rem 4.5rem 0;
}

.story__copy {
  display: grid;
  gap: 1.1rem;
}

.detail-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.detail-item span {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--accent-dark);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.detail-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.66);
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(109, 76, 51, 0.36);
  outline-offset: 4px;
}

.gallery-item--portrait {
  grid-column: span 1;
}

.gallery-item--landscape {
  grid-column: span 1;
}

.gallery-item--slim {
  grid-column: span 1;
}

.gallery-item--slim img {
  object-position: center top;
}

@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(20, 16, 14, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__figure {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin: 0;
}

.lightbox__image {
  width: min(100%, 1100px);
  max-height: calc(100vh - 8rem);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
}

.lightbox__caption {
  max-width: 52rem;
  text-align: center;
  color: rgba(255, 249, 243, 0.82);
  line-height: 1.6;
}

.lightbox__close,
.lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff9f3;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
}

.lightbox__nav {
  min-width: 7rem;
  min-height: 3.5rem;
  padding: 0.9rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-card,
.map-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: grid;
  gap: 1.1rem;
}

.contact-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(61, 45, 27, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-link strong {
  font-size: 1rem;
}

.contact-link span {
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 76, 51, 0.18);
  box-shadow: var(--shadow-soft);
}

.contact-link--static:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(61, 45, 27, 0.05);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 24px;
  filter: saturate(0.9);
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer a {
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .story-grid,
  .contact-grid,
  .section-heading--row {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: min(36rem, 100%);
    margin-inline: auto;
  }

  .section-heading__aside {
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story__media {
    width: min(42rem, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .section {
    padding: 4rem 0;
  }

  .section--first {
    padding-top: 6.4rem;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }

  .site-header[data-open="true"] .site-nav {
    display: flex;
  }

  .hero__actions,
  .hero__points,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero__points {
    display: grid;
  }

  .hero__visual {
    min-height: 28rem;
  }

  .hero__visual::before {
    inset: 1.4rem 0.5rem 1.25rem 1.2rem;
  }

  .visual-card--main {
    width: 82%;
  }

  .visual-card--offset {
    width: 47%;
    bottom: 3.7rem;
  }

  .visual-note {
    right: 0.8rem;
    left: 2rem;
    font-size: 0.92rem;
  }

  .story__media {
    display: grid;
    position: static;
    width: 100%;
    min-height: auto;
    padding: 0;
    gap: 1rem;
  }

  .story-shot {
    position: static;
  }

  .story-shot--wide {
    inset: auto;
    aspect-ratio: 16 / 10;
  }

  .story-shot--tall {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item--portrait,
  .gallery-item--landscape,
  .gallery-item--slim {
    grid-column: span 1;
  }

  .lightbox {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.85rem;
    padding: 4.5rem 1rem 1rem;
  }

  .lightbox__image {
    max-height: calc(100vh - 11rem);
  }

  .lightbox__nav {
    min-width: 0;
    width: 100%;
    max-width: 18rem;
  }

  .contact-card,
  .map-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .contact-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-link span {
    text-align: left;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .button,
  .button--small {
    width: 100%;
  }

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

  .lightbox__close {
    top: 0.9rem;
    right: 0.9rem;
  }

  .hero__visual {
    min-height: 24.5rem;
  }

  .visual-card--main {
    width: 84%;
  }

  .visual-card--offset {
    width: 50%;
    left: 0;
  }

  .visual-note {
    left: 1rem;
    right: 0.5rem;
    padding: 0.9rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
