:root {
  --ink: #161510;
  --ivory: #f8f5ef;
  --paper: #fffdf8;
  --champagne: #c9aa68;
  --old-gold: #8e6c2e;
  --evergreen: #263f35;
  --rosewood: #762e3f;
  --soft-shadow: 0 24px 70px rgba(22, 21, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(38, 63, 53, 0.05), transparent 22%, transparent 78%, rgba(118, 46, 63, 0.05)),
    var(--ivory);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(248, 245, 239, 0.18);
  background: transparent;
  color: var(--ivory);
  transition: background 350ms ease, color 350ms ease, padding 350ms ease, border-color 350ms ease, backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  border-color: rgba(22, 21, 16, 0.08);
  background: rgba(248, 245, 239, 0.92);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(168px, 15vw, 238px);
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.22));
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 34px);
  min-width: 0;
  color: inherit;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

nav a {
  position: relative;
  padding: 10px 0;
}

nav a::after,
.footer-credit a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--old-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

nav a:hover {
  color: var(--champagne);
}

nav a:hover::after,
.footer-credit a:hover::after {
  transform: scaleX(1);
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(248, 245, 239, 0.22);
  border-radius: 999px;
  background: rgba(22, 21, 16, 0.28);
}

.site-header.is-scrolled .language-toggle {
  border-color: rgba(22, 21, 16, 0.12);
  background: var(--paper);
}

.language-toggle button {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-toggle button.is-active {
  background: var(--ivory);
  color: var(--ink);
}

.site-header.is-scrolled .language-toggle button.is-active {
  background: var(--ink);
  color: var(--ivory);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 96svh;
  overflow: hidden;
  padding: clamp(126px, 13vw, 172px) clamp(18px, 5vw, 72px) clamp(92px, 10vw, 132px);
  background: var(--ink);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 170, 104, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(22, 21, 16, 0.74), rgba(22, 21, 16, 0.2) 36%, rgba(22, 21, 16, 0.78)),
    linear-gradient(90deg, rgba(22, 21, 16, 0.55), rgba(22, 21, 16, 0.16), rgba(22, 21, 16, 0.55));
  pointer-events: none;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
}

.hero-media video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img {
  position: relative;
  z-index: 0;
}

.hero-copy {
  max-width: 1020px;
  margin: 0 auto;
  color: var(--ivory);
  text-align: center;
}

.hero-logo {
  width: min(720px, 86vw);
  margin: 0 auto 26px;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.34));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--old-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--champagne);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
}

h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.hero-text {
  max-width: 700px;
  margin: 30px auto;
  color: rgba(248, 245, 239, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.button.primary {
  background: var(--ivory);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(248, 245, 239, 0.48);
  background: rgba(248, 245, 239, 0.08);
  color: var(--ivory);
  backdrop-filter: blur(10px);
}

.button:hover,
.quote-form button:hover {
  box-shadow: 0 14px 34px rgba(22, 21, 16, 0.14);
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
  transition: outline-offset 200ms ease;
}

.button:active,
.quote-form button:active {
  transform: scale(0.98);
}

.microcopy {
  margin: 0;
  color: rgba(248, 245, 239, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 4vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 96px);
  border-top: 1px solid rgba(22, 21, 16, 0.08);
}

.intro p,
.feature-panel p,
.service-grid p,
.seo-band p,
.contact-copy p {
  color: rgba(22, 21, 16, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.proof-grid article {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(142, 108, 46, 0.32);
  font-size: 14px;
  line-height: 1.6;
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--rosewood);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.spaces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  background: rgba(22, 21, 16, 0.08);
}

.space-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.space-card:hover,
.service-grid article:hover {
  box-shadow: 0 18px 48px rgba(22, 21, 16, 0.08);
  transform: translateY(-4px);
}

.space-card p {
  color: rgba(22, 21, 16, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.space-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--old-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.space-card span::after {
  content: "->";
  transform: translateX(0);
  transition: transform 200ms ease;
}

.space-card:hover span::after {
  transform: translateX(3px);
}

.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
}

.feature-panel {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: clamp(36px, 6vw, 76px);
  background-color: var(--ink);
  background-image:
    linear-gradient(160deg, rgba(18, 17, 13, 0.82), rgba(18, 17, 13, 0.48)),
    url("assets/ballroom-venue.webp");
  background-size: cover;
  background-position: center;
  color: var(--ivory);
  text-decoration: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-panel:hover {
  filter: saturate(1.04);
  transform: translateY(-4px);
}

.feature-panel.accent {
  background-image:
    linear-gradient(160deg, rgba(18, 17, 13, 0.82), rgba(18, 17, 13, 0.48)),
    url("assets/quince-dancefloor.webp");
}

.panel-number {
  display: inline-block;
  margin-bottom: 120px;
  color: rgba(248, 245, 239, 0.64);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.feature-panel p {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(248, 245, 239, 0.78);
}

.panel-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-action::after {
  content: "->";
  transform: translateX(0);
  transition: transform 200ms ease;
}

.feature-panel:hover .panel-action::after {
  transform: translateX(4px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(22, 21, 16, 0.1);
  background: rgba(255, 253, 248, 0.62);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-grid article > span {
  display: block;
  margin-bottom: 74px;
  color: var(--old-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-grid h3 {
  margin-bottom: 22px;
}

.gallery {
  background: var(--paper);
}

.gallery-page .site-header,
.services-page .site-header {
  border-color: rgba(22, 21, 16, 0.08);
  background: rgba(248, 245, 239, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.gallery-page .language-toggle,
.services-page .language-toggle {
  border-color: rgba(22, 21, 16, 0.12);
  background: rgba(255, 253, 248, 0.72);
}

.gallery-hero {
  min-height: 68svh;
  padding-top: 170px;
  color: var(--ivory);
  background:
    linear-gradient(160deg, rgba(22, 21, 16, 0.86), rgba(22, 21, 16, 0.48)),
    url("assets/outdoor-arches-wedding.webp") center / cover;
}

.wedding-gallery-hero {
  background:
    linear-gradient(160deg, rgba(22, 21, 16, 0.86), rgba(22, 21, 16, 0.48)),
    url("assets/outdoor-arches-wedding.webp") center / cover;
}

.quince-gallery-hero {
  background:
    linear-gradient(160deg, rgba(22, 21, 16, 0.86), rgba(22, 21, 16, 0.48)),
    url("assets/quince-outdoor-portrait.webp") center / cover;
}

.services-hero {
  background:
    linear-gradient(160deg, rgba(22, 21, 16, 0.86), rgba(22, 21, 16, 0.5)),
    url("assets/ballroom-venue.webp") center 74% / cover;
}

.gallery-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(248, 245, 239, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.gallery-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gallery-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(248, 245, 239, 0.32);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.gallery-jump a:hover {
  background: rgba(248, 245, 239, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.category-gallery {
  border-top: 1px solid rgba(22, 21, 16, 0.08);
}

.gallery-select {
  background: var(--paper);
}

.gallery-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(22, 21, 16, 0.12);
}

.gallery-choice-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(32px, 5vw, 64px);
  color: var(--ivory);
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-choice-card:hover {
  filter: saturate(1.04);
  transform: translateY(-4px);
}

.gallery-choice-card h2 {
  margin: 0;
}

.gallery-choice-card p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(248, 245, 239, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.wedding-choice {
  background-image:
    linear-gradient(160deg, rgba(18, 17, 13, 0.82), rgba(18, 17, 13, 0.48)),
    url("assets/outdoor-arches-wedding.webp");
}

.quince-choice {
  background-image:
    linear-gradient(160deg, rgba(18, 17, 13, 0.82), rgba(18, 17, 13, 0.48)),
    url("assets/quince-outdoor-portrait.webp");
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  border-top: 1px solid rgba(22, 21, 16, 0.08);
}

.services-intro h2 {
  max-width: 980px;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
}

.services-amenities {
  background: var(--paper);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 28px;
  border: 1px solid rgba(22, 21, 16, 0.1);
  background: rgba(255, 253, 248, 0.72);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.amenity-card:hover {
  border-color: rgba(142, 108, 46, 0.34);
  box-shadow: 0 18px 48px rgba(22, 21, 16, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  color: var(--old-gold);
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.amenity-card h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.amenity-card p {
  margin: 0;
  color: rgba(22, 21, 16, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.amenity-card small {
  display: block;
  margin-top: 18px;
  color: var(--rosewood);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exclusive-venue {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
}

.exclusive-image {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.exclusive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exclusive-copy p {
  max-width: 640px;
  color: rgba(248, 245, 239, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.exclusive-highlights {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: rgba(248, 245, 239, 0.14);
}

.exclusive-highlights article {
  padding: 22px 0;
  background: var(--ink);
}

.exclusive-highlights h3 {
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 24px;
}

.exclusive-highlights p {
  margin: 0;
  font-size: 15px;
}

.services-cta {
  display: grid;
  place-items: center;
  min-height: 520px;
  text-align: center;
  color: var(--ivory);
  background:
    linear-gradient(160deg, rgba(22, 21, 16, 0.82), rgba(22, 21, 16, 0.62)),
    url("assets/outdoor-arches-wedding.webp") center / cover;
}

.services-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.services-cta p {
  max-width: 560px;
  margin: 22px auto 34px;
  color: rgba(248, 245, 239, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gallery-grid figure {
  grid-column: span 2;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

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

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

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(6),
.gallery-grid figure:nth-child(7),
.gallery-grid figure:nth-child(8),
.gallery-grid figure:nth-child(9) {
  min-height: 520px;
}

.gallery-grid figure:nth-child(6),
.gallery-grid figure:nth-child(7),
.gallery-grid figure:nth-child(8),
.gallery-grid figure:nth-child(9) {
  grid-column: span 3;
}

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

.gallery-grid figure:hover img {
  transform: scale(1.02);
}

.category-grid figure,
.category-grid figure:nth-child(1),
.category-grid figure:nth-child(2),
.category-grid figure:nth-child(3),
.category-grid figure:nth-child(4),
.category-grid figure:nth-child(5),
.category-grid figure:nth-child(6),
.category-grid figure:nth-child(7),
.category-grid figure:nth-child(8),
.category-grid figure:nth-child(9) {
  grid-column: span 3;
  min-height: 460px;
}

.category-grid figure:last-child:nth-child(odd) {
  grid-column: span 6;
}

.seo-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(22, 21, 16, 0.08);
  border-bottom: 1px solid rgba(22, 21, 16, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(38, 63, 53, 0.1), transparent 42%),
    var(--ivory);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  display: grid;
  gap: 3px;
}

.contact-details span {
  color: var(--old-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(22, 21, 16, 0.18);
  color: var(--ink);
  font-size: 18px;
  overflow-wrap: anywhere;
  padding-bottom: 1px;
  transition: border-color 200ms ease, color 200ms ease;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(22, 21, 16, 0.1);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.quote-form label {
  display: grid;
  gap: 9px;
  color: rgba(22, 21, 16, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid rgba(22, 21, 16, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--old-gold);
  box-shadow: 0 6px 0 -5px rgba(142, 108, 46, 0.42);
}

.quote-form .full,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form button {
  background: var(--ink);
  color: var(--ivory);
}

footer {
  display: grid;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(22, 21, 16, 0.08);
  color: rgba(22, 21, 16, 0.64);
  font-size: 14px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.footer-logo {
  width: clamp(170px, 16vw, 250px);
  height: auto;
}

.footer-credit {
  justify-self: center;
  color: rgba(22, 21, 16, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-credit a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 200ms ease, transform 200ms ease;
}

.whatsapp-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(201, 170, 104, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(38, 63, 53, 0.96), rgba(22, 21, 16, 0.94)),
    var(--evergreen);
  box-shadow: 0 18px 48px rgba(22, 21, 16, 0.22);
  color: var(--ivory);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(248, 245, 239, 0.96);
  color: #1d6f4a;
  font-size: 11px;
  font-weight: 900;
}

.whatsapp-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.whatsapp-copy strong,
.whatsapp-copy small {
  font-size: 12px;
  line-height: 1.1;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
  }

  nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .intro,
  .contact,
  .seo-band,
  .services-intro,
  .exclusive-venue {
    grid-template-columns: 1fr;
  }

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

  .exclusive-image {
    min-height: 520px;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: start;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 132px;
    height: 48px;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(6, max-content);
    width: 100%;
    gap: 16px;
    justify-content: start;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  nav a {
    min-width: 0;
    padding: 7px 0;
    text-align: center;
  }

  .language-toggle {
    padding: 3px;
  }

  .language-toggle button {
    min-width: 34px;
    min-height: 28px;
    font-size: 11px;
  }

  .hero {
    min-height: 100svh;
    padding: 108px 16px 86px;
  }

  .hero-media,
  .hero-media video,
  .hero-media img {
    min-height: 100svh;
  }

  h2 {
    font-size: clamp(34px, 12vw, 50px);
    line-height: 1;
  }

  h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-logo {
    width: min(420px, 86vw);
    margin-bottom: 14px;
  }

  .hero-text {
    max-width: 312px;
    margin: 18px auto;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.55;
  }

  .hero-actions {
    width: min(100%, 316px);
    flex-direction: column;
    gap: 10px;
    margin-right: auto;
    margin-left: auto;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    text-align: center;
  }

  .section {
    padding: 58px 16px;
  }

  .gallery-hero {
    min-height: 70svh;
    padding-top: 132px;
  }

  .gallery-hero h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .gallery-jump {
    display: grid;
  }

  .proof-grid,
  .spaces,
  .service-grid,
  .amenity-grid,
  .gallery-choice-grid,
  .gallery-grid,
  .quote-form,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 340px;
    padding: 34px 22px;
  }

  .panel-number {
    margin-bottom: 56px;
  }

  .services-intro h2 {
    font-size: clamp(31px, 10vw, 48px);
  }

  .amenity-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .service-icon {
    margin-bottom: 30px;
  }

  .exclusive-image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .exclusive-highlights article {
    padding: 20px 0;
  }

  .services-cta {
    min-height: 460px;
    text-align: left;
  }

  .services-cta .hero-actions {
    margin-right: 0;
    margin-left: 0;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5),
  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(8),
  .gallery-grid figure:nth-child(9),
  .category-grid figure,
  .category-grid figure:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-top: 0;
  }

  footer {
    gap: 18px;
    padding: 36px 18px 118px;
    text-align: center;
  }

  .footer-main {
    display: grid;
    gap: 18px;
    justify-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-main .brand {
    justify-content: center;
    width: 100%;
  }

  .footer-logo {
    width: min(210px, 68vw);
  }

  .footer-main p {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
  }

  .footer-main p:last-child {
    max-width: 260px;
  }

  .whatsapp-widget {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 54px;
    padding: 8px 12px 8px 8px;
  }

  .whatsapp-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 116px;
  }

  nav {
    font-size: 8px;
    letter-spacing: 0.05em;
  }

  .whatsapp-copy small {
    display: none;
  }
}

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

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