:root {
  --forest: #173c2d;
  --forest-deep: #0c241b;
  --leaf: #637b57;
  --copper: #b0784f;
  --mist: #f5f4ef;
  --warm: #ebe5da;
  --paper: #fffdf8;
  --stone: #d8d5ce;
  --ink: #1d2621;
  --muted: #657168;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 35, 28, 0.16);
  --radius: 8px;
  --header-height: 116px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: var(--forest-deep);
  background: var(--white);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--ink);
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 10px 34px rgba(17, 40, 31, .08);
  backdrop-filter: blur(16px);
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}

.site-header.is-scrolled,
.site-header:has(.nav-links.is-open) {
  color: var(--ink);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 10px 36px rgba(17, 40, 31, .1);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.65rem, 2vw, 1.5rem);
  min-height: 40px;
  padding: .45rem 1rem;
  font-size: .86rem;
  font-weight: 700;
  background: rgba(12, 36, 27, .72);
}

.topbar a {
  color: var(--white);
  white-space: nowrap;
}

.topbar .topbar-cta {
  padding: .35rem .7rem;
  color: var(--forest-deep);
  background: var(--warm);
  border-radius: var(--radius);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand img {
  width: 138px;
  height: auto;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .94rem;
  font-weight: 700;
}

.nav-links a {
  padding: .7rem .9rem;
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--forest);
  background: var(--mist);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a[aria-current="page"] {
  color: var(--forest);
  background: var(--mist);
}

.nav-cta {
  color: var(--forest-deep);
  background: var(--warm);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-home {
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 96px;
}

.hero-video,
.page-hero::before,
.image-band::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before,
.image-band::before {
  content: "";
  background-image: var(--hero-image, var(--band-image));
  background-size: cover;
  background-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 13, .78), rgba(7, 26, 19, .46) 48%, rgba(7, 26, 19, .2)),
    linear-gradient(180deg, rgba(6, 21, 16, .52), rgba(6, 21, 16, .18) 44%, rgba(6, 21, 16, .64));
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--warm);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper);
}

.hero-text,
.page-hero-content p {
  max-width: 680px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.inline-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--forest);
}

.btn-secondary {
  color: var(--forest-deep);
  background: var(--warm);
  border-color: var(--stone);
}

.btn-ghost,
.btn-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .46);
}

.btn-light {
  color: var(--forest-deep);
  background: var(--paper);
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .25em;
}

.scroll-cue {
  position: absolute;
  right: min(40px, 6vw);
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, .9);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--white), transparent);
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
}

.soft-section {
  background: var(--mist);
}

.two-columns,
.map-layout,
.editorial-layout,
.comfort-layout,
.experiences-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.map-layout {
  align-items: stretch;
}

.editorial-layout {
  align-items: stretch;
}

.editorial-layout .section-copy {
  align-self: center;
}

.section-copy p,
.section-heading p,
.narrow-copy p {
  color: var(--muted);
}

.section-copy h2,
.section-heading h2,
.narrow-copy h2 {
  margin-bottom: 1.2rem;
}

.section-heading,
.narrow-copy {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.feature-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-item {
  padding: 1.25rem;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.feature-item span,
.experience-item span {
  display: inline-block;
  margin-bottom: .7rem;
  color: var(--warm);
  font-size: .78rem;
  font-weight: 800;
}

.feature-item strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 1.05rem;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.services-grid,
.value-grid,
.attraction-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

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

.service-card,
.value-card,
.timeline-card,
.restaurant-card,
.contact-card,
.quote-card {
  padding: clamp(1.25rem, 2vw, 2rem);
  background: var(--paper);
  border: 1px solid rgba(23, 60, 45, .1);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(24, 52, 41, .08);
}

.service-card p,
.value-card p,
.timeline-card p,
.restaurant-card p,
.contact-card p {
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--forest-deep);
  font-size: .8rem;
  font-weight: 900;
  background: var(--warm);
  border-radius: var(--radius);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.split-heading h2 {
  max-width: 760px;
}

.mosaic-gallery,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1rem;
}

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

.gallery-tile,
.photo-card,
.editorial-image,
.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: zoom-in;
  background: var(--mist);
  border: 0;
}

.gallery-tile img,
.photo-card img,
.editorial-image img,
.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-tile:hover img,
.photo-card:hover img,
.attraction-card:hover img {
  transform: scale(1.045);
}

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

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

.mosaic-gallery .gallery-tile:nth-child(2) {
  grid-column: span 2;
}

.mosaic-gallery .gallery-tile.wide {
  grid-column: span 3;
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(.85) contrast(1.05);
}

.contact-card {
  height: 100%;
}

.contact-list {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(23, 60, 45, .12);
}

.contact-list a,
.contact-list span {
  color: var(--muted);
  text-align: right;
}

.final-cta {
  padding: clamp(70px, 9vw, 120px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(12, 36, 27, .97), rgba(23, 60, 45, .9)),
    url("../../media/foto/Colle%20Muzia%2072.jpeg") center/cover;
}

.final-cta-inner {
  max-width: 850px;
}

.final-cta h2 {
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255, 255, 255, .78);
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 72svh;
  padding: calc(var(--header-height) + 80px) 0 90px;
}

.page-hero-soft {
  background: var(--forest-deep);
}

.page-hero-soft::before {
  opacity: .62;
  filter: saturate(.85) contrast(1.08);
  background-position: center right;
}

.page-hero-soft .hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 13, .88), rgba(7, 26, 19, .58) 48%, rgba(7, 26, 19, .28)),
    linear-gradient(180deg, rgba(6, 21, 16, .58), rgba(6, 21, 16, .24) 45%, rgba(6, 21, 16, .72));
}

.page-hero-content {
  max-width: 900px;
}

.editorial-image {
  min-height: 560px;
}

.editorial-layout .editorial-image {
  display: flex;
  min-height: 0;
}

.editorial-layout .editorial-image img {
  flex: 1;
  min-height: 100%;
  object-position: center;
}

.quote-card {
  margin-top: 1.5rem;
  background: var(--mist);
}

.quote-card p {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pill-list span,
.ideal-grid span {
  padding: .8rem 1rem;
  color: var(--forest-deep);
  background: var(--mist);
  border: 1px solid rgba(23, 60, 45, .12);
  border-radius: var(--radius);
  font-weight: 800;
}

.image-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 21, .82), rgba(8, 29, 21, .46));
}

.image-band-content {
  position: relative;
  z-index: 1;
}

.ideal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.ideal-grid span {
  color: var(--white);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .2);
}

.large-gallery {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 170px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 18, 13, .94);
  backdrop-filter: blur(12px);
  transition: opacity .2s ease, visibility .2s ease;
}

.gallery-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-figure {
  display: grid;
  justify-items: center;
  gap: .8rem;
  margin: 0;
}

.lightbox-figure img {
  max-width: min(100%, 1180px);
  max-height: 82svh;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
  object-fit: contain;
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, .74);
  font-size: .9rem;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  color: var(--forest-deep);
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  padding: .6rem .9rem;
}

.lightbox-nav {
  width: 56px;
  height: 56px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.restaurant-card {
  background: var(--forest);
  color: var(--white);
}

.restaurant-card span {
  color: var(--warm);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.restaurant-card p {
  color: rgba(255, 255, 255, .76);
}

.restaurant-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: .6rem 0 1rem;
  padding: .9rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
}

.restaurant-price span {
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  text-transform: uppercase;
}

.restaurant-price strong {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
  white-space: nowrap;
}

.price-section {
  background: var(--mist);
}

.price-section .section-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}

.price-card,
.booking-card,
.policy-card {
  background: var(--paper);
  border: 1px solid rgba(23, 60, 45, .1);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(24, 52, 41, .08);
}

.price-card {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  margin-bottom: 1rem;
  color: var(--forest);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.price-table th,
.price-table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(23, 60, 45, .12);
  text-align: left;
}

.price-table th {
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
}

.price-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  white-space: nowrap;
}

.price-table td:last-child {
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 900;
}

.price-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.business-note {
  display: grid;
  gap: .25rem;
  margin-top: 1.2rem;
  padding: 1rem;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
}

.business-note strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.business-note span {
  color: rgba(255, 255, 255, .78);
}

.booking-card {
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: clamp(1.25rem, 2vw, 2rem);
}

.booking-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 0;
}

.check-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(23, 60, 45, .12);
}

.check-list dt {
  color: var(--ink);
  font-weight: 900;
}

.check-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.policy-card {
  margin-top: 1rem;
  padding: clamp(1.25rem, 2.4vw, 2.4rem);
}

.policy-card h3 {
  margin-bottom: 1rem;
}

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

.policy-grid p {
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  background: var(--mist);
  border: 1px solid rgba(23, 60, 45, .08);
  border-radius: var(--radius);
}

.deposit-box {
  display: grid;
  gap: .35rem;
  margin-top: 1rem;
  padding: 1rem;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: var(--radius);
}

.deposit-box strong {
  margin-bottom: .25rem;
  color: var(--warm);
  text-transform: uppercase;
}

.deposit-box span {
  overflow-wrap: anywhere;
}

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

.attraction-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 260px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(23, 60, 45, .1);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(24, 52, 41, .08);
}

.attraction-card div {
  padding: 1.5rem;
}

.attraction-card p,
.experience-item p {
  color: var(--muted);
}

.image-credit {
  margin: 1rem 0 0;
  color: rgba(36, 47, 39, .55);
  font-size: .78rem;
  text-align: center;
}

.experience-list {
  display: grid;
  gap: .9rem;
}

.experience-item {
  padding: 1.25rem;
  border-left: 3px solid var(--copper);
  background: var(--mist);
  border-radius: var(--radius);
}

.experience-item span {
  color: var(--copper);
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: var(--forest-deep);
}

.group-section {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--paper);
}

.group-heading {
  max-width: 820px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.group-heading h2 {
  margin-bottom: 1rem;
  color: var(--ink);
}

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

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

.group-card {
  display: grid;
  gap: 1rem;
  align-content: space-between;
  min-height: 270px;
  padding: 1rem;
  background: var(--mist);
  border: 1px solid rgba(23, 60, 45, .1);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(24, 52, 41, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

a.group-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.group-logo-box {
  display: grid;
  place-items: center;
  height: 170px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(23, 60, 45, .08);
  border-radius: var(--radius);
}

.group-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.group-card h3 {
  margin-bottom: .1rem;
  color: var(--forest-deep);
}

.group-card span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.group-card-brand {
  background: var(--forest-deep);
}

.group-card-brand .group-logo-box {
  background: var(--forest-deep);
  border-color: rgba(255, 255, 255, .12);
}

.group-card-brand h3 {
  color: var(--white);
}

.group-card-brand span {
  color: rgba(255, 255, 255, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr .85fr 1.8fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: 58px 0;
}

.footer-logo {
  width: min(240px, 100%);
  margin: 0;
  opacity: .95;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: .96rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: .45rem;
  white-space: nowrap;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 1.2rem;
  text-align: center;
  font-size: .92rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom span {
  display: inline;
  margin: 0;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 104px;
  }

  .topbar {
    justify-content: space-between;
    font-size: .78rem;
  }

  .navbar {
    min-height: 64px;
  }

  .brand img {
    width: 116px;
  }

  .menu-toggle {
    display: block;
    color: inherit;
  }

  .nav-links {
    position: fixed;
    top: 104px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: .25rem;
    padding: 1rem;
    color: var(--ink);
    background: rgba(255, 253, 248, .98);
    border: 1px solid rgba(23, 60, 45, .1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: .95rem 1rem;
  }

  .two-columns,
  .map-layout,
  .editorial-layout,
  .comfort-layout,
  .price-layout,
  .experiences-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .site-footer a,
  .site-footer span {
    white-space: normal;
  }

  .footer-bottom span {
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container,
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem .65rem;
    text-align: center;
  }

  .topbar-cta {
    grid-column: 1 / -1;
  }

  .nav-links {
    top: 128px;
    left: 14px;
    right: 14px;
  }

  .hero-home {
    min-height: 100svh;
    padding-top: 156px;
  }

  .hero-actions,
  .inline-actions,
  .stack-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .scroll-cue {
    left: 20px;
    right: auto;
    bottom: 18px;
  }

  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .services-grid,
  .value-grid,
  .timeline-grid,
  .group-grid,
  .mosaic-gallery,
  .large-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-gallery,
  .large-gallery {
    grid-auto-rows: 260px;
  }

  .price-table th,
  .price-table td {
    padding: .85rem 0;
  }

  .check-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }

  .check-list dd {
    text-align: left;
  }

  .gallery-tile.tall,
  .gallery-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .mosaic-gallery .gallery-tile:nth-child(2),
  .mosaic-gallery .gallery-tile.wide {
    grid-column: auto;
  }

  .map-card iframe {
    height: 380px;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    gap: .8rem;
  }

  .lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-figure img {
    max-height: 74svh;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
  }

  .contact-list li {
    display: block;
  }

  .contact-list a,
  .contact-list span {
    margin-top: .2rem;
    text-align: left;
  }

  .page-hero {
    min-height: 76svh;
    padding-top: 164px;
  }

  .editorial-image {
    min-height: 360px;
  }

  .editorial-layout .editorial-image {
    min-height: 360px;
  }

  .attraction-card {
    grid-template-columns: 1fr;
  }

  .attraction-card img {
    height: 230px;
  }
}
