:root {
  --teal: #075e6b;
  --deep: #073d46;
  --gold: #e8aa22;
  --cream: #fbf7ed;
  --paper: #fffdf8;
  --ink: #173d43;
  --muted: #5b6d70;
  --line: rgba(7, 94, 107, 0.16);
  --shadow: 0 24px 70px rgba(23, 61, 67, 0.14);
  --radius: 22px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.sr-only,
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  background: #fff;
  padding: 10px;
}
.skip-link:focus {
  transform: none;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  box-shadow: 0 8px 28px rgba(23, 61, 67, 0.1);
  border-color: var(--line);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 155px;
}
.logo img {
  height: 66px;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.nav-pill {
  background: var(--teal);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
}
.menu-button {
  display: none;
}
.hero {
  min-height: 760px;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding-top: 82px;
  overflow: hidden;
  background-color: #f5eee3;
  background-image: url("assets/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 68% center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(255, 253, 248, 0.94) 26%,
    rgba(255, 253, 248, 0.72) 43%,
    rgba(255, 253, 248, 0.18) 65%,
    rgba(255, 253, 248, 0) 82%
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.newsletter h2 {
  font-family: "Libre Baskerville", serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 700px;
}
.script {
  font-family: "Parisienne", cursive;
  color: #c8870d;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin: 20px 0 8px;
}
.lead {
  max-width: 590px;
  font-size: 1.08rem;
  color: #405b5f;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 0;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: 0.77rem;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(23, 61, 67, 0.15);
}
.primary {
  background: var(--teal);
  color: #fff;
}
.gold {
  background: var(--gold);
  color: var(--deep);
}
.section {
  padding: 105px 0;
  scroll-margin-top: 80px;
}
.heading {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 48px;
}
.heading h2,
.story h2,
.visit h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}
.heading > p:last-child,
.story p,
.card p,
.event p {
  color: var(--muted);
}
.cards {
  display: grid;
  gap: 20px;
}
.four {
  grid-template-columns: repeat(4, 1fr);
}
.three {
  grid-template-columns: repeat(3, 1fr);
}
.card,
.event {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 61, 67, 0.07);
}
.card {
  position: relative;
  min-height: 310px;
}
.card small {
  position: absolute;
  right: 26px;
  top: 28px;
  color: rgba(7, 94, 107, 0.35);
  font:
    1.3rem "Libre Baskerville",
    serif;
}
.icon,
.event span {
  font-size: 2rem;
}
.card h3,
.event h3 {
  font-family: "Libre Baskerville", serif;
  margin: 24px 0 10px;
}
.story {
  background: var(--cream);
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.image-frame {
  position: relative;
}
.image-frame:before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid rgba(232, 170, 34, 0.45);
  border-radius: var(--radius);
}
.image-frame img {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3/2;
  object-fit: cover;
}
.story-script {
  font-size: clamp(2rem, 3vw, 3rem);
}
.text-link {
  font-weight: 800;
  color: var(--teal);
  text-decoration: none;
}
.event {
  text-align: center;
  background: linear-gradient(145deg, #fff, #fcf8ef);
}
.quote {
  padding: 95px 0;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(6, 77, 88, 0.91), rgba(6, 77, 88, 0.91)),
    url("assets/mural.jpg") center/cover fixed;
}
.quote-mark {
  display: block;
  color: var(--gold);
  font: 5rem Georgia;
  line-height: 0.8;
}
.quote blockquote {
  max-width: 900px;
  margin: 15px auto;
  font:
    clamp(1.7rem, 3vw, 3rem)/1.4 "Libre Baskerville",
    serif;
}
.ornament {
  color: var(--gold);
  letter-spacing: 0.35em;
}
.visit {
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.visit-copy {
  padding: 60px;
}
.detail {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin: 22px 0;
}
.detail b {
  color: #c8870d;
  font-size: 1.25rem;
}
.detail p {
  margin: 0;
  color: var(--muted);
}
.detail a {
  text-decoration: none;
}
.map {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #eef1e8, #dfebe5);
  text-decoration: none;
}
.roads:before,
.roads:after {
  content: "";
  position: absolute;
  width: 130%;
  height: 16px;
  background: #fff;
  border: 1px solid var(--line);
  left: -15%;
  top: 35%;
  transform: rotate(-15deg);
}
.roads:after {
  top: 65%;
  transform: rotate(13deg);
}
.pin {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #d84a33;
  text-shadow: 0 6px 12px #999;
}
.map-label {
  position: absolute;
  left: 53%;
  top: 42%;
  padding: 8px 12px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 8px 20px #9995;
  font-weight: 800;
}
.map-footer {
  position: absolute;
  inset: auto 0 0;
  padding: 15px 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.newsletter {
  padding: 72px 0;
  background: #064d58;
  color: #fff;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}
.newsletter h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.newsletter p {
  color: #ffffffc7;
}
.light {
  color: #f4c75c;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
}
.form-row input {
  min-width: 0;
  border: 0;
  border-radius: 8px 0 0 8px;
  padding: 15px 18px;
}
.form-row .button {
  border-radius: 0 8px 8px 0;
}
.consent {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: #ffffffc0;
}
.consent input {
  accent-color: var(--gold);
}
#form-status {
  min-height: 24px;
  font-weight: 700;
  font-size: 0.87rem;
}
.ok {
  color: #b8f0cf;
}
.bad {
  color: #ffd0c9;
}
footer {
  padding: 58px 0 22px;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.6fr;
  gap: 50px;
}
.footer-logo {
  width: 170px;
  height: 110px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
footer h3 {
  font-family: "Libre Baskerville", serif;
}
footer a {
  display: block;
  text-decoration: none;
  color: var(--muted);
}
.copyright {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}
@media (max-width: 950px) {
  .menu-button {
    display: grid;
    gap: 5px;
    place-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }
  .menu-button span {
    width: 21px;
    height: 2px;
    background: var(--deep);
  }
  .nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 12px;
  }
  .four {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .nav-wrap {
    height: 72px;
  }
  .logo {
    width: 125px;
  }
  .logo img {
    height: 58px;
  }
  .nav {
    top: 72px;
  }
  .hero {
    min-height: 720px;
    padding-top: 72px;
    background-position: 64% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.97) 0%,
      rgba(255, 253, 248, 0.9) 48%,
      rgba(255, 253, 248, 0.62) 72%,
      rgba(255, 253, 248, 0.2) 100%
    );
  }
  .hero-copy {
    padding: 80px 0 130px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }
  .section {
    padding: 78px 0;
  }
  .four,
  .three,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 48px;
  }
  .image-frame:before {
    inset: 12px -8px -12px 8px;
  }
  .visit-copy {
    padding: 38px 26px;
  }
  .map {
    min-height: 360px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-row input,
  .form-row .button {
    border-radius: 8px;
  }
  .map-footer {
    flex-direction: column;
  }
  .footer-grid {
    gap: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/*TRP*/
.map {
  position: relative;
  display: block;
  min-height: 500px;
  overflow: hidden;
  background: #e8ecef;
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 24px;
  color: #173f45;
  background: rgba(255, 255, 255, 0.94);
}