:root {
  --black: #070605;
  --black-soft: #11100e;
  --graphite: #1b1916;
  --beige: #e9ddc8;
  --beige-soft: #f5efe4;
  --champagne: #c9a45d;
  --gold: #e8c978;
  --muted: #b9ad99;
  --white: #fffaf1;
  --line: rgba(233, 221, 200, 0.16);
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--beige);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(7, 6, 5, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
}

.brand img,
.footer-logo {
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.06);
  color: var(--beige);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 76px 0 auto;
  display: grid;
  gap: 2px;
  padding: 18px 16px 24px;
  background: rgba(7, 6, 5, 0.96);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform 0.25s ease;
}

.nav-menu.is-open {
  transform: translateY(0);
}

.nav-menu a {
  padding: 14px 16px;
  color: var(--beige-soft);
  letter-spacing: 0;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid rgba(232, 201, 120, 0.55);
  color: var(--gold) !important;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.2), rgba(7, 6, 5, 0.38) 58%, var(--black) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.48), rgba(7, 6, 5, 0.04) 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 58px;
}

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(3.25rem, 12vw, 8.2rem);
}

h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 7vw, 4.6rem);
}

h3 {
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.28;
}

.hero-lead {
  max-width: 630px;
  color: var(--beige-soft);
  font-size: clamp(1.05rem, 3vw, 1.38rem);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--champagne);
}

.btn-secondary {
  border-color: rgba(245, 239, 228, 0.34);
  color: var(--beige-soft);
  background: rgba(255, 255, 255, 0.04);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.hero-meta span {
  border-top: 1px solid rgba(232, 201, 120, 0.42);
  padding-top: 9px;
  color: var(--beige-soft);
  min-width: 110px;
}

.section {
  padding: 78px 0;
}

.split,
.booking-layout,
.fleet-layout {
  display: grid;
  gap: 38px;
}

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

.about {
  background: var(--black);
}

.about-panel {
  background: var(--graphite);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-carousel {
  position: relative;
}

.about-carousel-track {
  position: relative;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: var(--black-soft);
}

.about-carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.6s ease;
}

.about-carousel-track img.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-carousel-controls {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.about-carousel-dots {
  display: inline-flex;
  gap: 8px;
  pointer-events: auto;
}

.about-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border-color: rgba(245, 239, 228, 0.48);
}

.about-carousel-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.035), rgba(255, 250, 241, 0.015));
}

.stats div {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 86px;
  padding: 22px 18px;
  text-align: center;
}

.stats div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(232, 201, 120, 0.34), transparent);
}

.stats strong {
  display: block;
  max-width: 190px;
  margin-inline: auto;
  color: var(--beige-soft);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.services {
  background: var(--beige-soft);
  color: var(--black);
}

.services h2,
.services h3 {
  color: var(--black);
}

.services .eyebrow {
  color: #8b6a2b;
}

.service-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  min-height: 272px;
  padding: 28px;
  background: #fffaf1;
  border: 1px solid rgba(17, 16, 14, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(17, 16, 14, 0.12);
}

.service-card p {
  color: #5f5648;
}

.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: #8b6a2b;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--black);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(201, 164, 93, 0.45);
  color: #8b6a2b;
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fleet {
  background: var(--black-soft);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--beige-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fleet-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--graphite);
}

.fleet-gallery img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.fleet-gallery figure:hover img {
  transform: scale(1.045);
}

.gallery-main {
  grid-column: 1 / -1;
}

.gallery-main img {
  aspect-ratio: 1.55 / 1;
}

.why {
  background: var(--black);
}

.why-item {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.03);
}

.why-item p {
  color: var(--muted);
}

.image-band {
  height: min(68vh, 620px);
  min-height: 330px;
  overflow: hidden;
}

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

.booking {
  background: var(--black-soft);
}

.certificates-page {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.86), var(--black) 360px),
    var(--black);
}

.wedding-page {
  background: var(--beige-soft);
}

.blog-page {
  background: var(--beige-soft);
}

.page-hero {
  padding: 150px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.04), transparent),
    var(--black-soft);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 6.4rem);
}

.page-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.blog-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.34), rgba(7, 6, 5, 0.62)),
    linear-gradient(90deg, rgba(7, 6, 5, 0.72), rgba(7, 6, 5, 0.18)),
    url("/img/mercedes-e-kokpit.jpg") center / cover no-repeat;
}

.blog-hero h1 {
  color: var(--white);
}

.blog-hero p:not(.eyebrow) {
  color: var(--beige-soft);
}

.blog-listing {
  background: var(--beige-soft);
}

.blog-grid {
  display: grid;
  gap: 18px;
}

.blog-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  background: #fffaf1;
  border: 1px solid rgba(17, 16, 14, 0.1);
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  border-color: rgba(139, 106, 43, 0.32);
  box-shadow: 0 24px 60px rgba(17, 16, 14, 0.12);
  transform: translateY(-4px);
}

.blog-card time {
  color: #8b6a2b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.blog-card p {
  color: #5f5648;
}

.blog-card a {
  align-self: end;
  margin-top: 10px;
  color: #8b6a2b;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card a:hover {
  color: var(--black);
}

.article-page {
  background: var(--beige-soft);
  color: var(--black);
}

.article-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 70px;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.28), rgba(7, 6, 5, 0.68)),
    linear-gradient(90deg, rgba(7, 6, 5, 0.74), rgba(7, 6, 5, 0.12)),
    var(--black-soft);
}

.article-hero-wedding {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.24), rgba(7, 6, 5, 0.68)),
    linear-gradient(90deg, rgba(7, 6, 5, 0.76), rgba(7, 6, 5, 0.14)),
    url("/img/wedding/mercedes-slub-klamki.jpeg") center / cover no-repeat;
}

.article-hero-transfer {
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.24), rgba(7, 6, 5, 0.68)),
    linear-gradient(90deg, rgba(7, 6, 5, 0.76), rgba(7, 6, 5, 0.14)),
    url("/img/mercedes-e-wnetrze-lewe.jpeg") center / cover no-repeat;
}

.article-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.article-hero time {
  color: var(--beige-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-content {
  background: var(--beige-soft);
}

.article-layout {
  max-width: 820px;
}

.article-back-link {
  display: table;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-back-link:hover {
  color: var(--beige-soft);
}

.article-layout p {
  color: #4f473b;
  font-size: 1.05rem;
  line-height: 1.85;
}

.policy-text {
  margin: 0;
  white-space: pre-wrap;
  color: #4f473b;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.8;
}

.article-layout h2 {
  margin-top: 54px;
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.article-layout h2::before {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 18px;
  background: #8b6a2b;
}

.article-cta {
  margin-top: 58px;
  padding: 30px;
  background: #fffaf1;
  border: 1px solid rgba(17, 16, 14, 0.1);
  box-shadow: 0 20px 54px rgba(17, 16, 14, 0.1);
}

.article-cta p {
  margin-bottom: 20px;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  line-height: 1.2;
}

.wedding-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.wedding-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 5, 0.34), rgba(7, 6, 5, 0.5) 58%, var(--black) 100%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.66), rgba(7, 6, 5, 0.12) 68%);
}

.wedding-hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 70px;
}

.wedding-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 8vw, 6.6rem);
}

.wedding-intro {
  display: grid;
  gap: 24px;
}

.wedding-page main > .section {
  background: var(--beige-soft);
  color: var(--black);
}

.wedding-page main > .section:nth-of-type(even) {
  background: #fffaf1;
}

.wedding-page main h2,
.wedding-page main h3 {
  color: var(--black);
}

.wedding-page .eyebrow {
  color: #8b6a2b;
}

.wedding-hero .eyebrow {
  color: var(--gold);
}

.wedding-page .section-copy p:not(.eyebrow),
.wedding-page .section-heading p:not(.eyebrow) {
  color: #5f5648;
}

.wedding-intro p,
.wedding-feature p,
.offer-list li {
  color: #5f5648;
}

.wedding-intro p {
  font-size: clamp(1.06rem, 1.8vw, 1.18rem);
  line-height: 1.78;
}

.wedding-feature-grid,
.wedding-gallery {
  display: grid;
  gap: 16px;
}

.wedding-feature {
  padding: 26px;
  border: 1px solid rgba(17, 16, 14, 0.1);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.08);
}

.wedding-feature span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.wedding-offer {
  background: var(--beige-soft);
  color: var(--black);
}

.wedding-offer h2 {
  color: var(--black);
}

.wedding-offer .eyebrow {
  color: #8b6a2b;
}

.offer-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding: 16px 18px 16px 42px;
  background: #fffaf1;
  border: 1px solid rgba(17, 16, 14, 0.1);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 27px;
  width: 10px;
  height: 10px;
  border: 1px solid #8b6a2b;
  transform: rotate(45deg);
}

.wedding-gallery figure {
  margin: 0;
  overflow: hidden;
  background: rgba(17, 16, 14, 0.08);
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.1);
}

.wedding-gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wedding-gallery figure:hover img {
  transform: scale(1.04);
}

.wedding-gallery .wide-photo {
  grid-column: 1 / -1;
}

.wedding-gallery .wide-photo img {
  aspect-ratio: 1.9 / 1;
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-card {
  min-height: 280px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(17, 16, 14, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-card:hover {
  transform: translateY(-4px);
}

.process-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1;
}

.process-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.process-card p {
  margin: 0;
  align-self: start;
}

.booking-process {
  background: var(--black);
  border-top: 1px solid rgba(232, 201, 120, 0.1);
  border-bottom: 1px solid rgba(232, 201, 120, 0.1);
}

.booking-process .section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.booking-process .process-card {
  background: rgba(255, 250, 241, 0.055);
  border-color: rgba(232, 201, 120, 0.2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.booking-process .process-card:hover {
  border-color: rgba(232, 201, 120, 0.46);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.booking-process .process-card span {
  color: var(--gold);
  background: rgba(232, 201, 120, 0.08);
  border: 1px solid rgba(232, 201, 120, 0.34);
}

.booking-process .process-card p {
  color: var(--muted);
}

.wedding-process {
  background: #fffaf1;
  color: var(--black);
}

.wedding-process h2,
.wedding-process h3 {
  color: var(--black);
}

.wedding-process .eyebrow {
  color: #8b6a2b;
}

.wedding-process .section-heading p:not(.eyebrow) {
  max-width: 640px;
  color: #5f5648;
}

.wedding-process-card {
  background: #f5efe4;
  border-color: rgba(17, 16, 14, 0.16);
  box-shadow: 0 18px 44px rgba(17, 16, 14, 0.08);
}

.wedding-process-card:hover {
  border-color: rgba(159, 122, 46, 0.45);
  box-shadow: 0 24px 60px rgba(17, 16, 14, 0.12);
}

.wedding-process-card span {
  color: #9f7a2e;
  background: #fffaf1;
  border: 1px solid rgba(159, 122, 46, 0.36);
}

.wedding-process-card p {
  color: #5f5648;
}

.wedding-directory-banner {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 34px;
}

.wedding-directory-banner p {
  margin: 0;
  color: #5f5648;
  font-size: 1.5rem;
}

.wedding-directory-banner a {
  display: block;
  max-width: 100%;
}

.wedding-directory-banner img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.wedding-directory-banner__mobile {
  display: none !important;
}

.wedding-page .booking {
  background: #fffaf1;
  color: var(--black);
}

.wedding-page .booking .contact-lines {
  color: #5f5648;
}

.wedding-page .booking .contact-lines a,
.wedding-page .booking .contact-lines .contact {
  color: #2f2a22;
  border-bottom-color: rgba(159, 122, 46, 0.35);
}

.wedding-page .booking .contact-social-row {
  color: #9f7a2e;
}

.wedding-page .booking .contact-social-row svg {
  fill: currentColor;
}

.wedding-page .booking .contact-lines a:hover {
  color: #8b6a2b;
}

.wedding-page .booking-form {
  background: var(--beige-soft);
  border: 1px solid rgba(17, 16, 14, 0.1);
  box-shadow: 0 24px 64px rgba(17, 16, 14, 0.1);
}

.certificates-gallery {
  display: grid;
  gap: 22px;
}

.certificate-card {
  display: grid;
  gap: 16px;
}

.certificate-frame {
  aspect-ratio: 210 / 297;
  display: grid;
  place-items: center;
  padding: 12px;
  background: linear-gradient(145deg, rgba(245, 239, 228, 0.06), rgba(245, 239, 228, 0.02));
  border: 1px solid rgba(232, 201, 120, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

button.certificate-frame {
  width: 100%;
  border-radius: 0;
  cursor: zoom-in;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

button.certificate-frame:hover,
button.certificate-frame:focus-visible {
  border-color: rgba(232, 201, 120, 0.62);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.certificate-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--beige-soft);
}

.certificate-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(232, 201, 120, 0.28);
  color: var(--muted);
  text-align: center;
}

.certificate-placeholder span {
  max-width: 180px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.certificate-card figcaption {
  color: var(--beige-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.certificate-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.certificate-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 6, 5, 0.9);
  cursor: zoom-out;
}

.certificate-modal-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 860px);
  max-height: 92vh;
  display: grid;
  gap: 14px;
}

.certificate-modal-content img {
  max-width: 100%;
  max-height: calc(92vh - 62px);
  justify-self: center;
  object-fit: contain;
  background: var(--beige-soft);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.certificate-modal-close {
  justify-self: end;
  border: 1px solid rgba(245, 239, 228, 0.28);
  background: rgba(255, 250, 241, 0.08);
  color: var(--beige-soft);
  padding: 10px 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.certificate-modal-close:hover,
.certificate-modal-close:focus-visible {
  border-color: rgba(232, 201, 120, 0.62);
  color: var(--gold);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  color: var(--beige-soft);
}

.contact-lines a,
.contact-lines .contact {
  width: fit-content;
  color: var(--white);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 450;
  line-height: 1.2;
}

.contact-lines a {
  border-bottom: 1px solid rgba(232, 201, 120, 0.35);
}

.contact-lines a:hover {
  color: var(--gold);
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 24px;
}

.contact-social-row img,
.contact-social-row svg {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.booking-form {
  padding: 24px;
  background: var(--beige-soft);
  color: var(--black);
}

.booking-form .btn:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

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

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: end center;
  padding: 18px;
}

.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 14, 0.62);
  backdrop-filter: blur(5px);
}

.cookie-consent__dialog {
  position: relative;
  width: min(100%, 620px);
  padding: 26px;
  background: var(--beige-soft);
  color: var(--black);
  border: 1px solid rgba(232, 201, 120, 0.32);
  box-shadow: 0 28px 80px rgba(17, 16, 14, 0.32);
}

.cookie-consent__dialog h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.cookie-consent__dialog p:not(.eyebrow) {
  margin: 0;
  color: #5f5648;
  line-height: 1.7;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cookie-consent__actions .btn {
  min-height: 46px;
}

.cookie-consent__actions .btn-secondary {
  color: var(--black);
  border-color: rgba(17, 16, 14, 0.32);
}

.cookie-consent__actions .btn-secondary:hover {
  color: var(--black);
  border-color: rgba(159, 122, 46, 0.68);
  background: rgba(159, 122, 46, 0.08);
}

.form-grid {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #342d22;
  font-size: 0.92rem;
  font-weight: 700;
}

.transfer-price-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #342d22;
  background: rgba(159, 122, 46, 0.08);
  border: 1px solid rgba(159, 122, 46, 0.24);
}

.transfer-price-field span {
  font-size: 0.86rem;
  font-weight: 700;
}

.transfer-price-values {
  display: grid;
  justify-items: end;
  gap: 3px;
  text-align: right;
}

.transfer-price-field strong {
  color: #8b6a2b;
  font-size: 1.18rem;
  line-height: 1.2;
}

.transfer-price-field small {
  color: #5f5648;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.is-hidden {
  display: none !important;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 16, 14, 0.16);
  background: #fffaf1;
  color: var(--black);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(201, 164, 93, 0.18);
}

.field-error {
  min-height: 18px;
  color: #9a2f1f;
  font-size: 0.78rem;
  font-weight: 600;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  margin-top: 18px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--champagne);
}

.privacy-tooltip {
  position: relative;
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px dotted rgba(139, 106, 43, 0.58);
  cursor: help;
  outline: none;
}

.privacy-tooltip__content {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  z-index: 10;
  width: min(360px, calc(100vw - 64px));
  padding: 14px 16px;
  background: var(--black-soft);
  color: var(--beige-soft);
  border: 1px solid rgba(232, 201, 120, 0.34);
  box-shadow: 0 18px 46px rgba(17, 16, 14, 0.28);
  font-size: 0.82rem;
  font-weight: 450;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.privacy-tooltip__content::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 100%;
  border: 7px solid transparent;
  border-top-color: var(--black-soft);
}

.privacy-tooltip:hover .privacy-tooltip__content,
.privacy-tooltip:focus-visible .privacy-tooltip__content {
  opacity: 1;
  transform: translateY(0);
}

.privacy-tooltip:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 164, 93, 0.18);
}

.booking-form .btn {
  width: 100%;
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #305b35;
  font-weight: 700;
}

.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer p,
.footer a,
.footer span {
  color: var(--muted);
}

.footer h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
}

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

.footer-logo {
  max-width: 150px;
  margin-bottom: 16px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

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

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

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

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

@media (min-width: 680px) {
  .service-grid,
  .why-grid,
  .certificates-gallery,
  .wedding-feature-grid,
  .wedding-gallery,
  .process-grid,
  .wedding-process-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    transform: none;
  }

  .nav-menu a {
    padding: 10px 11px;
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-left: 8px;
    padding-inline: 16px !important;
  }

  .hero-content {
    padding-bottom: 74px;
  }

  .section {
    padding: 118px 0;
  }

  .split,
  .booking-layout,
  .fleet-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 70px;
  }

  .section-heading {
    max-width: 760px;
    margin-bottom: 40px;
  }

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

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

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

  .process-grid,
  .wedding-process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .booking-form {
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .footer-logo {
    display: none;
  }

  .wedding-directory-banner__desktop {
    display: none !important;
  }

  .wedding-directory-banner__mobile {
    display: block !important;
  }

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

  .stats div {
    min-height: 68px;
  }

  .stats div + div::before {
    inset: 0 24px auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 201, 120, 0.34), transparent);
  }

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

  .gallery-main {
    grid-column: auto;
  }
}
