:root {
  --ink: #102525;
  --ink-soft: #29413f;
  --ocean: #123f42;
  --ocean-deep: #082d30;
  --gold: #c7a24b;
  --gold-light: #e5cd8a;
  --sand: #e7dcc7;
  --ivory: #faf6ed;
  --white: #fffdf8;
  --shadow: 0 18px 50px rgb(8 45 48 / 14%);
  --radius: 1.25rem;
  --content: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(3.25rem, 15vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 10vw, 4.65rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.55rem, 6vw, 2rem);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: var(--white);
}

.brand {
  position: relative;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 3.1rem;
  height: 3.7rem;
  border: 1px solid rgb(229 205 138 / 55%);
  border-radius: 0.85rem;
  object-fit: cover;
  box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
}

.brand__text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand__text strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.brand__text small {
  margin-top: 0.3rem;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
}

.nav-toggle {
  position: relative;
  z-index: 22;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  place-content: center;
  gap: 0.38rem;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 50%;
  background: rgb(8 45 48 / 38%);
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-last-child(2) {
  transform: translateY(0.22rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.22rem) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 21;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  padding: 6rem 1.5rem 2rem;
  background: rgb(8 45 48 / 97%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  text-decoration: none;
}

.hero,
.cta {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__image,
.cta__image,
.hero__overlay,
.cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image,
.cta__image {
  z-index: -3;
  object-fit: cover;
}

.hero__image {
  object-position: 55% center;
}

.hero__overlay,
.cta__overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgb(5 25 27 / 58%) 0%, transparent 30%),
    linear-gradient(0deg, rgb(5 25 27 / 86%) 0%, rgb(5 25 27 / 8%) 68%);
}

.hero__content,
.cta__content {
  width: min(100%, var(--content));
  margin: auto auto 0;
  padding: 8.5rem 1.25rem 3.25rem;
}

.hero__content > p:not(.eyebrow),
.cta__content > p:not(.eyebrow, .contact-note) {
  max-width: 34rem;
  margin-bottom: 1.65rem;
  color: rgb(255 253 248 / 86%);
  font-size: 1.06rem;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button--primary {
  background: var(--gold);
  color: #142525;
  box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.section {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: 5.5rem 1.25rem;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.4rem;
}

.section-heading > p:last-child {
  max-width: 37rem;
  color: var(--ink-soft);
}

.experience-grid {
  display: grid;
  gap: 1rem;
}

.experience-card {
  padding: 1.7rem;
  border: 1px solid rgb(199 162 75 / 30%);
  border-radius: var(--radius);
  background: rgb(255 253 248 / 72%);
}

.experience-card__number {
  margin-bottom: 2.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.experience-card p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.venue {
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--ocean-deep);
  color: var(--white);
}

.venue__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.venue__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.venue__content {
  padding: 4.5rem 1.25rem;
}

.venue__content > p:not(.eyebrow) {
  max-width: 35rem;
  color: rgb(255 253 248 / 76%);
}

.venue-facts {
  display: grid;
  margin: 2.5rem 0 0;
  gap: 0;
}

.venue-facts div {
  padding: 1.2rem 0;
  border-top: 1px solid rgb(229 205 138 / 28%);
}

.venue-facts dt {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.venue-facts dd {
  margin: 0.2rem 0 0;
  color: rgb(255 253 248 / 62%);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgb(16 37 37 / 16%);
}

.process-list li > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-list h3 {
  font-size: 1.6rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.gallery {
  width: 100%;
  max-width: none;
  background: #efe6d6;
}

.gallery .section-heading,
.gallery-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
}

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

.gallery-item {
  min-height: 15rem;
  margin: 0;
  overflow: hidden;
  border-radius: 0.9rem;
  background: var(--sand);
}

.gallery-item--tall {
  grid-row: span 2;
  min-height: 30.65rem;
}

.gallery-item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.cta {
  min-height: 88svh;
}

.cta__image {
  object-position: center;
}

.cta__content {
  margin-block: auto;
  text-align: center;
}

.cta__content h2,
.cta__content > p {
  margin-inline: auto;
}

.contact-note {
  margin: 1rem auto 0;
  color: rgb(255 253 248 / 68%);
  font-size: 0.72rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 18;
  right: 0.85rem;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  display: grid;
  min-width: 9.5rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
  background: #1d6f5f;
  color: var(--white);
  box-shadow: 0 12px 30px rgb(6 31 33 / 30%);
  line-height: 1.1;
  text-align: left;
  text-decoration: none;
}

.floating-whatsapp span {
  margin-bottom: 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  opacity: 0.76;
  text-transform: uppercase;
}

.floating-whatsapp strong {
  font-size: 0.75rem;
  letter-spacing: 0.035em;
}

.site-footer {
  display: grid;
  justify-items: center;
  padding: 3.5rem 1.25rem 2rem;
  background: #061f21;
  color: rgb(255 253 248 / 72%);
  text-align: center;
}

.site-footer > img {
  width: 5.6rem;
  height: 6.7rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  object-fit: cover;
}

.site-footer__brand {
  margin-bottom: 0.35rem;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.site-footer nav {
  display: flex;
  gap: 1.2rem;
  margin: 1rem 0 2rem;
}

.site-footer a {
  color: var(--white);
  font-size: 0.78rem;
  text-decoration: none;
}

.site-footer__legal {
  margin: 0;
  color: rgb(255 253 248 / 45%);
  font-size: 0.7rem;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

@media (min-width: 48rem) {
  .site-header {
    padding: 1rem 2rem;
  }

  .brand img {
    width: 3.55rem;
    height: 4.25rem;
  }

  .brand__text strong {
    font-size: 1.35rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    gap: 1.7rem;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .hero__content,
  .cta__content {
    padding-inline: 2rem;
    padding-bottom: 5rem;
  }

  .section {
    padding: 7rem 2rem;
  }

  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .venue__image-wrap {
    min-height: 42rem;
    aspect-ratio: auto;
  }

  .venue__content {
    align-self: center;
    padding: 5rem clamp(2.5rem, 6vw, 6rem);
  }

  .venue-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .venue-facts div {
    padding-right: 1rem;
  }

  .process-list li {
    grid-template-columns: 4rem minmax(0, 1fr);
    padding: 2rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 18rem;
    gap: 1rem;
  }

  .gallery-item,
  .gallery-item--tall,
  .gallery-item--wide {
    min-height: 0;
    aspect-ratio: auto;
  }

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

  .floating-whatsapp {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (min-width: 75rem) {
  .site-header {
    padding-inline: 3rem;
  }

  .hero__content,
  .cta__content {
    padding-inline: 0;
  }

  .hero__image {
    object-position: center 56%;
  }
}

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

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