:root {
  --wine-950: #2b0d1c;
  --wine-900: #3c1226;
  --wine-800: #511a33;
  --wine-700: #6c2342;
  --wine-600: #8b3155;
  --rose-500: #b66a7f;
  --rose-300: #d8a3ad;
  --rose-150: #efd9db;
  --blush: #f8eeee;
  --cream: #fbf7f1;
  --ivory: #fffdf9;
  --ink: #221a1d;
  --muted: #776a6f;
  --gold: #c79b5f;
  --gold-light: #e8cfa5;
  --white: #fff;
  --green: #1e9b62;
  --border: rgba(72, 35, 50, 0.13);
  --shadow-sm: 0 12px 28px rgba(61, 22, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(61, 22, 39, 0.15);
  --shadow-lg: 0 42px 110px rgba(45, 12, 28, 0.25);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Manrope", "Segoe UI", sans-serif;
}

body[data-theme="rose"] {
  --wine-950: #5e1736;
  --wine-900: #742342;
  --wine-800: #8e3454;
  --wine-700: #a94d70;
  --wine-600: #c86689;
  --rose-500: #cc6f91;
  --rose-300: #e5b3c4;
  --rose-150: #f7e4ea;
  --blush: #fcf0f3;
  --cream: #fff8f9;
  --ivory: #fffafb;
  --ink: #2f1c25;
  --muted: #7c6470;
  --gold: #c99a55;
  --gold-light: #f0d7ad;
  --border: rgba(119, 35, 67, 0.14);
  --shadow-sm: 0 12px 28px rgba(112, 33, 65, 0.08);
  --shadow-md: 0 24px 70px rgba(112, 33, 65, 0.16);
  --shadow-lg: 0 42px 110px rgba(75, 16, 43, 0.25);
}

body[data-theme="emerald"] {
  --wine-950: #113b35;
  --wine-900: #174d45;
  --wine-800: #216257;
  --wine-700: #2c7667;
  --wine-600: #378d78;
  --rose-500: #4b9b85;
  --rose-300: #a9d2c4;
  --rose-150: #e0f0e9;
  --blush: #eef8f3;
  --cream: #f7fbf8;
  --ivory: #fbfefc;
  --ink: #1c2b27;
  --muted: #64736d;
  --gold: #caa260;
  --gold-light: #edd9b4;
  --border: rgba(29, 82, 70, 0.14);
  --shadow-sm: 0 12px 28px rgba(20, 70, 60, 0.08);
  --shadow-md: 0 24px 70px rgba(20, 70, 60, 0.16);
  --shadow-lg: 0 42px 110px rgba(14, 51, 43, 0.25);
}

body[data-theme="midnight"] {
  --wine-950: #23143f;
  --wine-900: #302056;
  --wine-800: #443071;
  --wine-700: #5d4794;
  --wine-600: #7962b6;
  --rose-500: #8d77c6;
  --rose-300: #c5b6e2;
  --rose-150: #e9e3f5;
  --blush: #f3f0fa;
  --cream: #faf9fe;
  --ivory: #fdfcff;
  --ink: #251f32;
  --muted: #6f687c;
  --gold: #c8a267;
  --gold-light: #ead7b2;
  --border: rgba(53, 38, 95, 0.14);
  --shadow-sm: 0 12px 28px rgba(40, 27, 79, 0.08);
  --shadow-md: 0 24px 70px rgba(40, 27, 79, 0.16);
  --shadow-lg: 0 42px 110px rgba(30, 18, 60, 0.25);
}

body[data-theme="custom"] {
  --wine-950: var(--custom-primary-dark, #2b0d1c);
  --wine-900: var(--custom-primary-dark, #3c1226);
  --wine-800: var(--custom-primary, #511a33);
  --wine-700: var(--custom-primary, #6c2342);
  --wine-600: var(--custom-accent, #8b3155);
  --rose-500: var(--custom-accent, #b66a7f);
  --rose-300: color-mix(in srgb, var(--custom-accent, #b66a7f) 46%, #ffffff);
  --rose-150: color-mix(in srgb, var(--custom-accent, #b66a7f) 16%, #ffffff);
  --blush: color-mix(in srgb, var(--custom-accent, #b66a7f) 9%, var(--custom-background, #fffdf9));
  --cream: var(--custom-background, #fbf7f1);
  --ivory: var(--custom-background, #fffdf9);
  --ink: var(--custom-ink, #221a1d);
  --muted: color-mix(in srgb, var(--custom-ink, #221a1d) 62%, var(--custom-background, #fffdf9));
  --gold: var(--custom-gold, #c79b5f);
  --gold-light: color-mix(in srgb, var(--custom-gold, #c79b5f) 58%, #ffffff);
  --border: color-mix(in srgb, var(--custom-primary, #6c2342) 18%, transparent);
  --shadow-sm: 0 12px 28px color-mix(in srgb, var(--custom-primary-dark, #2b0d1c) 9%, transparent);
  --shadow-md: 0 24px 70px color-mix(in srgb, var(--custom-primary-dark, #2b0d1c) 17%, transparent);
  --shadow-lg: 0 42px 110px color-mix(in srgb, var(--custom-primary-dark, #2b0d1c) 28%, transparent);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

.site-main--warm {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.site-main--clean {
  background: var(--white);
}

small {
  font-size: 12px;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stars .icon {
  fill: currentColor;
  stroke-width: 1.3;
}

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

.section {
  position: relative;
  padding: 48px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--wine-900);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.announcement {
  position: relative;
  z-index: 101;
  color: #f7e9e9;
  background: var(--wine-950);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.announcement p,
.announcement a {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
}

.announcement p .icon {
  color: var(--gold-light);
  font-size: 13px;
}

.announcement a {
  color: var(--gold-light);
  font-weight: 700;
}

.announcement a .icon {
  transition: transform 0.2s ease;
}

.announcement a:hover .icon {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid rgba(72, 35, 50, 0.12);
  box-shadow: 0 10px 30px rgba(61, 22, 39, 0.14), 0 2px 8px rgba(61, 22, 39, 0.06);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.94);
  border-color: var(--border);
  box-shadow: 0 14px 38px rgba(61, 22, 39, 0.19), 0 3px 10px rgba(61, 22, 39, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--wine-600), var(--wine-950));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50% 50% 50% 12px;
  box-shadow: 0 9px 22px rgba(63, 15, 38, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.27);
}

.brand__mark::after {
  position: absolute;
  z-index: -1;
  inset: -4px;
  content: "";
  border: 1px solid rgba(199, 155, 95, 0.6);
  border-radius: inherit;
  transform: rotate(7deg);
}

.brand__r {
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
  line-height: 1;
}

.brand__ray {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(232, 207, 165, 0.8);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(20px, 2.3vw, 34px);
  align-items: center;
  margin-left: auto;
  margin-right: 38px;
}

.main-nav a {
  position: relative;
  color: #4c4044;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--wine-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-call {
  display: none;
  gap: 7px;
  align-items: center;
  color: var(--wine-800);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--small {
  min-height: 43px;
  padding-inline: 20px;
  font-size: 12px;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine-700), var(--wine-950));
  box-shadow: 0 13px 28px rgba(82, 23, 51, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 16px 32px rgba(82, 23, 51, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
}

.btn--light {
  color: var(--wine-900);
  background: var(--ivory);
  box-shadow: 0 14px 30px rgba(24, 5, 13, 0.18);
}

.btn--outline {
  color: var(--wine-900);
  background: transparent;
  border-color: rgba(75, 24, 48, 0.28);
}

.btn--outline:hover {
  color: var(--white);
  background: var(--wine-900);
  border-color: var(--wine-900);
}

.btn--ghost {
  color: var(--wine-800);
  background: var(--blush);
  border-color: var(--border);
}

.btn--whatsapp {
  color: var(--white);
  background: #168a55;
}

.btn--full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  color: var(--wine-900);
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.menu-toggle .icon {
  width: 19px;
  height: 19px;
}

.menu-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: inline;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--wine-600);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

.hero {
  position: relative;
  margin-top: -78px;
  padding: 88px 0 0;
  background:
    radial-gradient(circle at 0 0, rgba(217, 167, 178, 0.25), transparent 34%),
    linear-gradient(135deg, #fffdfa 0%, #fbf3ef 52%, #f2e3df 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 88px;
  right: 42%;
  width: 1px;
  height: 74%;
  content: "";
  background: linear-gradient(transparent, rgba(107, 43, 69, 0.1), transparent);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  top: 140px;
  right: -120px;
  width: 410px;
  height: 410px;
  background: rgba(137, 55, 83, 0.08);
  border: 1px solid rgba(137, 55, 83, 0.06);
}

.hero__glow--two {
  bottom: 0;
  left: 28%;
  width: 140px;
  height: 140px;
  background: rgba(219, 180, 123, 0.18);
  filter: blur(35px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  gap: 48px;
  align-items: start;
  min-height: 580px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 24px 0 50px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(56px, 5.2vw, 78px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 em,
.section-heading h2 em,
.experience__content h2 em,
.faq h2 em,
.contact-strip h2 em,
.booking-intro h2 em {
  color: var(--rose-500);
  font-weight: 600;
}

.hero__lead {
  max-width: 545px;
  margin-bottom: 28px;
  color: #685b60;
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
}

.text-link > .icon {
  transition: transform 0.2s ease;
}

.text-link:hover > .icon {
  transform: translateX(4px);
}

.text-link--wine {
  color: var(--wine-700);
}

.play-dot {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--wine-700);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(103, 36, 65, 0.16);
  border-radius: 50%;
}

.hero__trust {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  color: var(--white);
  background: var(--wine-600);
  border: 2px solid var(--ivory);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
}

.avatar-stack span:nth-child(2) {
  background: #b07175;
}

.avatar-stack span:nth-child(3) {
  background: #c59e7b;
}

.hero__trust .stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 12px;
}

.hero__trust p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero__visual {
  position: relative;
  z-index: 1;
  align-self: end;
  padding-top: 10px;
  transform-style: preserve-3d;
}

.hero-card {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  background: #ddc4bc;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 260px 260px 32px 32px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-card::before {
  position: absolute;
  z-index: 3;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  pointer-events: none;
}

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

.hero-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(38, 10, 23, 0.7) 100%);
}

.hero-card__badge {
  position: absolute;
  z-index: 4;
  top: 96px;
  left: 72px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 15px 10px 9px;
  color: var(--wine-900);
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.badge-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold-light);
  background: var(--wine-900);
  border-radius: 50%;
}

.hero-card__badge span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-card__badge small {
  color: var(--rose-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card__badge strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 14px;
}

.hero-card__caption {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.hero-card__caption span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 12px;
}

.hero-card__caption p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.3;
  text-align: right;
}

.floating-tag {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  transform: translateZ(50px);
}

.floating-tag--top {
  top: 30%;
  right: -38px;
}

.floating-tag--bottom {
  bottom: 76px;
  left: -38px;
}

.floating-tag > span {
  color: var(--wine-800);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.floating-tag > .icon {
  width: 26px;
  height: 26px;
  color: var(--wine-600);
}

.floating-tag p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.25;
}

.floating-tag strong {
  font-family: var(--font-ui);
  font-size: 12px;
}

.floating-tag small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.hero__strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  min-height: 88px;
  color: var(--white);
  background: var(--wine-900);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -14px 40px rgba(61, 18, 38, 0.12);
}

.hero__strip div {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero__strip strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.hero__strip span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.services {
  background:
    radial-gradient(circle at 90% 8%, rgba(238, 211, 214, 0.36), transparent 23%),
    var(--ivory);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2,
.experience__content h2,
.faq h2,
.contact-strip h2,
.booking-intro h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.3vw, 61px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: end;
}

.section-heading--split > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.section-heading--center {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p {
  max-width: 610px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.66);
}

.feature-services {
  display: grid;
  grid-template-columns: 1.22fr 0.89fr 0.89fr;
  gap: 16px;
}

.service-feature {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 180px 180px 24px 24px;
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
}

.service-feature--large {
  border-radius: 24px 180px 24px 24px;
}

.service-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-feature--large img {
  object-position: 49% 28%;
}

.service-feature:hover img {
  transform: scale(1.04);
}

.service-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 9, 20, 0.02) 40%, rgba(33, 9, 20, 0.84) 100%);
}

.service-feature__number {
  position: absolute;
  top: 27px;
  right: 27px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--white);
  background: rgba(36, 10, 22, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.service-feature__content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--white);
}

.service-feature__content p {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-feature__content h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}

.service-feature__content a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
}

.service-feature__content a .icon {
  transition: transform 0.2s ease;
}

.service-feature__content a:hover .icon {
  transform: translateX(4px);
}

.service-menu {
  margin-top: 16px;
  padding: 36px 38px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-menu__top {
  display: flex;
  gap: 44px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.micro-label {
  color: var(--rose-500);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-menu h3 {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}

.service-menu__top > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.mini-service {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  min-height: 132px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.4);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-service:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.mini-service__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--wine-700);
  background: var(--rose-150);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 17px;
}

.mini-service h4 {
  margin: 1px 0 5px;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 19px;
}

.mini-service p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.mini-service .price {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--rose-500);
  font-size: 12px;
  font-weight: 700;
}

.bridal {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 10%, rgba(169, 81, 112, 0.21), transparent 30%),
    var(--wine-950);
  background-size: 70px 70px, 70px 70px, auto, auto;
  overflow: hidden;
}

.bridal::before,
.bridal::after {
  position: absolute;
  width: 330px;
  height: 550px;
  content: "";
  border: 1px solid rgba(232, 207, 165, 0.12);
  border-radius: 180px 180px 0 0;
  pointer-events: none;
}

.bridal::before {
  top: 60px;
  left: -180px;
}

.bridal::after {
  right: -180px;
  bottom: 50px;
  transform: rotate(180deg);
}

.bridal__orb {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 640px;
  height: 640px;
  background: rgba(133, 44, 78, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  transform: translateX(-50%);
}

.bridal .section-heading h2 {
  color: var(--white);
}

.bridal-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 930px;
  margin: 0 auto 38px;
}

.bridal-journey::before {
  position: absolute;
  top: 48px;
  right: 16%;
  left: 16%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(232, 207, 165, 0.1), rgba(232, 207, 165, 0.5), rgba(232, 207, 165, 0.1));
}

.bridal-journey article {
  position: relative;
  padding: 0 25px;
  text-align: center;
}

.bridal-journey article > span {
  position: absolute;
  top: 11px;
  left: calc(50% + 28px);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 12px;
}

.journey-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(232, 207, 165, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 15px 40px rgba(0, 0, 0, 0.16);
}

.journey-icon .icon {
  width: 28px;
  height: 28px;
}

.bridal-journey h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.bridal-journey p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.7;
}

.package-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 38px 34px 30px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.package-card--featured {
  color: var(--white);
  background: linear-gradient(150deg, var(--wine-600), var(--wine-900));
  border-color: rgba(232, 207, 165, 0.35);
  transform: translateY(-14px);
}

.popular-chip {
  position: absolute;
  top: -14px;
  left: 50%;
  display: inline-flex;
  min-width: 120px;
  min-height: 29px;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: var(--wine-900);
  background: var(--gold-light);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.popular-chip .icon {
  width: 11px;
  height: 11px;
}

.package-card__head > span {
  color: var(--rose-500);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-card--featured .package-card__head > span {
  color: var(--gold-light);
}

.package-card__head h3 {
  margin: 8px 0 15px;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 600;
}

.package-card--featured .package-card__head h3 {
  color: var(--white);
}

.package-card__head p {
  display: flex;
  gap: 9px;
  align-items: baseline;
  margin: 0 0 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--border);
}

.package-card--featured .package-card__head p {
  border-color: rgba(255, 255, 255, 0.14);
}

.package-card__head strong {
  color: var(--wine-700);
  font-family: var(--font-display);
  font-size: 29px;
}

.package-card--featured .package-card__head strong {
  color: var(--gold-light);
}

.package-card__head small {
  color: var(--muted);
  font-size: 12px;
}

.package-card--featured .package-card__head small {
  color: rgba(255, 255, 255, 0.55);
}

.package-card ul {
  display: grid;
  min-height: 196px;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.package-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #66595e;
  font-size: 12px;
}

.package-card--featured li {
  color: rgba(255, 255, 255, 0.76);
}

.package-card li .icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: var(--rose-500);
}

.package-card--featured li .icon {
  color: var(--gold-light);
}

.package-card--featured .btn--light {
  color: var(--wine-900);
}

.package-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  text-align: center;
}

.bridal__cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.experience {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(85, 27, 52, 0.06) 50%, transparent 50.1%),
    var(--cream);
}

.experience__grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: clamp(58px, 7vw, 96px);
  align-items: center;
}

.experience__media {
  position: relative;
  max-width: 450px;
  padding: 18px 18px 0 0;
  transform-style: preserve-3d;
}

.experience__media img {
  position: relative;
  z-index: 1;
  height: 620px;
  object-fit: cover;
  border-radius: 220px 220px 24px 24px;
  box-shadow: var(--shadow-lg);
}

.experience__frame {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: 1px solid rgba(199, 155, 95, 0.5);
  border-radius: 220px 220px 24px 24px;
}

.experience__seal {
  position: absolute;
  z-index: 2;
  right: -47px;
  bottom: 60px;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  color: var(--wine-900);
  background: var(--ivory);
  border: 1px solid var(--rose-150);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: translateZ(44px);
}

.experience__seal::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px dashed var(--rose-300);
  border-radius: 50%;
}

.experience__seal .icon {
  position: absolute;
  top: 24px;
  width: 17px;
  height: 17px;
  color: var(--rose-500);
}

.experience__seal strong {
  margin-top: 17px;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.2;
}

.experience__content > p {
  max-width: 560px;
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.promise-list {
  display: grid;
  margin-bottom: 26px;
}

.promise-list article {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid var(--border);
}

.promise-list article:last-child {
  border-bottom: 1px solid var(--border);
}

.promise-list article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--rose-500);
  background: var(--rose-150);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
  font-style: italic;
}

.promise-list h3 {
  margin-bottom: 5px;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.promise-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.stories {
  background:
    radial-gradient(circle at 80% 50%, rgba(229, 196, 200, 0.38), transparent 25%),
    var(--ivory);
}

.stories__intro {
  display: flex;
  max-width: 820px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: -22px 0 30px;
}

.stories__intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.stories__intro .text-link {
  flex: 0 0 auto;
}

.rating-summary {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-self: end;
}

.rating-summary > strong {
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 49px;
  line-height: 1;
}

.rating-summary .stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 12px;
}

.rating-summary p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
}

.testimonial-card {
  position: relative;
  min-height: 335px;
  padding: 38px 32px 30px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px 90px 22px 22px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card--accent {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(232, 207, 165, 0.16), transparent 35%),
    linear-gradient(145deg, var(--wine-700), var(--wine-950));
  border-color: transparent;
}

.quote-mark {
  height: 56px;
  color: var(--rose-300);
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 1;
}

.testimonial-card > p {
  color: #5c4e53;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.55;
}

.testimonial-card--accent > p {
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-card__person {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 32px;
  display: flex;
  gap: 11px;
  align-items: center;
}

.testimonial-card__person > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--wine-700);
  background: var(--rose-150);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
}

.testimonial-card__person div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testimonial-card__person strong {
  font-size: 12px;
}

.testimonial-card__person small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-card--accent .testimonial-card__person small {
  color: rgba(255, 255, 255, 0.48);
}

.testimonial-note {
  margin: 20px 0 0;
  color: #9a8d91;
  font-size: 12px;
  text-align: center;
}

.booking {
  padding-bottom: 48px;
  background:
    radial-gradient(circle at 20% 20%, rgba(172, 77, 111, 0.2), transparent 30%),
    var(--wine-950);
}

.booking-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 670px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.booking-intro {
  position: relative;
  padding: 48px 42px 42px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--wine-800);
  overflow: hidden;
}

.booking-intro::after {
  position: absolute;
  right: -85px;
  bottom: -130px;
  width: 300px;
  height: 420px;
  content: "";
  border: 1px solid rgba(232, 207, 165, 0.17);
  border-radius: 160px 160px 0 0;
  transform: rotate(-20deg);
}

.booking-intro h2 {
  color: var(--white);
  font-size: clamp(40px, 4vw, 54px);
}

.booking-intro > p {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.booking-benefits {
  display: grid;
  gap: 15px;
}

.booking-benefits > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 13px;
  align-items: center;
}

.booking-benefits > div > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 207, 165, 0.19);
  border-radius: 50%;
}

.booking-benefits p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.booking-benefits strong {
  font-size: 12px;
}

.booking-benefits small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.booking-help {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 36px;
  left: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-help > small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.booking-help a {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
}

.booking-form-wrap {
  position: relative;
  padding: 42px 48px 44px;
  background: var(--ivory);
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.form-progress > i {
  flex: 1;
  height: 1px;
  margin: 0 12px 18px;
  background: var(--border);
}

.progress-step {
  display: flex;
  min-width: 74px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  color: #aa9da1;
  font-family: var(--font-ui);
  font-size: 12px;
}

.progress-step > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.progress-step.is-active,
.progress-step.is-complete {
  color: var(--wine-700);
}

.progress-step.is-active > span,
.progress-step.is-complete > span {
  color: var(--white);
  background: var(--wine-700);
  border-color: var(--wine-700);
  box-shadow: 0 8px 18px rgba(108, 35, 66, 0.2);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
  animation: form-in 0.32s ease;
}

@keyframes form-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading > span {
  color: var(--rose-500);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 4px;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field > span,
.choice-field legend {
  color: #5d4e53;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
}

.field > span small {
  color: #a4979b;
  font-weight: 500;
}

.field > span b,
.choice-field legend b {
  color: var(--rose-500);
}

.dynamic-field-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.dynamic-checkbox-field {
  min-width: 0;
}

.dynamic-checkbox-field .consent {
  margin-top: 0;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.dynamic-checkbox-field.has-error .consent {
  border-color: #bd3e4c;
}

.dynamic-checkbox-field.has-error .field-error {
  display: block;
  margin-top: 6px;
}

.dynamic-checkbox-field .dynamic-field-help {
  display: block;
  margin-top: 6px;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: 0;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 86px;
  padding-block: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(182, 106, 127, 0.1);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #bd3e4c;
}

.field-error,
.consent-error {
  display: none;
  color: #b62d40;
  font-size: 12px;
}

.field.has-error .field-error,
.consent-error.is-visible {
  display: block;
}

.input-prefix {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-prefix:focus-within {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(182, 106, 127, 0.1);
}

.field.has-error .input-prefix {
  border-color: #bd3e4c;
}

.input-prefix b {
  padding: 0 10px 0 14px;
  color: var(--wine-800);
  border-right: 1px solid var(--border);
  font-size: 12px;
}

.input-prefix input {
  border: 0;
  box-shadow: none !important;
}

.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 8px;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice-row label {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row label > span {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 12px 16px 12px 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  cursor: pointer;
}

.choice-row label > span::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 15px;
  height: 15px;
  content: "";
  border: 1px solid #b9aaae;
  border-radius: 50%;
  transform: translateY(-50%);
}

.choice-row input:checked + span {
  background: var(--blush);
  border-color: var(--rose-500);
}

.choice-row input:checked + span::before {
  background: var(--wine-700);
  border: 4px solid var(--blush);
  box-shadow: 0 0 0 1px var(--wine-700);
}

.choice-row strong {
  color: var(--wine-900);
  font-size: 12px;
}

.choice-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.form-actions--end {
  justify-content: flex-end;
}

.form-actions .btn {
  min-width: 145px;
}

.booking-review {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
  padding: 15px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.review-item {
  padding: 8px 12px;
}

.review-item span {
  display: block;
  color: #9b8e92;
  font-size: 12px;
  text-transform: uppercase;
}

.review-item strong {
  display: block;
  margin-top: 3px;
  color: var(--wine-900);
  font-size: 12px;
}

.advance-note {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  color: var(--wine-900);
  background: #f8f0e5;
  border: 1px solid #ead4b4;
  border-radius: 12px;
}

.advance-note > .icon {
  width: 23px;
  height: 23px;
  color: var(--gold);
}

.advance-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.advance-note strong {
  font-size: 12px;
}

.advance-note small {
  margin-top: 2px;
  color: #857261;
  font-size: 12px;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.consent input {
  accent-color: var(--wine-700);
}

.booking-success {
  display: none;
  height: 100%;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-success.is-visible {
  display: flex;
  animation: form-in 0.35s ease;
}

.success-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--rose-500), var(--wine-800));
  border: 8px solid var(--rose-150);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(91, 28, 55, 0.22);
}

.success-icon .icon {
  width: 29px;
  height: 29px;
}

.booking-success .eyebrow {
  margin-bottom: 10px;
}

.booking-success h3 {
  margin-bottom: 13px;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
}

.booking-success > p {
  max-width: 470px;
  color: var(--muted);
  font-size: 12px;
}

.booking-success > small {
  margin-top: 18px;
  color: #a19599;
  font-size: 12px;
}

.success-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.faq {
  background: var(--cream);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 125px;
  margin: 0;
}

.faq .section-heading > p {
  max-width: 440px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 13px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion details {
  border-bottom: 1px solid var(--border);
}

.accordion summary {
  display: flex;
  min-height: 86px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--wine-600);
  background: var(--rose-150);
  border-radius: 50%;
}

.accordion summary .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.accordion details[open] summary .icon {
  transform: rotate(180deg);
}

.accordion details p {
  max-width: 650px;
  margin: -8px 50px 25px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.contact-strip {
  padding: 48px 0;
  background:
    radial-gradient(circle at 80% 0, rgba(214, 157, 172, 0.22), transparent 30%),
    var(--blush);
}

.contact-strip__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.contact-strip__copy {
  display: grid;
  max-width: 380px;
  gap: 10px;
}

.contact-strip__copy > span {
  color: var(--rose-500);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-strip__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.contact-strip h2 {
  max-width: 690px;
  font-size: clamp(39px, 4.2vw, 56px);
  text-align: right;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(93, 39, 63, 0.14);
  border-left: 1px solid rgba(93, 39, 63, 0.14);
}

.contact-card {
  display: grid;
  grid-template-columns: 50px 1fr 28px;
  gap: 14px;
  align-items: center;
  min-height: 122px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.38);
  border-right: 1px solid rgba(93, 39, 63, 0.14);
  border-bottom: 1px solid rgba(93, 39, 63, 0.14);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  z-index: 1;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.contact-card > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--wine-700);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.contact-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-card small {
  color: var(--rose-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: 5px;
  overflow: hidden;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: start;
  margin-top: 32px;
  padding: 34px;
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid rgba(93, 39, 63, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.contact-form-copy {
  padding: 18px 4px;
}

.contact-form-copy h3 {
  margin: 18px 0 12px;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.04;
}

.contact-form-copy h3 em {
  color: var(--rose-500);
  font-weight: 500;
}

.contact-form-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contact-form-card {
  min-height: 380px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.contact-form-card .btn {
  margin-top: 22px;
}

.contact-form-success {
  display: none;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-form-success.is-visible {
  display: flex;
}

.contact-form-success > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--wine-700);
  border-radius: 50%;
}

.contact-form-success h3 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 30px;
}

.contact-form-success p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-arrow {
  color: var(--rose-500);
  transition: transform 0.2s ease;
}

.contact-card:hover .contact-arrow {
  transform: translateX(4px);
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--wine-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  padding-bottom: 42px;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.46);
}

.footer-brand > p {
  max-width: 300px;
  margin: 25px 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links strong {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.7;
}

.footer-links p {
  white-space: pre-line;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 52px;
  gap: 9px;
  align-items: center;
  padding: 0 18px;
  color: var(--white);
  background: #168a55;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(13, 104, 63, 0.27);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float .icon {
  width: 21px;
  height: 21px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 92px;
  max-width: 320px;
  padding: 13px 17px;
  color: var(--white);
  background: var(--wine-900);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.home-pathways {
  background:
    radial-gradient(circle at 8% 15%, rgba(214, 157, 172, 0.18), transparent 25%),
    var(--cream);
}

.home-pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-pathway {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 30px;
  color: var(--wine-900);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-pathway:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.home-pathway > span {
  color: var(--rose-500);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
}

.home-pathway h3 {
  margin: 20px 0 10px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}

.home-pathway p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-pathway b {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  padding-top: 26px;
  font-family: var(--font-ui);
  font-size: 12px;
}

.home-pathway--wine {
  color: var(--white);
  background: linear-gradient(145deg, var(--wine-700), var(--wine-950));
  border-color: rgba(232, 207, 165, 0.22);
}

.home-pathway--wine > span {
  color: var(--gold-light);
}

.home-pathway--wine p {
  color: rgba(255, 255, 255, 0.66);
}

.home-featured-services {
  background:
    radial-gradient(circle at 92% 8%, rgba(182, 106, 127, 0.13), transparent 28%),
    var(--ivory);
}

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

.home-featured-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-featured-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.home-featured-card__image {
  position: relative;
  display: block;
  height: 330px;
  overflow: hidden;
}

.home-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-featured-card:hover .home-featured-card__image img {
  transform: scale(1.04);
}

.home-featured-card__image > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--wine-900);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
}

.home-featured-card__content {
  padding: 23px;
}

.home-featured-card__content > span {
  color: var(--rose-500);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
}

.home-featured-card__content h3 {
  margin: 8px 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.1;
}

.home-featured-card__content > p {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-featured-card__content > div {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.home-featured-card__content strong {
  color: var(--wine-700);
  font-size: 13px;
}

.home-featured-card__content a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--wine-900);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
}

.home-featured-services__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.legal-page {
  background:
    radial-gradient(circle at 80% 5%, rgba(214, 157, 172, 0.2), transparent 28%),
    var(--cream);
}

.legal-page__content {
  max-width: 820px;
}

.legal-page h1 {
  max-width: 650px;
  margin: 0 0 22px;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.legal-page h1 em {
  color: var(--rose-500);
}

.legal-page__lead {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-page article {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.legal-page article:last-child {
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  margin: 0 0 8px;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
}

.legal-page article p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-page article a {
  color: var(--wine-700);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

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

.reveal[data-tilt].is-visible {
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition: opacity 0.7s ease, transform 0.18s ease-out;
}

@media (min-width: 1181px) {
  .nav-call {
    display: flex;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
    margin-right: 22px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.6vw, 74px);
  }

  .floating-tag--top {
    right: -18px;
  }

  .floating-tag--bottom {
    left: -18px;
  }

  .section-heading--split {
    gap: 50px;
  }

  .feature-services {
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
  }

  .service-feature {
    min-height: 520px;
  }

  .booking-shell {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .booking-form-wrap {
    padding-inline: 38px;
  }
}

@media (min-width: 901px) and (max-height: 900px) {
  .nav-wrap {
    height: 72px;
  }

  .hero {
    margin-top: -72px;
    padding-top: 82px;
  }

  .hero__glow--one {
    top: 105px;
  }

  .hero__grid {
    min-height: 540px;
    gap: 44px;
    align-items: start;
  }

  .hero__content {
    padding: 12px 0 30px;
  }

  .hero__content .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 560px;
    margin-bottom: 18px;
    font-size: clamp(54px, 4.45vw, 68px);
  }

  .hero__lead {
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .hero__actions {
    gap: 18px;
  }

  .hero__trust {
    margin-top: 22px;
  }

  .hero__visual {
    padding-top: 8px;
  }

  .hero-card {
    min-height: 500px;
  }

  .hero-card__badge {
    top: 96px;
    left: 72px;
  }

  .hero__strip {
    min-height: 82px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .section {
    padding: 48px 0;
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    top: 118px;
    right: 18px;
    left: 18px;
    display: flex;
    gap: 0;
    align-items: stretch;
    flex-direction: column;
    margin: 0;
    padding: 14px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    padding-top: 118px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__content {
    max-width: 650px;
    padding: 28px 0 16px;
    text-align: center;
  }

  .hero__content .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .hero-card {
    min-height: 540px;
  }

  .hero__strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }

  .hero__strip div {
    min-height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero__strip div:nth-child(2) {
    border-right: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .service-feature--large {
    grid-column: 1 / -1;
    min-height: 620px;
    border-radius: 28px 220px 28px 28px;
  }

  .service-feature {
    min-height: 560px;
  }

  .service-menu__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

  .bridal-journey {
    max-width: 760px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 24px;
    margin-inline: auto;
  }

  .package-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: center;
  }

  .package-card__head p {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .package-card ul {
    min-height: 0;
    margin-bottom: 70px;
  }

  .package-card .btn {
    position: absolute;
    right: 34px;
    bottom: 28px;
    width: calc(60% - 24px);
  }

  .package-card--featured {
    transform: none;
  }

  .experience__grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
  }

  .experience__media img {
    height: 560px;
  }

  .experience__seal {
    right: -35px;
  }

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

  .testimonial-card--accent {
    grid-column: 1 / -1;
  }

  .booking-shell {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    padding-bottom: 112px;
  }

  .booking-form-wrap {
    padding: 42px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq .section-heading {
    position: static;
  }

  .contact-strip__intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-strip h2 {
    text-align: left;
  }

  .stories__intro {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -8px;
  }

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

  .contact-form-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-pathway {
    min-height: 220px;
    padding: 24px;
  }

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

  .home-featured-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 88px;
  }

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

  .section {
    padding: 40px 0;
  }

  .announcement__inner {
    min-height: 32px;
  }

  .announcement p {
    font-size: 12px;
  }

  .announcement a {
    font-size: 12px;
  }

  .nav-wrap {
    height: 70px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__r {
    font-size: 22px;
  }

  .brand__text strong {
    font-size: 19px;
  }

  .brand__text small {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .nav-actions > .btn {
    display: none;
  }

  .main-nav {
    top: 112px;
    right: 14px;
    left: 14px;
  }

  .hero {
    margin-top: -70px;
    padding-top: 100px;
  }

  .hero__content {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 13.5vw, 58px);
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__trust {
    margin-top: 24px;
  }

  .hero-card {
    min-height: 440px;
    border-radius: 180px 180px 24px 24px;
  }

  .hero-card img {
    object-position: 60% center;
  }

  .hero-card__badge {
    top: 76px;
    left: 42px;
  }

  .hero-card__caption {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .floating-tag {
    padding: 9px 12px;
  }

  .floating-tag--top {
    top: 37%;
    right: -4px;
  }

  .floating-tag--bottom {
    bottom: 76px;
    left: -3px;
  }

  .floating-tag > span {
    font-size: 20px;
  }

  .hero__strip {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }

  .hero__strip div {
    gap: 8px;
    padding-inline: 8px;
    text-align: center;
  }

  .hero__strip span {
    font-size: 12px;
  }

  .home-pathways__grid {
    grid-template-columns: 1fr;
  }

  .home-featured-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .home-featured-card__image {
    height: 380px;
  }

  .home-pathway {
    min-height: 0;
  }

  .legal-page h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .legal-page__lead {
    font-size: 14px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .experience__content h2,
  .faq h2,
  .contact-strip h2,
  .booking-intro h2 {
    font-size: clamp(38px, 11vw, 49px);
  }

  .feature-services {
    grid-template-columns: 1fr;
  }

  .service-feature--large {
    grid-column: auto;
  }

  .service-feature,
  .service-feature--large {
    min-height: 510px;
    border-radius: 160px 160px 22px 22px;
  }

  .service-feature--large img {
    object-position: center 25%;
  }

  .service-menu {
    padding: 26px 20px;
  }

  .service-menu h3 {
    font-size: 31px;
  }

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

  .mini-service {
    min-height: 118px;
  }

  .bridal-journey {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bridal-journey::before {
    top: 50px;
    right: auto;
    bottom: 50px;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .bridal-journey article {
    z-index: 1;
    max-width: 330px;
    margin-inline: auto;
    padding: 0 15px;
    background: var(--wine-950);
  }

  .package-card {
    display: block;
    padding: 38px 27px 28px;
  }

  .package-card__head p {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
  }

  .package-card ul {
    margin-bottom: 25px;
  }

  .package-card .btn {
    position: static;
    width: 100%;
  }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .experience__media {
    width: calc(100% - 25px);
    margin-inline: auto;
  }

  .experience__media img {
    height: 500px;
  }

  .experience__seal {
    right: -25px;
    bottom: 40px;
    width: 108px;
    height: 108px;
  }

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

  .testimonial-card--accent {
    grid-column: auto;
  }

  .testimonial-card {
    min-height: 310px;
  }

  .booking {
    padding-inline: 0;
  }

  .booking-shell {
    border-radius: 26px;
  }

  .booking-intro {
    padding: 38px 24px 108px;
  }

  .booking-help {
    right: 24px;
    left: 24px;
  }

  .booking-form-wrap {
    padding: 32px 20px 36px;
  }

  .progress-step small {
    display: none;
  }

  .form-progress {
    margin-bottom: 28px;
  }

  .form-progress > i {
    margin-bottom: 0;
  }

  .field-grid,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    gap: 10px;
  }

  .form-actions .btn {
    min-width: 0;
    flex: 1;
    padding-inline: 15px;
    font-size: 12px;
  }

  .booking-review {
    grid-template-columns: 1fr;
  }

  .success-actions {
    width: 100%;
    flex-direction: column;
  }

  .success-actions .btn {
    width: 100%;
  }

  .accordion summary {
    min-height: 72px;
    font-size: 17px;
  }

  .contact-strip {
    padding: 44px 0;
  }

  .contact-form-shell {
    padding: 20px;
    border-radius: 20px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-card {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    min-height: 105px;
    padding: 20px 16px;
  }

  .contact-card > span {
    width: 46px;
    height: 46px;
  }

  .contact-card strong {
    font-size: 14px;
  }

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

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .toast {
    right: 16px;
    bottom: 80px;
    left: 16px;
    max-width: none;
  }
}

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

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

/* Managed gallery */
.gallery-page {
  overflow: hidden;
}

.gallery-page .section-heading {
  margin-bottom: 38px;
}

.gallery-page h1 {
  max-width: 680px;
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.gallery-page h1 em {
  color: var(--rose-500);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 108px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--blush);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-card--1,
.gallery-card--4 {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-card--2,
.gallery-card--5 {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-card--3 {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(31, 12, 24, 0.8));
}

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

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  gap: 3px;
  color: var(--white);
}

.gallery-card figcaption span {
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card figcaption strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.gallery-empty {
  display: grid;
  min-height: 300px;
  padding: 38px;
  place-items: center;
  align-content: center;
  color: var(--muted);
  background: var(--cream);
  border: 1px dashed var(--rose-300);
  border-radius: var(--radius-lg);
  text-align: center;
}

.gallery-empty > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--wine-700);
  background: var(--rose-150);
  border-radius: 50%;
}

.gallery-empty h2 {
  margin: 0 0 4px;
  color: var(--wine-900);
  font-family: var(--font-display);
  font-size: 28px;
}

.gallery-empty p {
  margin: 0;
  font-size: 13px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-credit strong {
  color: var(--gold-light);
  font-weight: 800;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-card--1,
  .gallery-card--2,
  .gallery-card--3,
  .gallery-card--4,
  .gallery-card--5 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .gallery-page h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
    gap: 12px;
  }

  .footer-bottom__links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .gallery-card figcaption {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }
}
