:root {
  color-scheme: light;
  --ink: #172018;
  --muted: #5e675f;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --sage: #6f8067;
  --sage-dark: #344435;
  --wine: #8f314a;
  --petal: #b04578;
  --petal-dark: #782850;
  --blush: #f1d8d9;
  --lime: #b7c94a;
  --champagne: #ecd1b7;
  --gold: #c59a52;
  --line: rgba(23, 32, 24, 0.14);
  --shadow: 0 24px 70px rgba(23, 32, 24, 0.18);
  --header-h: 76px;
  --display-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display-font);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 17, 13, 0.58), rgba(12, 17, 13, 0));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 245, 239, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 32, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 214px;
  height: 92px;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.52));
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: drop-shadow(0 10px 22px rgba(23, 32, 24, 0.18));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.94rem;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 650;
  text-rendering: geometricPrecision;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.nav-social {
  margin-left: clamp(0px, 0.8vw, 8px);
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.site-header.is-scrolled .nav-social,
.site-header.is-open .nav-social {
  border-color: rgba(23, 32, 24, 0.22);
  color: var(--ink);
}

.primary-nav .social-link::after {
  content: none;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #17120b;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #182018;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 28%, rgba(255, 255, 255, 0) 64%);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 17, 13, 0.78) 0%, rgba(12, 17, 13, 0.42) 45%, rgba(12, 17, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 17, 13, 0.76) 0%, rgba(12, 17, 13, 0.04) 56%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  padding: calc(var(--header-h) + 70px) clamp(18px, 6vw, 86px) 190px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--petal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f4d6b9;
}

.hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3.6rem, 8.4vw, 7.4rem);
  line-height: 0.9;
  font-weight: 750;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 26px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: #1e170d;
  box-shadow: 0 14px 30px rgba(197, 154, 82, 0.24);
}

.button.primary.call-button {
  min-width: 168px;
  min-height: 62px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #ffe7b8 0%, #f6c66f 58%, #e9ad49 100%);
  color: #17120b;
  box-shadow: 0 16px 34px rgba(233, 173, 73, 0.24);
  text-align: center;
}

.call-button span {
  display: block;
  line-height: 1.22;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
}

.hero-facts {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  width: min(760px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f7f5ef;
  color: var(--ink);
  transform: translateX(-50%);
  isolation: isolate;
}

.hero-facts::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: -58px;
  height: 116px;
  background: #f7f5ef;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-facts div {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 22px 26px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts span {
  display: block;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--petal-dark);
}

.hero-facts small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

section {
  scroll-margin-top: 96px;
}

.intro-band,
.services-band,
.video-band,
.gallery-band,
.contact-band,
.map-band {
  padding: clamp(44px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.section-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.feature-band h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 750;
  color: #211a1d;
}

.section-copy h2::after,
.section-heading h2::after,
.feature-band h2::after,
.contact-copy h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--petal), var(--gold), var(--lime));
  border-radius: 999px;
}

.feature-band h2::after {
  background: linear-gradient(90deg, #f1d4ad, var(--petal), var(--lime));
}

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

.section-copy .eyebrow,
.section-heading .eyebrow,
.contact-copy .eyebrow {
  color: var(--petal);
}

.feature-band .eyebrow {
  color: #f1d4ad;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 16px;
  align-items: end;
}

.image-pair img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  aspect-ratio: 4 / 5;
}

.image-pair img:last-child {
  aspect-ratio: 4 / 3;
  transform: translateY(42px);
}

.services-band {
  position: relative;
  overflow: hidden;
  background: #fbf2f6;
}

.services-band::before,
.services-band::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.services-band::before {
  inset: 0;
  opacity: 0;
}

.services-band::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 30vw);
  background-color: #eef5ec;
  opacity: 0.62;
}

.services-band .section-heading,
.service-list {
  position: relative;
  z-index: 1;
}

.services-band .section-heading {
  display: block;
  width: min(860px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.services-band .section-heading .eyebrow {
  margin-top: 0;
  margin-bottom: 14px;
}

.services-band .section-heading h2 {
  font-family: inherit;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.08;
  font-weight: 750;
  letter-spacing: 0;
}

.services-band .section-heading h2::after {
  width: 64px;
  height: 2px;
  margin-top: 20px;
  background: var(--petal);
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto clamp(26px, 4vw, 44px);
}

.service-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-list article {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(176, 69, 120, 0.14);
  border-radius: 0;
  background: #fff7fa;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  overflow: hidden;
  box-shadow: none;
}

.service-list article::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 3.2vw, 38px);
  width: 46px;
  height: 3px;
  background: var(--petal);
}

.service-list h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.2;
  font-weight: 750;
}

.service-list p {
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.service-title {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  border-bottom: 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(44px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(52, 68, 53, 0.98), rgba(70, 39, 61, 0.96) 56%, rgba(120, 40, 80, 0.95));
  color: #fff;
}

.feature-band h2 {
  color: #fff8ef;
}

.feature-band img {
  width: 100%;
  height: min(620px, 72vh);
  object-fit: cover;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #f1d4ad;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.video-band {
  background: #efe8df;
}

.video-frame {
  width: min(1080px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #1b1719;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame iframe[hidden],
.map-band iframe[hidden] {
  display: none;
}

.consent-placeholder {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(27, 23, 25, 0.86), rgba(120, 40, 80, 0.76)),
    url("assets/images/GARDEN%20HALL%20(1).jpg") center / cover;
  color: #fff;
  text-align: center;
}

.consent-placeholder[hidden] {
  display: none;
}

.consent-placeholder .eyebrow {
  margin: 0;
  color: #f1d4ad;
}

.consent-placeholder h3 {
  width: min(560px, 100%);
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 750;
}

.consent-placeholder p {
  width: min(600px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.gallery-heading {
  width: min(860px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.gallery-heading > p {
  margin: 0;
}

.gallery-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-grid button {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ddd;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-grid button.is-hidden {
  display: none;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.04);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.gallery-actions[hidden] {
  display: none;
}

.gallery-more-button {
  min-width: 250px;
  min-height: 54px;
  border: 1px solid rgba(23, 32, 24, 0.24);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button.secondary.dark.gallery-more-button:hover,
.button.secondary.dark.gallery-more-button:focus-visible {
  border-color: #171a14;
  background: #171a14;
  color: #fffaf2;
  transform: translateY(-1px);
}

.contact-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(380px, 520px);
  justify-content: center;
  gap: clamp(12px, 1.7vw, 22px) 0;
  align-items: stretch;
  padding-top: clamp(30px, 4vw, 52px);
  padding-bottom: clamp(30px, 4vw, 52px);
  background: #fff;
  overflow: hidden;
}

.contact-band::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 3;
  z-index: 0;
  width: 100vw;
  justify-self: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.035), rgba(0, 0, 0, 0) 34%),
    #171a14;
}

.contact-copy {
  display: contents;
}

.contact-panel {
  width: 100%;
}

.contact-copy h2 {
  grid-column: 1 / -1;
  max-width: none;
  font-size: clamp(2rem, 2.6vw, 2.45rem);
  line-height: 1.08;
  white-space: nowrap;
  color: #211a1d;
}

.contact-copy > p {
  grid-column: 1 / -1;
  width: min(720px, 100%);
  margin: -2px 0 clamp(8px, 1.5vw, 16px);
  color: var(--muted);
}

.contact-copy .eyebrow {
  display: none;
}

.contact-brand-image {
  grid-column: 1;
  grid-row: 3;
  z-index: 1;
  width: 100%;
  min-height: clamp(390px, 31vw, 470px);
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #17120b;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.contact-brand-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.contact-panel {
  grid-column: 2;
  grid-row: 3;
  z-index: 1;
  align-self: stretch;
  min-height: clamp(390px, 31vw, 470px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.4vw, 34px);
  border: 0;
  border-left: 4px solid var(--gold);
  border-radius: 0;
  background: #171a14;
  color: #fffaf2;
}

.contact-panel dl {
  margin: 0;
}

.contact-panel dl > div {
  display: grid;
  grid-template-columns: minmax(104px, 0.34fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
}

.contact-panel dl > div:first-child {
  padding-top: 0;
}

.contact-panel dt {
  color: #e0b969;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-panel dd {
  min-width: 0;
  margin: 0;
  font-weight: 750;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.35;
  color: #fffaf2;
  overflow-wrap: anywhere;
}

.contact-panel a {
  color: #fffaf2;
  text-decoration: none;
}

.contact-actions-modern {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(180px, 1fr);
  gap: 0;
  margin-top: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(255, 250, 242, 0.18);
}

.contact-actions-modern .button {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-actions-modern .map-button {
  border-left: 1px solid rgba(255, 250, 242, 0.18);
  background: transparent;
  color: #fffaf2;
}

.contact-actions-modern .button.map-button {
  color: #fffaf2;
}

.contact-actions-modern .call-button {
  background: #f0c36d;
  color: #17120b;
}

.map-band {
  padding-top: 0;
  padding-bottom: clamp(40px, 5vw, 64px);
  background: #fff;
}

.map-band iframe {
  display: block;
  width: min(1180px, 100%);
  height: clamp(340px, 48vw, 560px);
  margin: 0 auto;
  border: 1px solid var(--line);
}

.map-consent {
  width: min(1180px, 100%);
  min-height: clamp(340px, 48vw, 560px);
  margin: 0 auto;
  border: 1px solid rgba(176, 69, 120, 0.18);
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

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

.footer-main > p {
  order: 1;
}

.footer-social {
  order: 2;
  width: 34px;
  height: 34px;
  margin-left: -6px;
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.86);
}

.footer-links {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a,
.footer-links button {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.footer-links a:not(:last-child),
.footer-links button {
  margin-right: 22px;
}

.footer-links a:not(:last-child)::after,
.footer-links button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-50%);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: #f1d4ad;
}

.footer-credit {
  justify-self: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: #f1d4ad;
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  left: clamp(14px, 3vw, 34px);
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(176, 69, 120, 0.2);
  border-radius: 8px;
  background: rgba(247, 245, 239, 0.98);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(23, 32, 24, 0.22);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2,
.privacy-card h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 750;
}

.cookie-banner p,
.privacy-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(9, 12, 10, 0.72);
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.policy-card {
  width: min(860px, 100%);
}

.privacy-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(176, 69, 120, 0.18);
  border-radius: 8px;
  background: #fff;
}

.consent-option h3 {
  margin: 0;
  font-size: 1rem;
}

.consent-option p {
  margin-top: 4px;
}

.consent-option span {
  color: var(--petal-dark);
  font-weight: 750;
}

.consent-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--petal);
}

.policy-card section + section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(9, 12, 10, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px clamp(18px, 4vw, 56px) 22px;
    background: rgba(247, 245, 239, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 34px rgba(23, 32, 24, 0.08);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .nav-social {
    width: 42px;
    height: 42px;
    margin: 8px 0 0;
    padding: 0;
    border: 1px solid rgba(23, 32, 24, 0.2);
  }

  .section-grid,
  .feature-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    justify-self: start;
  }

  .contact-copy h2 {
    white-space: normal;
  }

  .contact-brand-image,
  .contact-panel {
    grid-column: 1;
    width: 100%;
  }

  .contact-brand-image {
    grid-row: 3;
  }

  .contact-panel {
    grid-row: 4;
  }

  .contact-band::before {
    grid-row: 3 / 5;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 148px;
    height: 68px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0) 72%);
  }

  .hero-content {
    padding: calc(var(--header-h) + 52px) 18px 288px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.9rem);
  }

  .hero-facts {
    right: 18px;
    left: 18px;
    width: auto;
    grid-template-columns: 1fr;
    transform: none;
  }

  .hero-facts::before {
    top: -34px;
    height: 68px;
  }

  .hero-facts div {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img,
  .feature-band img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .image-pair img:last-child {
    transform: none;
  }

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

  .services-band .section-heading {
    width: min(860px, 100%);
  }

  .service-title {
    min-height: 0;
    padding: 0;
  }

  .service-list p {
    padding: 0;
  }

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

  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-copy h2 {
    width: calc(100% - 36px);
    min-width: 0;
    max-width: calc(100% - 36px);
    margin-left: 18px;
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .contact-copy > p {
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
    margin-left: 18px;
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .contact-panel dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-actions-modern {
    grid-template-columns: 1fr;
  }

  .contact-actions-modern .map-button {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 242, 0.18);
  }

  .site-footer {
    display: grid;
  }

  .footer-main {
    display: grid;
    gap: 14px;
  }

  .footer-social {
    margin-left: 0;
  }

  .footer-links {
    justify-content: flex-start;
    margin-left: 0;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .cookie-actions .button {
    flex: 1 1 100%;
  }

  .consent-option {
    grid-template-columns: 1fr;
  }
}
