:root {
  --ade-black: #030303;
  --ade-ink: #090807;
  --ade-panel: #11100e;
  --ade-panel-soft: #171310;
  --ade-white: #faf5ea;
  --ade-muted: #c9c0b4;
  --ade-dim: #8b8175;
  --ade-gold: #9a7338;
  --ade-gold-soft: #b99a66;
  --ade-gold-deep: #60451f;
  --ade-gold-lit: #d2bc8a;
  --ade-red: #b20f18;
  --ade-red-deep: #5f060b;
  --ade-border: rgba(167, 122, 53, 0.34);
  --ade-border-soft: rgba(255, 255, 255, 0.08);
  --ade-header-height: 96px;
  --ade-max: 1180px;
  --ade-serif: "Cormorant Garamond", Georgia, serif;
  --ade-script: Allura, "Segoe Script", "Brush Script MT", cursive;
  --ade-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --ade-rounded: ui-rounded, "SF Pro Rounded", "Avenir Next", Inter, "Helvetica Neue", Arial, sans-serif;
  --ade-display: "Trajan Pro", Cinzel, "Cormorant SC", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(118deg, rgba(178, 15, 24, 0.10), transparent 34%),
    linear-gradient(62deg, transparent 58%, rgba(196, 154, 69, 0.08)),
    var(--ade-black);
  color: var(--ade-white);
  font-family: var(--ade-sans);
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  opacity: 0.18;
}

body::after {
  position: fixed;
  inset: -18%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 30%, rgba(154, 115, 56, 0.052) 38%, transparent 50%),
    linear-gradient(68deg, transparent 0 42%, rgba(178, 15, 24, 0.055) 52%, transparent 64%),
    repeating-linear-gradient(102deg, transparent 0 92px, rgba(250, 245, 234, 0.018) 94px 95px, transparent 97px 180px);
  content: "";
  filter: blur(10px);
  opacity: 0.72;
  transform: translate3d(-2%, 0, 0) rotate(-2deg);
  animation: site-background-drift 24s ease-in-out infinite alternate;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ade-white);
  color: var(--ade-black);
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--ade-header-height);
  padding: 12px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.90));
  border-bottom: 1px solid var(--ade-border);
  backdrop-filter: blur(18px);
}

.site-logo,
.footer-logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 112px;
  background: transparent;
}

.site-logo img,
.footer-logo img {
  display: block;
  width: 100%;
  mix-blend-mode: screen;
  filter:
    saturate(1.08)
    contrast(1.08)
    drop-shadow(0 0 14px rgba(178, 15, 24, 0.18));
  mask-image: radial-gradient(ellipse at 50% 46%, #000 0 48%, rgba(0, 0, 0, 0.74) 62%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 46%, #000 0 48%, rgba(0, 0, 0, 0.74) 62%, transparent 82%);
}

.footer-logo img {
  opacity: 0.96;
  filter:
    saturate(1.08)
    contrast(1.08)
    drop-shadow(0 0 18px rgba(178, 15, 24, 0.16));
}

.primary-nav {
  position: relative;
  z-index: 2;
  justify-self: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 42px);
}

.primary-nav a,
.nav-cta,
.nav-whatsapp,
.button,
.text-link,
.companion-card a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a,
.nav-cta,
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--ade-white);
}

.primary-nav a {
  position: relative;
  padding: 4px 0;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--ade-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.42);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ade-gold-soft);
}

.nav-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}

.nav-whatsapp {
  gap: 8px;
  min-width: 136px;
  padding: 0 16px;
  border: 1px solid rgba(37, 211, 102, 0.46);
  color: var(--ade-white);
  background: rgba(3, 3, 3, 0.30);
}

.nav-whatsapp__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.68);
}

.nav-cta {
  min-width: 132px;
  padding: 0 22px;
  border: 1px solid var(--ade-gold);
  color: var(--ade-white);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
  border-color: var(--ade-red);
  background: var(--ade-red);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--ade-border);
  background: transparent;
  color: var(--ade-white);
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero,
.section-panel,
.section-dark {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - var(--ade-header-height));
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(72px, 10vw, 140px) clamp(22px, 6vw, 86px);
  border-bottom: 1px solid var(--ade-border);
}

.hero::before {
  position: absolute;
  inset: clamp(18px, 2.5vw, 34px);
  z-index: 2;
  border: 1px solid rgba(154, 115, 56, 0.24);
  background:
    linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.16), transparent) top / 72% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.13), transparent) bottom / 68% 1px no-repeat;
  box-shadow:
    inset 0 0 80px rgba(154, 115, 56, 0.035),
    0 0 120px rgba(178, 15, 24, 0.05);
  content: "";
  pointer-events: none;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__silk {
  position: absolute;
  width: 62vw;
  height: 32vw;
  min-width: 520px;
  min-height: 260px;
  border-radius: 18% 72% 28% 68% / 46% 18% 78% 34%;
  background:
    linear-gradient(106deg, transparent 0 28%, rgba(255, 255, 255, 0.052) 36%, transparent 43%),
    linear-gradient(115deg, transparent 0 32%, rgba(178, 15, 24, 0.15) 42%, rgba(184, 135, 47, 0.07) 49%, transparent 62%),
    repeating-linear-gradient(118deg, transparent 0 22px, rgba(250, 245, 234, 0.025) 23px 24px, transparent 25px 42px);
  filter: blur(16px);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.hero__silk--one {
  right: -18vw;
  bottom: 4vh;
  transform: rotate(-18deg);
}

.hero__silk--two {
  top: 8vh;
  left: 26vw;
  opacity: 0.20;
  transform: rotate(24deg) scale(0.82);
}

.hero__horizon {
  position: absolute;
  left: 50%;
  bottom: 19%;
  width: min(76vw, 920px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 135, 47, 0.18), rgba(246, 222, 166, 0.78), rgba(184, 135, 47, 0.18), transparent);
  box-shadow:
    0 0 18px rgba(184, 135, 47, 0.28),
    0 0 48px rgba(178, 15, 24, 0.16);
  opacity: 0.72;
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, var(--ade-black));
  content: "";
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(46vw, 620px);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.36) 42%, rgba(3, 3, 3, 0.84)),
    url("../images/hero/red-silhouette-veil.jpeg") center / cover no-repeat;
  content: "";
  filter: saturate(0.72) contrast(1.12) brightness(0.68);
  opacity: 0.44;
  pointer-events: none;
}

.hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(0, 0, 0, 0.24), rgba(3, 3, 3, 0.84) 58%, rgba(3, 3, 3, 0.98) 100%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.94) 0%, rgba(3, 3, 3, 0.72) 48%, rgba(3, 3, 3, 0.86) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.82), transparent 34%, rgba(3, 3, 3, 0.98)),
    radial-gradient(ellipse at 50% 50%, rgba(178, 15, 24, 0.22), transparent 38%),
    linear-gradient(65deg, transparent 38%, rgba(184, 135, 47, 0.10) 54%, transparent 68%);
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.46;
  filter: saturate(0.82) contrast(1.18) brightness(0.54);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  max-width: 720px;
  text-align: center;
}

.hero__content::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(92vw, 760px);
  height: min(74vh, 640px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(178, 15, 24, 0.18), transparent 48%),
    radial-gradient(ellipse at 50% 68%, rgba(154, 115, 56, 0.10), transparent 44%);
  filter: blur(28px);
  content: "";
  opacity: 0.74;
  transform: translate(-50%, -50%);
}

.hero__brand {
  position: relative;
  width: min(540px, 78vw);
  margin: -10px 0 18px;
  overflow: hidden;
}

.hero__brand::before,
.hero__brand::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero__brand::before {
  top: 47%;
  left: 50%;
  z-index: 0;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(178, 15, 24, 0.30), rgba(178, 15, 24, 0.12) 34%, transparent 70%);
  filter: blur(22px);
  transform: translate(-50%, -50%);
}

.hero__brand::after {
  display: none;
}

.hero__brand img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.98;
  filter:
    drop-shadow(0 26px 42px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 30px rgba(178, 15, 24, 0.16));
}

.hero__rose-drift {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  perspective: 900px;
}

.hero__rose-drift::before {
  position: absolute;
  inset: 6% 0 0;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 218, 198, 0.36) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(173, 18, 28, 0.32) 0 1px, transparent 2px);
  background-position:
    0 0,
    34px 58px;
  background-size:
    96px 112px,
    132px 150px;
  opacity: 0.16;
  mask-image: linear-gradient(90deg, transparent 0 18%, #000 44%, transparent 92%);
  transform: translate3d(0, -2%, 0);
}

.hero__rose-drift::after {
  display: none;
}

.hero__rose-fragment {
  position: absolute;
  display: block;
  width: 62px;
  height: 44px;
  border-radius: 62% 38% 72% 28% / 44% 46% 58% 56%;
  clip-path: polygon(5% 58%, 16% 32%, 39% 12%, 62% 6%, 83% 20%, 97% 46%, 86% 72%, 62% 90%, 34% 91%, 12% 75%);
  background:
    radial-gradient(ellipse at 26% 18%, rgba(255, 165, 154, 0.42), transparent 24%),
    radial-gradient(ellipse at 46% 44%, rgba(132, 7, 24, 0.96), transparent 47%),
    radial-gradient(ellipse at 72% 82%, rgba(16, 0, 7, 0.88), transparent 60%),
    linear-gradient(150deg, rgba(42, 0, 12, 0.98), rgba(118, 3, 24, 0.96) 36%, rgba(189, 22, 39, 0.86) 58%, rgba(24, 0, 8, 0.98));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.42),
    inset -16px -12px 22px rgba(12, 0, 6, 0.64),
    inset 10px 6px 16px rgba(255, 112, 98, 0.18),
    inset 0 1px 0 rgba(255, 205, 188, 0.20);
  opacity: 0;
  filter: blur(0.12px) saturate(1.02) contrast(1.08) brightness(0.70);
  transform-origin: 50% 72%;
  will-change: opacity, transform;
}

.hero__rose-fragment::before,
.hero__rose-fragment::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero__rose-fragment::before {
  top: 2%;
  left: 9%;
  width: 84%;
  height: 70%;
  border-radius: 70% 30% 74% 26% / 56% 38% 70% 44%;
  border-top: 1px solid rgba(255, 173, 160, 0.24);
  border-left: 1px solid rgba(255, 128, 116, 0.12);
  border-bottom: 1px solid rgba(35, 0, 9, 0.28);
  clip-path: polygon(2% 62%, 18% 25%, 48% 3%, 82% 18%, 98% 48%, 88% 72%, 54% 84%, 22% 78%);
  background:
    radial-gradient(ellipse at 28% 12%, rgba(255, 190, 174, 0.18), transparent 33%),
    linear-gradient(152deg, rgba(255, 117, 104, 0.12), transparent 42%, rgba(12, 0, 5, 0.26) 82%);
  filter: blur(0.25px);
  transform: rotate(-7deg) skewX(-5deg);
}

.hero__rose-fragment::after {
  right: 8%;
  bottom: 5%;
  width: 72%;
  height: 48%;
  border-radius: 78% 22% 72% 28% / 38% 60% 40% 62%;
  clip-path: polygon(4% 48%, 30% 18%, 74% 12%, 98% 46%, 76% 82%, 34% 88%);
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 118, 104, 0.07), transparent 30%),
    linear-gradient(158deg, transparent 0 32%, rgba(42, 0, 11, 0.58) 72%),
    radial-gradient(ellipse at 80% 88%, rgba(2, 0, 3, 0.74), transparent 60%);
  filter: blur(0.48px);
  transform: rotate(8deg) skewY(-4deg);
}

.hero__rose-fragment--one {
  top: 18%;
  left: 7%;
  width: 56px;
  height: 40px;
  clip-path: polygon(4% 58%, 15% 34%, 35% 12%, 60% 6%, 82% 18%, 97% 43%, 88% 70%, 66% 88%, 37% 92%, 14% 75%);
}

.hero__rose-fragment--two {
  top: 11%;
  right: 13%;
  width: 76px;
  height: 54px;
  clip-path: polygon(5% 54%, 12% 31%, 32% 12%, 58% 4%, 82% 16%, 96% 39%, 92% 66%, 72% 86%, 44% 94%, 18% 80%);
  filter: blur(0.42px) saturate(0.92) contrast(1.08) brightness(0.66);
}

.hero__rose-fragment--three {
  right: 4%;
  bottom: 20%;
  width: 86px;
  height: 60px;
  clip-path: polygon(3% 57%, 13% 30%, 36% 11%, 63% 5%, 86% 20%, 98% 47%, 88% 72%, 65% 90%, 35% 92%, 12% 76%);
}

.hero__rose-fragment--four {
  bottom: 13%;
  left: 15%;
  width: 48px;
  height: 34px;
  clip-path: polygon(5% 55%, 15% 32%, 38% 9%, 62% 6%, 85% 22%, 96% 48%, 85% 72%, 60% 89%, 32% 90%, 13% 74%);
  filter: blur(0.62px) saturate(0.88) contrast(1.02) brightness(0.63);
}

.hero__rose-fragment--five {
  top: 52%;
  left: 82%;
  width: 42px;
  height: 30px;
  clip-path: polygon(6% 58%, 18% 31%, 42% 10%, 66% 8%, 87% 24%, 96% 51%, 82% 74%, 58% 88%, 30% 89%, 12% 74%);
  filter: blur(0.95px) saturate(0.82) contrast(1.02) brightness(0.60);
}

.hero__rose-fragment--six {
  top: -6%;
  left: 38%;
  width: 72px;
  height: 50px;
  clip-path: polygon(4% 56%, 15% 29%, 39% 9%, 64% 5%, 86% 21%, 97% 48%, 88% 73%, 64% 91%, 35% 92%, 13% 75%);
  filter: blur(0.32px) saturate(0.94) contrast(1.08) brightness(0.64);
}

.hero__rose-fragment--seven {
  top: 4%;
  left: 68%;
  width: 54px;
  height: 38px;
  clip-path: polygon(6% 55%, 16% 32%, 37% 12%, 61% 6%, 84% 20%, 96% 45%, 88% 70%, 66% 88%, 39% 92%, 15% 76%);
  filter: blur(0.48px) saturate(0.86) contrast(1.04) brightness(0.62);
}

.hero__rose-fragment--eight {
  bottom: -4%;
  left: 48%;
  width: 80px;
  height: 56px;
  clip-path: polygon(4% 57%, 12% 34%, 33% 12%, 59% 5%, 83% 17%, 97% 44%, 90% 70%, 68% 89%, 38% 93%, 15% 77%);
  filter: blur(0.36px) saturate(0.96) contrast(1.08) brightness(0.66);
}

.hero__rose-fragment--nine {
  top: 0;
  left: 54%;
  width: 50px;
  height: 36px;
  clip-path: polygon(7% 56%, 18% 30%, 44% 9%, 68% 9%, 88% 26%, 95% 52%, 78% 76%, 52% 88%, 24% 83%);
  filter: blur(0.46px) saturate(0.88) contrast(1.04) brightness(0.64);
}

.hero__rose-fragment--ten {
  top: 7%;
  left: 88%;
  width: 66px;
  height: 46px;
  clip-path: polygon(5% 60%, 14% 36%, 36% 13%, 60% 6%, 84% 19%, 97% 44%, 86% 72%, 62% 90%, 34% 92%, 13% 76%);
  filter: blur(0.32px) saturate(0.94) contrast(1.08) brightness(0.68);
}

.hero__rose-fragment--eleven {
  top: 24%;
  left: 2%;
  width: 44px;
  height: 32px;
  clip-path: polygon(8% 58%, 20% 32%, 42% 12%, 66% 8%, 88% 24%, 96% 50%, 80% 75%, 54% 88%, 26% 84%);
  filter: blur(0.74px) saturate(0.78) contrast(1) brightness(0.58);
}

.hero__rose-fragment--twelve {
  top: 42%;
  left: 72%;
  width: 58px;
  height: 40px;
  clip-path: polygon(6% 57%, 16% 34%, 38% 12%, 63% 6%, 84% 20%, 96% 46%, 86% 72%, 62% 89%, 34% 91%, 13% 75%);
  filter: blur(0.38px) saturate(0.90) contrast(1.05) brightness(0.62);
}

.hero__rose-fragment--two,
.hero__rose-fragment--six,
.hero__rose-fragment--ten {
  width: 72px;
  height: 58px;
  border-radius: 48% 52% 58% 42% / 42% 40% 60% 58%;
  clip-path: polygon(50% 2%, 70% 9%, 88% 26%, 94% 50%, 83% 74%, 61% 92%, 36% 91%, 16% 74%, 7% 50%, 14% 28%, 30% 10%);
  background:
    radial-gradient(ellipse at 38% 22%, rgba(255, 158, 132, 0.46), transparent 20%),
    radial-gradient(ellipse at 58% 30%, rgba(197, 23, 36, 0.98), transparent 42%),
    radial-gradient(ellipse at 44% 64%, rgba(81, 0, 16, 0.94), transparent 58%),
    linear-gradient(148deg, #2a0009, #920817 45%, #d2222f 62%, #300006 100%);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.50),
    inset 14px 8px 18px rgba(255, 147, 122, 0.16),
    inset -18px -16px 24px rgba(8, 0, 4, 0.70);
}

.hero__rose-fragment--two::before,
.hero__rose-fragment--six::before,
.hero__rose-fragment--ten::before {
  top: -2px;
  left: 6px;
  width: 86%;
  height: 76%;
  border-radius: 58% 42% 54% 46% / 48% 48% 52% 52%;
  border-top: 1px solid rgba(255, 189, 160, 0.24);
  background:
    radial-gradient(ellipse at 50% 26%, rgba(255, 184, 154, 0.18), transparent 26%),
    conic-gradient(from 220deg at 50% 58%, rgba(38, 0, 8, 0.02), rgba(117, 4, 20, 0.70), rgba(220, 31, 44, 0.42), rgba(44, 0, 9, 0.74), rgba(38, 0, 8, 0.02));
  clip-path: polygon(50% 0, 72% 12%, 88% 34%, 78% 68%, 55% 86%, 30% 82%, 12% 58%, 18% 28%);
  transform: rotate(4deg);
}

.hero__rose-fragment--two::after,
.hero__rose-fragment--six::after,
.hero__rose-fragment--ten::after {
  right: -13px;
  bottom: -11px;
  width: 43px;
  height: 26px;
  border-radius: 12px 80% 12px 80%;
  clip-path: polygon(0 48%, 28% 18%, 62% 28%, 100% 2%, 78% 42%, 100% 72%, 58% 66%, 24% 92%);
  background:
    linear-gradient(145deg, rgba(25, 58, 25, 0.96), rgba(7, 17, 9, 0.92) 58%, rgba(85, 92, 33, 0.58)),
    radial-gradient(ellipse at 20% 20%, rgba(210, 188, 138, 0.22), transparent 36%);
  filter: blur(0.16px) saturate(0.9) brightness(0.74);
  transform: rotate(-24deg);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--ade-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-weight: 650;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  letter-spacing: 0.005em;
  line-height: 1.02;
  text-transform: none;
}

h3 {
  margin-bottom: 10px;
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.script-line {
  color: var(--ade-gold-soft);
  background:
    linear-gradient(180deg, #d7c292 0%, #b99a66 38%, #8f682f 72%, #5b411d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-rounded);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(96, 69, 31, 0.20);
  -webkit-text-fill-color: transparent;
  text-transform: none;
}

.experiences .script-line {
  display: inline-block;
  margin-top: -2px;
  margin-bottom: 18px;
  color: var(--ade-gold-lit);
  background:
    linear-gradient(100deg, #8f682f 0%, #d2bc8a 24%, #fff1c7 46%, #b99a66 68%, #7b5727 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.95;
  text-shadow:
    0 0 16px rgba(210, 188, 138, 0.20),
    0 16px 38px rgba(96, 69, 31, 0.28);
  -webkit-text-fill-color: transparent;
}

.hero__tagline {
  display: inline-block;
  color: var(--ade-gold-soft);
  background:
    linear-gradient(
      105deg,
      #8a642c 0%,
      #b99a66 24%,
      #f5e3b8 42%,
      #c7a76e 54%,
      #7a5624 100%
    );
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-shadow:
    0 0 18px rgba(154, 115, 56, 0.12),
    0 16px 36px rgba(96, 69, 31, 0.20);
  -webkit-text-fill-color: transparent;
  text-transform: none;
}

.hero__copy {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--ade-muted);
  font-size: 1.08rem;
}

.about .script-line {
  display: inline-block;
  margin-top: 4px;
  color: var(--ade-gold-lit);
  background:
    linear-gradient(105deg, #7b5526 0%, #c19c62 28%, #fff0c8 48%, #b89155 66%, #6f4b1f 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(2.15rem, 3.8vw, 3.55rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow:
    0 0 16px rgba(210, 188, 138, 0.18),
    0 14px 32px rgba(96, 69, 31, 0.24);
  -webkit-text-fill-color: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero__signature {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(210, 188, 138, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 244, 214, 0.16), rgba(184, 135, 47, 0.10) 46%, rgba(30, 19, 8, 0.42)),
    radial-gradient(ellipse at 50% 0%, rgba(210, 188, 138, 0.18), transparent 58%),
    rgba(12, 8, 4, 0.54);
  box-shadow:
    inset 0 0 0 1px rgba(255, 247, 224, 0.08),
    inset 0 0 38px rgba(210, 188, 138, 0.13),
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(154, 115, 56, 0.14);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.hero__signature li {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 3px;
  padding: 16px 14px;
  background:
    linear-gradient(145deg, rgba(210, 188, 138, 0.14), rgba(255, 255, 255, 0.025) 42%, rgba(0, 0, 0, 0.20)),
    radial-gradient(ellipse at 50% 100%, rgba(184, 135, 47, 0.18), transparent 62%);
}

.hero__signature li::before {
  position: absolute;
  inset: -45% auto -45% -62%;
  width: 42%;
  content: "";
  background: linear-gradient(105deg, transparent 0 14%, rgba(255, 247, 224, 0.12) 38%, rgba(210, 188, 138, 0.36) 50%, rgba(255, 247, 224, 0.14) 62%, transparent 86% 100%);
  filter: blur(2px);
  opacity: 0.76;
  transform: rotate(12deg);
  animation: hero-signature-glint 9s cubic-bezier(0.42, 0, 0.22, 1) infinite;
  pointer-events: none;
}

.hero__signature li:nth-child(2)::before {
  animation-delay: 2.4s;
}

.hero__signature li:nth-child(3)::before {
  animation-delay: 4.8s;
}

.hero__signature li + li {
  border-left: 1px solid rgba(210, 188, 138, 0.32);
}

.hero__signature strong {
  color: var(--ade-white);
  position: relative;
  z-index: 1;
  font-family: var(--ade-rounded);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-shadow: 0 0 14px rgba(255, 247, 224, 0.16);
  text-transform: uppercase;
}

.hero__signature span {
  position: relative;
  z-index: 1;
  color: var(--ade-white);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(210, 188, 138, 0.18);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--ade-border);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.button--primary {
  border-color: var(--ade-red);
  background: linear-gradient(135deg, var(--ade-red), var(--ade-red-deep));
  color: var(--ade-white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 42px rgba(178, 15, 24, 0.22);
}

.button:hover,
.button:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(210, 188, 138, 0.22),
    0 18px 48px rgba(154, 115, 56, 0.15);
  transform: translateY(-2px);
}

.button--ghost {
  color: var(--ade-white);
}

.nav-whatsapp:hover,
.nav-whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.84);
  color: var(--ade-white);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.14);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--ade-gold);
  color: var(--ade-gold-soft);
}

.button--gold {
  border-color: rgba(210, 188, 138, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 240, 200, 0.20), rgba(184, 135, 47, 0.18) 42%, rgba(95, 66, 28, 0.24)),
    rgba(8, 6, 5, 0.48);
  color: var(--ade-gold-lit);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    inset 0 0 28px rgba(154, 115, 56, 0.16),
    0 0 26px rgba(154, 115, 56, 0.12),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.button--gold:hover,
.button--gold:focus-visible {
  border-color: rgba(255, 240, 200, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 241, 199, 0.30), rgba(210, 188, 138, 0.26) 46%, rgba(123, 85, 38, 0.30)),
    rgba(13, 10, 7, 0.62);
  color: #fff0c8;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    inset 0 0 34px rgba(184, 135, 47, 0.20),
    0 0 32px rgba(210, 188, 138, 0.16),
    0 20px 54px rgba(0, 0, 0, 0.28);
}

.button--gold:active {
  background:
    linear-gradient(135deg, #fff0c8, #d2bc8a 34%, #b8872f 68%, #6f4b1f),
    var(--ade-gold);
  border-color: #fff0c8;
  color: #070504;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -18px 34px rgba(95, 66, 28, 0.28),
    0 0 34px rgba(210, 188, 138, 0.28);
  transform: translateY(0);
}

.section-panel,
.section-dark {
  padding: clamp(72px, 8vw, 112px) clamp(22px, 6vw, 86px);
  border-bottom: 0;
}

.section-panel + .section-dark,
.section-dark + .section-panel,
.section-dark + .section-dark,
.section-panel + .section-panel {
  margin-top: -1px;
}

.section-panel::before,
.section-dark::before {
  box-shadow:
    inset 0 1px 0 rgba(154, 115, 56, 0.12),
    inset 0 -1px 0 rgba(154, 115, 56, 0.10);
}

.section-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 36%),
    rgba(8, 7, 6, 0.9);
}

.section-dark {
  background: rgba(3, 3, 3, 0.82);
}

.section-heading {
  position: relative;
  max-width: var(--ade-max);
  margin: 0 auto 42px;
}

.section-heading::before {
  display: block;
  width: 70px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--ade-gold-deep), var(--ade-gold-lit), transparent);
  content: "";
  opacity: 0.78;
}

.section-heading p:not(.eyebrow):not(.script-line),
.about__copy p,
.about-services span,
.experience-card p,
.difference-grid p,
.contact__intro address {
  color: var(--ade-muted);
}

.section-heading--wide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  grid-template-rows: auto auto;
  column-gap: clamp(24px, 4vw, 54px);
  row-gap: 0;
  align-items: end;
}

.section-heading--wide::before {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  width: 84px;
  max-width: 84px;
  margin: 0 0 18px;
}

.section-heading--wide > div {
  grid-column: 1;
  grid-row: 2;
}

.section-heading--wide > .text-link {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin-bottom: 18px;
}

.section-heading__note {
  max-width: 610px;
  margin-top: 12px;
  color: rgba(247, 242, 234, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.companions .section-heading--wide .script-line {
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 4px;
  padding-bottom: 12px;
  color: var(--ade-gold-lit);
  background:
    linear-gradient(105deg, #7b5526 0%, #c19c62 28%, #fff0c8 48%, #b89155 66%, #6f4b1f 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.16;
  text-shadow:
    0 0 16px rgba(210, 188, 138, 0.18),
    0 14px 32px rgba(96, 69, 31, 0.24);
  -webkit-text-fill-color: transparent;
}

.about,
.companions,
.experiences,
.atmosphere,
.difference,
.contact {
  isolation: isolate;
}

.about > *,
.companions > *,
.experiences > *,
.atmosphere > *,
.difference > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
  background:
    radial-gradient(ellipse at 27% 44%, rgba(178, 15, 24, 0.28), transparent 46%),
    radial-gradient(ellipse at 76% 42%, rgba(178, 15, 24, 0.18), transparent 48%),
    radial-gradient(ellipse at 84% 46%, rgba(154, 115, 56, 0.11), transparent 42%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.76), rgba(3, 3, 3, 0.48) 48%, rgba(3, 3, 3, 0.88)),
    url("../images/textures/red-cosmos-texture.jpeg") center center / cover no-repeat,
    #050404;
  box-shadow:
    inset 0 70px 96px rgba(3, 3, 3, 0.72),
    inset 0 -88px 116px rgba(3, 3, 3, 0.76);
}

.about::before,
.about::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.about::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.80), transparent 16%, transparent 80%, rgba(3, 3, 3, 0.84)),
    radial-gradient(ellipse at 76% 48%, rgba(3, 3, 3, 0.22), transparent 64%),
    radial-gradient(ellipse at 4% 50%, rgba(3, 3, 3, 0.34), transparent 48%),
    radial-gradient(ellipse at 52% 48%, rgba(210, 188, 138, 0.10), transparent 28%),
    radial-gradient(ellipse at 18% 46%, rgba(184, 135, 47, 0.10), transparent 36%),
    radial-gradient(ellipse at 72% 18%, rgba(178, 15, 24, 0.14), transparent 34%);
}

.about::after {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 90% 48%, rgba(3, 3, 3, 0.50), transparent 58%),
    radial-gradient(ellipse at 60% 52%, rgba(154, 115, 56, 0.10), transparent 36%),
    linear-gradient(90deg, transparent 0 22%, rgba(3, 3, 3, 0.10) 50%, transparent 82%);
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 84%, transparent 100%);
}

.experiences {
  background:
    radial-gradient(ellipse at 78% 22%, rgba(178, 15, 24, 0.28), transparent 42%),
    radial-gradient(ellipse at 18% 78%, rgba(154, 115, 56, 0.08), transparent 42%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.95), rgba(3, 3, 3, 0.73) 48%, rgba(3, 3, 3, 0.94)),
    url("../images/textures/deep-red-rose.jpeg") center / cover no-repeat,
    #050404;
}

.companions::before,
.companions::after,
.experiences::before,
.experiences::after,
.contact::before,
.contact::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.companions::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.40), rgba(3, 3, 3, 0.76) 54%, rgba(3, 3, 3, 0.93)),
    radial-gradient(ellipse at 54% 12%, rgba(178, 15, 24, 0.30), transparent 52%),
    radial-gradient(ellipse at 16% 58%, rgba(154, 115, 56, 0.08), transparent 42%),
    url("../images/textures/red-cosmos-texture.jpeg") center top / cover no-repeat;
  filter: saturate(0.88) contrast(1.08) brightness(0.56);
  opacity: 0.50;
  mask-image: linear-gradient(180deg, #000 0 62%, transparent 100%);
}

.companions::after {
  top: 8%;
  right: clamp(-140px, -8vw, -70px);
  z-index: 0;
  width: min(25vw, 320px);
  aspect-ratio: 736 / 1308;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.18), rgba(3, 3, 3, 0.70)),
    url("../images/petals/falling-rose-petals.jpeg") center / cover no-repeat;
  filter: saturate(0.78) contrast(1.06) brightness(0.62);
  opacity: 0.20;
  transform: rotate(-6deg);
  mask-image: radial-gradient(ellipse at 48% 52%, #000 0 42%, transparent 72%);
}

.experiences::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 88% 32%, rgba(178, 15, 24, 0.18), transparent 36%),
    radial-gradient(ellipse at 52% 82%, rgba(184, 135, 47, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.78), transparent 18%, transparent 78%, rgba(3, 3, 3, 0.88));
  opacity: 0.70;
}

.experiences::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.56) 55%, rgba(3, 3, 3, 0.90)),
    radial-gradient(ellipse at 86% 42%, rgba(178, 15, 24, 0.18), transparent 46%);
  opacity: 0.76;
}

.about .section-heading,
.about__copy,
.contact__intro,
.enquiry-form {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0;
}

.about__copy {
  padding-left: clamp(28px, 4vw, 54px);
  border-left: 1px solid rgba(154, 115, 56, 0.08);
  box-shadow:
    -48px 0 88px rgba(3, 3, 3, 0.12),
    -34px 0 58px rgba(178, 15, 24, 0.030);
}

.about-services {
  display: grid;
  gap: 14px;
  margin: 28px 0 6px;
}

.about-services li {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(154, 115, 56, 0.34);
  background:
    linear-gradient(135deg, rgba(154, 115, 56, 0.08), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 0 28px rgba(154, 115, 56, 0.035),
    0 18px 50px rgba(0, 0, 0, 0.18);
  transition:
    border-color 360ms ease,
    box-shadow 360ms ease,
    transform 360ms ease;
}

.about-services li::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--ade-gold), transparent);
  content: "";
}

.about-services li {
  border-color: rgba(226, 204, 154, 0.72);
  background:
    radial-gradient(ellipse at 82% 42%, rgba(210, 188, 138, 0.16), transparent 46%),
    linear-gradient(135deg, rgba(184, 135, 47, 0.16), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.30);
  box-shadow:
    inset 0 0 0 1px rgba(255, 247, 224, 0.08),
    inset 0 0 42px rgba(184, 135, 47, 0.13),
    0 0 0 1px rgba(154, 115, 56, 0.10),
    0 0 28px rgba(210, 188, 138, 0.18),
    0 18px 54px rgba(0, 0, 0, 0.22);
}

.about-services li::before {
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--ade-gold-lit) 48%, transparent);
  box-shadow: 0 0 18px rgba(210, 188, 138, 0.40);
}

.about-services li::after {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -38%;
  width: 22%;
  background:
    linear-gradient(108deg, transparent 0 20%, rgba(210, 188, 138, 0) 30%, rgba(210, 188, 138, 0.34) 48%, rgba(154, 115, 56, 0.12) 60%, transparent 76%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: rotate(8deg);
}

.about-services li:nth-child(2)::after {
  animation-delay: 4.8s;
}

.about-services li:nth-child(3)::after {
  animation-delay: 9.6s;
}

.about-services li:hover,
.about-services li:focus-within {
  border-color: rgba(210, 188, 138, 0.58);
  box-shadow:
    inset 0 0 36px rgba(154, 115, 56, 0.10),
    0 20px 58px rgba(0, 0, 0, 0.24),
    0 0 30px rgba(154, 115, 56, 0.12);
  transform: translateY(-2px);
}

.about-services strong {
  position: relative;
  display: block;
  margin-bottom: 6px;
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-services strong::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 252, 235, 0.98) 0 18%, rgba(210, 188, 138, 0.70) 28%, transparent 72%);
  box-shadow:
    -10px -6px 0 -2px rgba(210, 188, 138, 0),
    9px -10px 0 -2px rgba(210, 188, 138, 0),
    13px 6px 0 -2px rgba(210, 188, 138, 0),
    -4px 10px 0 -2px rgba(210, 188, 138, 0),
    0 0 0 rgba(210, 188, 138, 0);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scale(0.45);
  transition:
    opacity 320ms ease,
    box-shadow 420ms ease,
    transform 420ms ease;
}

.about-services li:hover strong::after,
.about-services li:focus-within strong::after {
  opacity: 1;
  box-shadow:
    -10px -6px 0 -2px rgba(210, 188, 138, 0.92),
    9px -10px 0 -2px rgba(255, 246, 218, 0.76),
    13px 6px 0 -2px rgba(184, 135, 47, 0.72),
    -4px 10px 0 -2px rgba(210, 188, 138, 0.68),
    0 0 16px rgba(210, 188, 138, 0.34),
    0 0 30px rgba(154, 115, 56, 0.18);
  transform: translateY(-50%) scale(1);
}

.about-services span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ade-gold-soft);
}

.text-link::after,
.companion-card a::after,
.companion-card__read::after {
  margin-left: 10px;
  color: var(--ade-red);
  content: "->";
}

.companion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  max-width: var(--ade-max);
  margin: 0 auto;
}

.companion-grid > li {
  min-width: 0;
}

.companion-grid > li:first-child {
  grid-row: span 2;
}

.companion-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--ade-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(3, 3, 3, 0.84)),
    var(--ade-panel);
  isolation: isolate;
  cursor: pointer;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.companion-card--feature {
  min-height: 100%;
}

.companion-band {
  position: relative;
  grid-column: 2 / -1;
  grid-row: 2;
  min-height: 172px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(154, 115, 56, 0.34);
  background:
    radial-gradient(ellipse at 18% 50%, rgba(178, 15, 24, 0.28), transparent 44%),
    radial-gradient(ellipse at 72% 44%, rgba(154, 115, 56, 0.12), transparent 38%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.68) 48%, rgba(3, 3, 3, 0.88)),
    url("../images/textures/red-cosmos-texture.jpeg") center / cover no-repeat,
    #050404;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.032),
    0 24px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.companion-band::before,
.companion-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.companion-band::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(255, 246, 218, 0.20) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(178, 15, 24, 0.24) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.34) 62%, rgba(3, 3, 3, 0.90));
  background-position:
    0 0,
    38px 54px,
    center;
  background-size:
    112px 122px,
    152px 168px,
    auto;
  opacity: 0.86;
}

.companion-band::after {
  right: auto;
  bottom: 20px;
  left: 50%;
  width: min(26vw, 310px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.86), transparent);
  box-shadow: 0 0 30px rgba(154, 115, 56, 0.26);
  transform: translateX(-50%);
}

.companion-band__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(24px, 4vw, 42px);
}

.companion-band h3 {
  max-width: 720px;
  margin-bottom: 10px;
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.companion-band p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 14px;
  color: rgba(247, 242, 234, 0.82);
}

.companion-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.05) brightness(0.82);
  transform: scale(1.01);
  transition:
    filter 420ms ease,
    transform 520ms ease;
}

.companion-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0) 62%, rgba(3, 3, 3, 0.08) 80%, rgba(3, 3, 3, 0.68)),
    radial-gradient(circle at 50% 18%, transparent 50%, rgba(3, 3, 3, 0.10));
  content: "";
  transition: opacity 320ms ease;
}

.companion-card::after {
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(210, 188, 138, 0);
  background:
    linear-gradient(90deg, rgba(210, 188, 138, 0), rgba(210, 188, 138, 0.16), rgba(210, 188, 138, 0)) top left / 0 1px no-repeat,
    linear-gradient(180deg, rgba(210, 188, 138, 0), rgba(210, 188, 138, 0.12), rgba(210, 188, 138, 0)) top right / 1px 0 no-repeat;
  content: "";
  pointer-events: none;
  transition:
    background-size 520ms ease,
    border-color 320ms ease,
    opacity 320ms ease;
}

.companion-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding: 18px 22px 16px;
  background:
    linear-gradient(180deg, transparent, rgba(3, 3, 3, 0.34) 44%, rgba(3, 3, 3, 0.76));
  transform: translateY(10px);
  transition:
    background 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

.companion-card h3 {
  margin-bottom: 3px;
  line-height: 1.05;
}

.companion-card:hover,
.companion-card:focus-within {
  border-color: rgba(234, 208, 155, 0.76);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(178, 15, 24, 0.18);
  transform: translateY(-8px);
}

.companion-card:hover::after,
.companion-card:focus-within::after {
  border-color: rgba(210, 188, 138, 0.26);
  background-size:
    100% 1px,
    1px 100%;
}

.companion-card:hover img,
.companion-card:focus-within img {
  filter: saturate(0.72) contrast(1.04) brightness(0.34);
  transform: scale(1.055);
}

.companion-card:hover::before,
.companion-card:focus-within::before {
  opacity: 0.66;
}

.companion-card--travel {
  border-color: rgba(210, 188, 138, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 18px 50px rgba(82, 6, 10, 0.20);
}

.companion-card--travel::after {
  border-color: rgba(210, 188, 138, 0.18);
  background:
    linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.40), transparent) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(210, 188, 138, 0.26), transparent) 100% 0 / 1px 100% no-repeat;
}

.companion-card:hover .companion-card__content,
.companion-card:focus-within .companion-card__content {
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 246, 218, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 244, 214, 0.22), rgba(184, 135, 47, 0.24) 38%, rgba(48, 30, 11, 0.94)),
    rgba(8, 5, 3, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 218, 0.16),
    inset 0 0 44px rgba(210, 188, 138, 0.14);
  transform: translateY(0);
}

.companion-card__location {
  margin-bottom: 0;
  color: var(--ade-gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.companion-card__travel-note {
  display: none;
  margin-bottom: 10px;
  color: rgba(250, 245, 234, 0.78);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.companion-card:hover .companion-card__travel-note,
.companion-card:focus-within .companion-card__travel-note {
  display: block;
}

.companion-card__bio {
  max-width: 28rem;
  position: relative;
  display: none;
  margin-bottom: 16px;
  color: rgba(250, 245, 234, 0.94);
  font-size: clamp(1.02rem, 1.32vw, 1.18rem);
  line-height: 1.52;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.companion-card__actions {
  display: none;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.companion-card:hover .companion-card__bio,
.companion-card:focus-within .companion-card__bio,
.companion-card:hover .companion-card__actions,
.companion-card:focus-within .companion-card__actions {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.companion-card:hover .companion-card__bio,
.companion-card:focus-within .companion-card__bio {
  display: block;
}

.companion-card a,
.companion-card__read {
  color: #fff4d6;
}

.companion-card__read {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

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

.companion-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
}

.companion-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(178, 15, 24, 0.18), transparent 42%),
    rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(10px);
}

.companion-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) minmax(280px, 1fr);
  width: min(860px, 100%);
  min-height: min(620px, calc(100vh - 48px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 188, 138, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018) 42%),
    radial-gradient(ellipse at 82% 12%, rgba(178, 15, 24, 0.18), transparent 42%),
    rgba(9, 8, 7, 0.96);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 34px 90px rgba(0, 0, 0, 0.56);
}

.companion-modal__media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ade-panel);
}

.companion-modal__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.44)),
    radial-gradient(ellipse at 50% 100%, rgba(210, 188, 138, 0.14), transparent 48%);
  content: "";
  pointer-events: none;
}

.companion-modal__media img {
  width: 100%;
  height: 100%;
  min-height: min(620px, calc(100vh - 48px));
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.04) brightness(0.86);
}

.companion-modal__content {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.companion-modal__panel h3 {
  margin-bottom: 14px;
  color: var(--ade-white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.08em;
}

.companion-modal__panel p:not(.eyebrow) {
  margin-bottom: 20px;
  color: var(--ade-muted);
}

.companion-modal__travel {
  color: var(--ade-gold-soft) !important;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.companion-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.companion-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(210, 188, 138, 0.28);
  background: rgba(3, 3, 3, 0.42);
  color: var(--ade-muted);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.companion-editorial {
  position: relative;
  grid-column: span 2;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 47, 0.34);
  background:
    radial-gradient(ellipse at 58% 42%, rgba(178, 15, 24, 0.34), transparent 48%),
    radial-gradient(ellipse at 88% 18%, rgba(154, 115, 56, 0.10), transparent 36%),
    linear-gradient(112deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.66) 54%, rgba(3, 3, 3, 0.94)),
    url("../images/textures/red-cosmos-texture.jpeg") center / cover no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 22px 60px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.companion-editorial::before,
.companion-editorial::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.companion-editorial::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 68% 46%, rgba(178, 15, 24, 0.16), transparent 48%),
    radial-gradient(ellipse at 18% 18%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.48) 56%, rgba(3, 3, 3, 0.84));
  backdrop-filter: blur(0.2px);
}

.companion-editorial::after {
  right: auto;
  bottom: 28px;
  left: 50%;
  width: min(42%, 220px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 135, 47, 0.86), transparent);
  box-shadow: 0 0 26px rgba(184, 135, 47, 0.22);
  transform: translateX(-50%);
}

.companion-editorial__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 100%;
  max-width: 520px;
  padding: clamp(26px, 4vw, 42px);
}

.companion-editorial h3 {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
}

.editorial-script {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  color: var(--ade-gold-lit);
  background:
    linear-gradient(
      105deg,
      #6f4b1f 0%,
      #a9824e 20%,
      #d9c08d 38%,
      #fff0c8 48%,
      #c19c62 60%,
      #7b5526 100%
    );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(2.05rem, 3.45vw, 3.05rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.18;
  padding-bottom: 0.12em;
  text-shadow:
    0 0 18px rgba(210, 188, 138, 0.18),
    0 0 34px rgba(154, 115, 56, 0.14);
  -webkit-text-fill-color: transparent;
  text-transform: none;
  animation: goldTextShimmer 8s ease-in-out infinite;
}

.companion-editorial p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--ade-muted);
}

.companion-motion {
  position: relative;
  grid-column: 1 / -1;
  min-height: clamp(210px, 24vw, 320px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 47, 0.36);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.44) 46%, rgba(3, 3, 3, 0.88)),
    radial-gradient(ellipse at 68% 42%, rgba(210, 188, 138, 0.18), transparent 38%),
    radial-gradient(ellipse at 32% 64%, rgba(178, 15, 24, 0.28), transparent 44%),
    url("../images/textures/private-gold-curve.jpeg") right center / min(70vw, 920px) auto no-repeat,
    url("../images/petals/falling-rose-petals.jpeg") center / cover no-repeat,
    #050404;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 26px 70px rgba(0, 0, 0, 0.30);
  isolation: isolate;
}

.companion-motion__field,
.motion-petal,
.motion-glow {
  position: absolute;
  pointer-events: none;
}

.companion-motion__field {
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.motion-petal {
  width: clamp(20px, 2.6vw, 42px);
  height: clamp(14px, 1.8vw, 28px);
  border-radius: 72% 28% 78% 22% / 48% 56% 44% 52%;
  clip-path: polygon(4% 58%, 18% 30%, 42% 9%, 70% 10%, 94% 39%, 84% 70%, 56% 92%, 24% 84%);
  opacity: 0;
  filter: blur(0.18px);
}

.motion-petal--one,
.motion-petal--three {
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 255, 255, 0.70), transparent 28%),
    linear-gradient(145deg, rgba(255, 245, 235, 0.70), rgba(238, 205, 190, 0.34) 56%, rgba(128, 36, 42, 0.18));
  box-shadow: 0 0 18px rgba(255, 245, 235, 0.14);
}

.motion-petal--two,
.motion-petal--four {
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 146, 132, 0.42), transparent 28%),
    linear-gradient(145deg, rgba(92, 2, 16, 0.96), rgba(174, 18, 34, 0.76) 58%, rgba(25, 0, 7, 0.92));
  box-shadow: 0 0 20px rgba(178, 15, 24, 0.16);
}

.motion-petal--one { top: 18%; left: 52%; }
.motion-petal--two { top: 48%; left: 78%; }
.motion-petal--three { top: 62%; left: 42%; }
.motion-petal--four { top: 24%; left: 88%; }

.motion-glow {
  width: clamp(120px, 18vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(210, 188, 138, 0.20), transparent 48%),
    radial-gradient(circle at 60% 45%, rgba(178, 15, 24, 0.22), transparent 58%);
  filter: blur(20px);
  opacity: 0.64;
}

.motion-glow--one { right: 10%; top: 8%; }
.motion-glow--two { left: 38%; bottom: -34%; }

.companion-motion__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
}

.companion-motion h3 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  font-weight: 650;
  letter-spacing: 0.005em;
  line-height: 1.06;
  text-transform: none;
  text-shadow:
    0 0 24px rgba(178, 15, 24, 0.16),
    0 16px 38px rgba(0, 0, 0, 0.42);
}

.companion-motion p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(247, 242, 234, 0.84);
}

.companion-cta {
  position: relative;
  grid-column: 1 / -1;
  min-height: 250px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(154, 115, 56, 0.36);
  background:
    radial-gradient(ellipse at 18% 50%, rgba(178, 15, 24, 0.22), transparent 44%),
    radial-gradient(ellipse at 78% 50%, rgba(154, 115, 56, 0.10), transparent 38%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.70) 46%, rgba(3, 3, 3, 0.82)),
    url("../images/textures/rose-cluster.jpeg") center / cover no-repeat,
    #050404;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 26px 70px rgba(0, 0, 0, 0.30);
  isolation: isolate;
}

.companion-cta::before,
.companion-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.companion-cta::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(178, 15, 24, 0.16), transparent 44%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.42) 58%, rgba(3, 3, 3, 0.90));
}

.companion-cta::after {
  right: auto;
  bottom: clamp(24px, 4vw, 38px);
  left: 50%;
  width: min(42vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.86), transparent);
  box-shadow: 0 0 30px rgba(154, 115, 56, 0.26);
  transform: translateX(-50%);
}

.companion-cta__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
}

.companion-cta h3 {
  max-width: 780px;
  margin-bottom: 14px;
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: clamp(1.45rem, 2.8vw, 2.7rem);
  font-weight: 650;
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-transform: none;
}

.companion-cta h3 span {
  display: inline-block;
  padding-bottom: 8px;
  background:
    linear-gradient(105deg, #7b5526 0%, #c19c62 28%, #fff0c8 48%, #b89155 66%, #6f4b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: 1.18em;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.12;
  text-shadow:
    0 0 16px rgba(210, 188, 138, 0.18),
    0 12px 30px rgba(96, 69, 31, 0.24);
  -webkit-text-fill-color: transparent;
}

.script-dot {
  display: inline-block;
  width: 0.085em;
  height: 0.085em;
  margin-left: 0.075em;
  border-radius: 999px;
  background: #b8872f;
  box-shadow:
    0 0 5px rgba(184, 135, 47, 0.22),
    0 0 10px rgba(123, 87, 39, 0.12);
  vertical-align: 0.10em;
  -webkit-text-fill-color: initial;
}

.companion-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--ade-muted);
}

.companion-closing {
  position: relative;
  grid-column: 1 / -1;
  min-height: clamp(190px, 22vw, 285px);
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-top: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(184, 135, 47, 0.36);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.42) 46%, rgba(3, 3, 3, 0.90)),
    radial-gradient(ellipse at 58% 52%, rgba(178, 15, 24, 0.30), transparent 48%),
    radial-gradient(ellipse at 22% 50%, rgba(154, 115, 56, 0.16), transparent 38%),
    url("../images/textures/rose-cluster.jpeg") right center / cover no-repeat,
    #050404;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 24px 70px rgba(0, 0, 0, 0.30);
  isolation: isolate;
}

.companion-closing::before,
.companion-closing::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.companion-closing::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(255, 246, 218, 0.16) 0 1px, transparent 1.8px),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), rgba(3, 3, 3, 0.62));
  background-size:
    148px 156px,
    auto;
  opacity: 0.42;
}

.companion-closing::after {
  right: auto;
  bottom: clamp(22px, 4vw, 42px);
  left: 50%;
  z-index: 0;
  width: min(42vw, 440px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.86), transparent);
  box-shadow: 0 0 30px rgba(154, 115, 56, 0.28);
  transform: translateX(-50%);
}

.companion-closing__content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 54px);
}

.companion-closing h3 {
  max-width: 620px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  background:
    linear-gradient(105deg, #7b5526 0%, #c19c62 28%, #fff0c8 48%, #b89155 66%, #6f4b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--ade-gold-lit);
  font-family: var(--ade-script);
  font-size: clamp(2.3rem, 4.7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.14;
  text-transform: none;
  text-shadow:
    0 0 18px rgba(210, 188, 138, 0.18),
    0 16px 34px rgba(96, 69, 31, 0.24);
  -webkit-text-fill-color: transparent;
}

.companion-closing p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(247, 242, 234, 0.82);
}

.experience-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  max-width: var(--ade-max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--ade-border);
}

.experience-grid::before {
  position: absolute;
  top: -28%;
  bottom: -28%;
  left: -18%;
  z-index: 2;
  width: 13%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(184, 135, 47, 0.025),
      rgba(238, 205, 137, 0.16),
      rgba(255, 246, 218, 0.10),
      rgba(184, 135, 47, 0.025),
      transparent
    );
  filter: blur(0.6px);
  content: "";
  pointer-events: none;
}

.experience-grid > li {
  display: flex;
  min-width: 0;
}

.difference-grid::before {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -32%;
  z-index: 2;
  width: 24%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(184, 135, 47, 0.08),
      rgba(238, 205, 137, 0.32),
      rgba(184, 135, 47, 0.08),
      transparent
    );
  content: "";
  pointer-events: none;
  transform: rotate(18deg);
}

.experience-card {
  position: relative;
  width: 100%;
  min-height: 292px;
  padding: 30px 22px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  border-right: 1px solid rgba(184, 135, 47, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.022) 44%, rgba(184, 135, 47, 0.035)),
    rgba(13, 11, 10, 0.42);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.experience-card::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 205, 137, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 54%);
  content: "";
  opacity: 0.66;
  pointer-events: none;
}

.experience-card > * {
  position: relative;
  z-index: 1;
}

.experience-card::after,
.difference-grid article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 135, 47, 0.82), transparent);
  content: "";
  opacity: 0;
}

.experience-grid li:last-child .experience-card {
  border-right: 0;
}

.experience-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  color: var(--ade-gold);
  border: 1px solid rgba(184, 135, 47, 0.34);
  background:
    linear-gradient(145deg, rgba(184, 135, 47, 0.10), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 0 18px rgba(184, 135, 47, 0.08),
    0 0 28px rgba(184, 135, 47, 0.08);
  transform: rotate(45deg);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.experience-card h3 {
  min-height: 2.4em;
}

.experience-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: rotate(-45deg);
}

.atmosphere {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(620px, 68vw, 760px);
  padding-bottom: clamp(88px, 9vw, 132px);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.18) 24%, rgba(3, 3, 3, 0.28) 72%, rgba(3, 3, 3, 0.96)),
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.54) 44%, rgba(3, 3, 3, 0.84)),
    radial-gradient(ellipse at 18% 44%, rgba(126, 7, 12, 0.42), transparent 46%),
    radial-gradient(ellipse at 66% 42%, rgba(154, 115, 56, 0.16), transparent 42%),
    url("../images/textures/deep-red-rose.jpeg") left center / cover no-repeat,
    #030303;
}

.atmosphere::before,
.atmosphere::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.atmosphere::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.18), transparent 24%, rgba(3, 3, 3, 0.42) 100%),
    radial-gradient(ellipse at 82% 42%, rgba(3, 3, 3, 0.44), transparent 50%),
    radial-gradient(circle, rgba(255, 246, 218, 0.18) 0 1px, transparent 1.8px);
  background-size:
    auto,
    auto,
    132px 142px;
  opacity: 0.16;
  mask-image: linear-gradient(90deg, transparent 0 4%, #000 28%, #000 74%, transparent 98%);
  animation: atmosphere-dust-drift 22s ease-in-out infinite alternate;
}

.atmosphere::after {
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: clamp(130px, 16vw, 230px);
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 3, 3, 0.54) 56%, rgba(3, 3, 3, 0.92) 100%),
    radial-gradient(ellipse at 34% 100%, rgba(178, 15, 24, 0.20), transparent 62%);
}

.atmosphere__wet-petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.wet-petal,
.wet-drop {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: opacity, transform;
}

.wet-petal {
  width: 1px;
  height: clamp(54px, 7vw, 96px);
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 246, 218, 0.42), rgba(210, 188, 138, 0.12), transparent);
  box-shadow: 0 0 14px rgba(255, 246, 218, 0.14);
  opacity: 0;
  filter: blur(0.2px);
  transform: rotate(11deg);
}

.wet-petal::after {
  display: none;
}

.wet-petal--one { top: 18%; left: 52%; }
.wet-petal--two { top: 36%; left: 74%; }
.wet-petal--three { top: 64%; left: 60%; }
.wet-petal--four { top: 50%; left: 28%; }

.wet-drop {
  width: 1px;
  height: clamp(42px, 6vw, 78px);
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.46), rgba(210, 188, 138, 0.08), transparent);
  box-shadow: 0 0 12px rgba(255, 246, 218, 0.12);
  opacity: 0;
  filter: blur(0.15px);
  transform: rotate(11deg);
}

.wet-drop--one { top: 24%; left: 42%; }
.wet-drop--two { top: 46%; left: 86%; }
.wet-drop--three { top: 70%; left: 48%; }
.wet-drop--four { top: 12%; left: 18%; }
.wet-drop--five { top: 34%; left: 58%; }
.wet-drop--six { top: 18%; left: 78%; }
.wet-drop--seven { top: 56%; left: 66%; }
.wet-drop--eight { top: 8%; left: 92%; }
.wet-drop--nine { top: 42%; left: 34%; }
.wet-drop--ten { top: 62%; left: 22%; }
.wet-drop--eleven { top: 30%; left: 70%; }
.wet-drop--twelve { top: 74%; left: 82%; }

.atmosphere__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 650px;
  padding-top: clamp(88px, 10vw, 142px);
  padding-bottom: clamp(88px, 9vw, 132px);
}

.atmosphere__copy::before {
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--ade-gold-deep), var(--ade-gold-lit), transparent);
  box-shadow: 0 0 18px rgba(154, 115, 56, 0.20);
  content: "";
  opacity: 0.82;
}

.atmosphere .eyebrow {
  color: var(--ade-red);
  text-shadow:
    0 0 14px rgba(178, 15, 24, 0.26),
    0 0 30px rgba(154, 115, 56, 0.08);
}

.atmosphere .script-line {
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 16px;
  padding-bottom: 0.16em;
  color: var(--ade-gold-lit);
  background:
    linear-gradient(
      105deg,
      #6f4b1f 0%,
      #a9824e 22%,
      #d9c08d 38%,
      #fff0c8 48%,
      #c19c62 60%,
      #7b5526 100%
    );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(2.35rem, 4.2vw, 3.85rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.18;
  text-shadow:
    0 0 18px rgba(210, 188, 138, 0.18),
    0 0 34px rgba(154, 115, 56, 0.12),
    0 16px 36px rgba(96, 69, 31, 0.24);
  -webkit-text-fill-color: transparent;
  text-transform: none;
}

.atmosphere__copy p:not(.eyebrow):not(.script-line) {
  max-width: 590px;
  color: var(--ade-muted);
}

.atmosphere__visual {
  position: absolute;
  top: clamp(54px, 6vw, 86px);
  right: 0;
  bottom: clamp(44px, 5vw, 72px);
  z-index: 1;
  width: min(56vw, 760px);
  margin: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: auto;
  opacity: 0.50;
  mix-blend-mode: screen;
  mask-image:
    radial-gradient(ellipse at 60% 48%, #000 0 24%, rgba(0, 0, 0, 0.54) 42%, transparent 70%),
    linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.08) 22%, #000 50%, rgba(0, 0, 0, 0.38) 74%, transparent 94%),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.42) 20%, #000 48%, rgba(0, 0, 0, 0.28) 70%, transparent 94%);
  mask-composite: intersect;
  -webkit-mask-image:
    radial-gradient(ellipse at 60% 48%, #000 0 24%, rgba(0, 0, 0, 0.54) 42%, transparent 70%),
    linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.08) 22%, #000 50%, rgba(0, 0, 0, 0.38) 74%, transparent 94%),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.42) 20%, #000 48%, rgba(0, 0, 0, 0.28) 70%, transparent 94%);
  -webkit-mask-composite: source-in;
}

.atmosphere__visual::before,
.atmosphere__visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.atmosphere__visual::before {
  background:
    radial-gradient(ellipse at 66% 24%, rgba(210, 188, 138, 0.14), transparent 28%),
    radial-gradient(ellipse at 54% 70%, rgba(178, 15, 24, 0.28), transparent 44%),
    radial-gradient(ellipse at 42% 54%, rgba(3, 3, 3, 0.26), transparent 56%);
  mix-blend-mode: screen;
  opacity: 0.38;
}

.atmosphere__visual::after {
  inset: auto auto clamp(42px, 5vw, 76px) 50%;
  width: min(34vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.82), transparent);
  box-shadow: 0 0 26px rgba(154, 115, 56, 0.24);
  opacity: 0.66;
  mix-blend-mode: screen;
  transform: translateX(-50%);
}

.atmosphere__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 34vw, 560px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.18) brightness(0.68);
  mix-blend-mode: screen;
  opacity: 0.56;
  transform: scale(1.22);
}

.difference {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  isolation: isolate;
  margin-top: -1px;
  padding-top: clamp(82px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.88), rgba(3, 3, 3, 0.52) 30%, rgba(3, 3, 3, 0.58) 68%, rgba(3, 3, 3, 0.92)),
    linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.48) 46%, rgba(3, 3, 3, 0.72)),
    radial-gradient(ellipse at 70% 46%, rgba(210, 188, 138, 0.22), transparent 38%),
    radial-gradient(ellipse at 22% 42%, rgba(178, 15, 24, 0.24), transparent 42%),
    url("../images/textures/private-gold-curve.jpeg") right center / min(58vw, 820px) auto no-repeat,
    url("../images/textures/rose-cluster.jpeg") left bottom / min(44vw, 640px) auto no-repeat,
    #030303;
}

.difference::before,
.difference::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.difference::before {
  inset: -4% 0 0;
  z-index: -2;
  background:
    linear-gradient(102deg, transparent 0 42%, rgba(210, 188, 138, 0.18) 50%, transparent 62%),
    radial-gradient(ellipse at 74% 48%, rgba(210, 188, 138, 0.18), transparent 42%),
    radial-gradient(ellipse at 18% 78%, rgba(178, 15, 24, 0.18), transparent 38%);
  filter: blur(4px);
  opacity: 0.86;
  transform: translate3d(0, 0, 0);
}

.difference::after {
  inset: 10% 4% 10% 32%;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(255, 246, 218, 0.36) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(184, 135, 47, 0.28) 0 1px, transparent 2px);
  background-position:
    0 0,
    40px 58px;
  background-size:
    108px 118px,
    156px 160px;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse at 58% 48%, #000 0 48%, transparent 78%);
}

.difference__image {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: clamp(28px, 5vw, 72px);
  z-index: -1;
  width: min(22vw, 260px);
  max-height: 78%;
  aspect-ratio: 736 / 1111;
  overflow: hidden;
  opacity: 0.08;
  mask-image: radial-gradient(ellipse at 52% 52%, #000 0 38%, transparent 72%);
}

.difference__image::before,
.difference__image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.difference__image::before {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.08) 42%, rgba(3, 3, 3, 0.82)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.92), transparent 24%, transparent 68%, rgba(3, 3, 3, 0.94));
}

.difference__image::after {
  background:
    radial-gradient(ellipse at 54% 78%, rgba(178, 15, 24, 0.24), transparent 32%),
    linear-gradient(118deg, transparent 34%, rgba(184, 135, 47, 0.10) 48%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.difference__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.16) brightness(0.78);
  transform: scale(1.03);
}

.difference .section-heading {
  margin: 0;
  position: relative;
  z-index: 1;
}

.difference .script-line {
  display: inline-block;
  margin-top: 4px;
  color: var(--ade-gold-lit);
  background:
    linear-gradient(
      105deg,
      #6f4b1f 0%,
      #a9824e 20%,
      #d9c08d 38%,
      #fff0c8 48%,
      #c19c62 60%,
      #7b5526 100%
    );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.96;
  text-shadow:
    0 0 18px rgba(210, 188, 138, 0.18),
    0 0 34px rgba(154, 115, 56, 0.14);
  -webkit-text-fill-color: transparent;
  animation: goldTextShimmer 8s ease-in-out infinite;
}

.difference .section-heading::after {
  display: block;
  width: min(220px, 68%);
  height: 1px;
  margin-top: 30px;
  background: linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.86), transparent);
  box-shadow: 0 0 28px rgba(154, 115, 56, 0.24);
  content: "";
}

.difference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--ade-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(3, 3, 3, 0.18)),
    rgba(3, 3, 3, 0.34);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 56px rgba(154, 115, 56, 0.08);
}

.difference-grid article {
  position: relative;
  min-height: 232px;
  height: 100%;
  padding: 28px 22px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  border-right: 1px solid rgba(184, 135, 47, 0.26);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(210, 188, 138, 0.10), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.090), rgba(255, 255, 255, 0.018) 48%, rgba(184, 135, 47, 0.036)),
    rgba(13, 11, 10, 0.38);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  transition:
    background 360ms ease,
    box-shadow 360ms ease,
    transform 360ms ease;
}

.difference-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ade-gold-lit);
  border: 1px solid rgba(210, 188, 138, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 247, 224, 0.18), transparent 34%),
    rgba(3, 3, 3, 0.24);
  box-shadow:
    inset 0 0 20px rgba(154, 115, 56, 0.08),
    0 0 24px rgba(154, 115, 56, 0.12);
  transition:
    border-color 320ms ease,
    box-shadow 360ms ease,
    color 320ms ease,
    transform 360ms ease;
}

.difference-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.difference-grid article::before,
.difference-grid article::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.difference-grid article::before {
  right: 18px;
  bottom: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 246, 218, 0.82);
  box-shadow:
    0 0 16px rgba(210, 188, 138, 0.36),
    -16px -18px 0 -3px rgba(210, 188, 138, 0.48),
    13px -32px 0 -4px rgba(184, 135, 47, 0.38);
  opacity: 0.38;
}

.difference-grid article::after {
  inset: 0;
  height: auto;
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(210, 188, 138, 0.13) 46%, transparent 60%);
  opacity: 0;
  transform: translateX(-80%);
  transition:
    opacity 420ms ease,
    transform 720ms ease;
}

.experience-card:hover,
.difference-grid article:hover {
  background:
    linear-gradient(180deg, rgba(184, 135, 47, 0.08), rgba(255, 255, 255, 0.015));
}

.difference-grid article:hover,
.difference-grid article:focus-within {
  box-shadow:
    inset 0 0 0 1px rgba(210, 188, 138, 0.28),
    inset 0 0 36px rgba(184, 135, 47, 0.12);
  transform: translateY(-3px);
}

.difference-grid article:hover .difference-icon,
.difference-grid article:focus-within .difference-icon {
  color: #f1dbad;
  border-color: rgba(241, 219, 173, 0.76);
  box-shadow:
    inset 0 0 26px rgba(210, 188, 138, 0.18),
    0 0 28px rgba(210, 188, 138, 0.28),
    0 0 48px rgba(154, 115, 56, 0.16);
  transform: translateY(-3px) scale(1.06);
}

.difference-grid article:hover::before,
.difference-grid article:focus-within::before {
  opacity: 0.92;
}

.difference-grid article:hover::after,
.difference-grid article:focus-within::after {
  opacity: 1;
  transform: translateX(80%);
}

.experience-card:hover {
  box-shadow:
    inset 0 0 0 1px rgba(184, 135, 47, 0.58),
    inset 0 0 34px rgba(184, 135, 47, 0.13),
    0 18px 42px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(184, 135, 47, 0.18);
  transform: translateY(-4px);
}

.experience-card:hover .experience-icon,
.experience-card:focus-within .experience-icon {
  color: var(--ade-gold-lit);
  border-color: rgba(194, 160, 96, 0.74);
  box-shadow:
    inset 0 0 20px rgba(184, 135, 47, 0.16),
    0 0 30px rgba(184, 135, 47, 0.30);
  transform: rotate(45deg) scale(1.05);
}

.experience-card:hover::before,
.experience-card:focus-within::before {
  opacity: 0.88;
}

.difference-grid li:last-child article {
  border-right: 0;
}

.contact-transition {
  position: relative;
  overflow: hidden;
  min-height: clamp(230px, 24vw, 330px);
  display: grid;
  align-items: center;
  padding: clamp(46px, 6vw, 78px) clamp(22px, 6vw, 86px);
  margin-top: -1px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.20) 42%, rgba(3, 3, 3, 0.94)),
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.42) 42%, rgba(3, 3, 3, 0.56) 78%, rgba(3, 3, 3, 0.90)),
    radial-gradient(ellipse at 72% 42%, rgba(210, 188, 138, 0.18), transparent 32%),
    radial-gradient(ellipse at 50% 64%, rgba(178, 15, 24, 0.26), transparent 50%),
    url("../images/textures/rose-cluster.jpeg") right center / min(56vw, 760px) auto no-repeat,
    url("../images/textures/deep-red-rose.jpeg") center / cover no-repeat,
    url("../images/textures/red-glitter-cosmos.png") center / cover no-repeat,
    #050404;
  border-top: 1px solid rgba(154, 115, 56, 0.18);
  border-bottom: 1px solid rgba(154, 115, 56, 0.18);
  isolation: isolate;
}

.contact-transition::before,
.contact-transition::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.contact-transition::before {
  inset: -16%;
  z-index: 0;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(210, 188, 138, 0.20) 49%, transparent 60%),
    radial-gradient(circle, rgba(255, 246, 218, 0.34) 0 1px, transparent 1.9px),
    radial-gradient(circle, rgba(178, 15, 24, 0.28) 0 1.2px, transparent 2.2px),
    radial-gradient(ellipse at 78% 48%, rgba(154, 115, 56, 0.22), transparent 44%);
  background-size:
    auto,
    138px 152px,
    184px 198px,
    auto;
  opacity: 0.34;
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
  transform: translate3d(0, 0, 0) scale(1.02);
}

.contact-transition::after {
  left: 57%;
  bottom: clamp(20px, 4vw, 38px);
  z-index: 0;
  width: min(58vw, 620px);
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.92), rgba(255, 246, 218, 0.90), rgba(210, 188, 138, 0.82), transparent);
  box-shadow:
    0 0 22px rgba(210, 188, 138, 0.30),
    0 0 54px rgba(178, 15, 24, 0.22);
  transform: translateX(-50%);
}

.contact-transition__mood {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.petal,
.kiss {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: opacity, transform;
}

.petal {
  width: clamp(18px, 2vw, 34px);
  height: clamp(12px, 1.4vw, 24px);
  border-radius: 72% 28% 78% 22% / 48% 56% 44% 52%;
  clip-path: polygon(4% 58%, 18% 30%, 42% 9%, 70% 10%, 94% 39%, 84% 70%, 56% 92%, 24% 84%);
  opacity: 0;
  filter: blur(0.18px) saturate(0.95);
  transform-origin: 50% 70%;
}

.petal--white {
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(145deg, rgba(255, 245, 235, 0.74), rgba(238, 205, 190, 0.36) 54%, rgba(128, 36, 42, 0.18));
  box-shadow:
    0 0 18px rgba(255, 245, 235, 0.16),
    inset -8px -6px 14px rgba(122, 38, 42, 0.14);
}

.petal--red {
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 146, 132, 0.44), transparent 28%),
    linear-gradient(145deg, rgba(92, 2, 16, 0.96), rgba(174, 18, 34, 0.78) 58%, rgba(25, 0, 7, 0.92));
  box-shadow:
    0 0 20px rgba(178, 15, 24, 0.16),
    inset -10px -8px 16px rgba(10, 0, 4, 0.38);
}

.petal--one { top: 10%; left: 44%; }
.petal--two { top: 14%; left: 64%; }
.petal--three { top: 36%; left: 84%; }
.petal--four { top: 58%; left: 72%; }
.petal--five { top: 66%; left: 48%; }
.petal--six { top: 24%; left: 28%; }

.kiss {
  width: clamp(34px, 4vw, 62px);
  height: clamp(18px, 2.2vw, 34px);
  opacity: 0;
  filter:
    blur(0.18px)
    drop-shadow(0 0 14px rgba(178, 15, 24, 0.12));
}

.kiss::before,
.kiss::after {
  position: absolute;
  left: 50%;
  width: 72%;
  height: 48%;
  border-radius: 70% 30% 66% 34% / 62% 58% 42% 38%;
  background:
    radial-gradient(ellipse at 28% 40%, rgba(255, 120, 128, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(145, 8, 26, 0.26), rgba(210, 188, 138, 0.10));
  content: "";
  transform: translateX(-50%) rotate(-5deg);
}

.kiss::after {
  top: 42%;
  border-radius: 34% 66% 36% 64% / 38% 42% 58% 62%;
  transform: translateX(-50%) rotate(5deg);
}

.kiss--one { top: 18%; left: 76%; --kiss-rotate: -10deg; --kiss-scale: 0.96; }
.kiss--two { top: 54%; left: 58%; --kiss-rotate: 8deg; --kiss-scale: 0.82; }
.kiss--three { top: 34%; left: 90%; --kiss-rotate: -4deg; --kiss-scale: 0.72; }

.contact-transition__content::before {
  position: absolute;
  top: -28px;
  left: -2px;
  width: min(12vw, 132px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(210, 188, 138, 0.88), transparent);
  box-shadow: 0 0 20px rgba(154, 115, 56, 0.22);
}

.contact-transition__content::after {
  position: absolute;
  right: clamp(-180px, -12vw, -64px);
  bottom: -30px;
  z-index: -1;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(210, 188, 138, 0.18), transparent 42%),
    radial-gradient(circle at 58% 42%, rgba(178, 15, 24, 0.22), transparent 54%);
  content: "";
  filter: blur(18px);
  opacity: 0.82;
}

.contact-transition__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.contact-transition h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  text-shadow:
    0 0 28px rgba(178, 15, 24, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.48);
}

.contact-transition .text-link {
  position: relative;
  display: inline-block;
  color: var(--ade-gold-lit);
  background:
    linear-gradient(105deg, #7b5526 0%, #c19c62 28%, #fff0c8 48%, #b89155 66%, #6f4b1f 100%);
  background-size: 230% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
  text-shadow:
    0 0 16px rgba(210, 188, 138, 0.18),
    0 12px 28px rgba(96, 69, 31, 0.22);
  -webkit-text-fill-color: transparent;
}

.contact-transition .text-link::before {
  position: absolute;
  right: -18px;
  bottom: -9px;
  left: -4px;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(210, 188, 138, 0.70), rgba(255, 246, 218, 0.95), rgba(184, 135, 47, 0.64), transparent);
  box-shadow:
    0 0 14px rgba(210, 188, 138, 0.22),
    0 0 30px rgba(154, 115, 56, 0.14);
  content: "";
  transform-origin: left center;
}

.contact-transition .text-link::after {
  display: none;
}

.escape-drift {
  position: relative;
  display: grid;
  min-height: clamp(260px, 30vw, 410px);
  place-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(22px, 6vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 4, 5, 0.98), rgba(4, 4, 5, 0.52) 42%, rgba(5, 4, 5, 0.98)),
    linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.24) 50%, rgba(3, 3, 3, 0.92)),
    radial-gradient(ellipse at 50% 44%, rgba(178, 15, 24, 0.28), transparent 46%),
    url("../images/textures/escape-red-type-background.jpeg") center 48% / min(58vw, 540px) auto no-repeat,
    linear-gradient(116deg, rgba(12, 10, 12, 0.96), rgba(80, 16, 25, 0.28) 48%, rgba(6, 5, 6, 0.96)),
    #050404;
  border-top: 1px solid rgba(210, 188, 138, 0.12);
  border-bottom: 1px solid rgba(210, 188, 138, 0.14);
  isolation: isolate;
}

.escape-drift::before,
.escape-drift::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.escape-drift::before {
  inset: -18% -12%;
  z-index: 0;
  background:
    linear-gradient(105deg, transparent 0 36%, rgba(255, 246, 218, 0.18) 44%, rgba(178, 15, 24, 0.12) 50%, transparent 60%),
    repeating-linear-gradient(180deg, rgba(255, 246, 218, 0.08) 0 1px, transparent 1px 18px),
    radial-gradient(ellipse at 50% 52%, rgba(178, 15, 24, 0.20), transparent 48%);
  filter: blur(6px);
  opacity: 0.40;
  transform: translate3d(0, 0, 0);
}

.escape-drift::after {
  right: 50%;
  bottom: clamp(34px, 5vw, 66px);
  z-index: 0;
  width: min(62vw, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 218, 0.82), rgba(210, 188, 138, 0.64), rgba(178, 15, 24, 0.32), transparent);
  box-shadow:
    0 0 24px rgba(255, 246, 218, 0.26),
    0 0 70px rgba(178, 15, 24, 0.22);
  transform: translateX(50%);
}

.escape-drift__clouds {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.escape-drift__clouds::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 44%, rgba(255, 246, 218, 0.12) 49%, transparent 55%),
    linear-gradient(90deg, transparent, rgba(178, 15, 24, 0.10), transparent);
  content: "";
  opacity: 0.34;
  transform: translate3d(-8%, 0, 0);
}

.escape-cloud {
  position: absolute;
  display: block;
  width: clamp(230px, 34vw, 520px);
  aspect-ratio: 2.8;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 246, 218, 0.09), rgba(178, 15, 24, 0.16), transparent),
    radial-gradient(ellipse at 50% 52%, rgba(255, 238, 222, 0.08), transparent 58%);
  filter: blur(18px);
  opacity: 0.34;
  transform: translate3d(0, 0, 0);
}

.escape-cloud--one {
  top: 22%;
  left: -6%;
}

.escape-cloud--two {
  right: -10%;
  bottom: 20%;
  width: clamp(280px, 40vw, 640px);
  opacity: 0.34;
}

.escape-cloud--three {
  top: 48%;
  left: 32%;
  width: clamp(180px, 26vw, 410px);
  opacity: 0.28;
}

.escape-star {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 246, 218, 0.78);
  box-shadow:
    0 0 12px rgba(255, 246, 218, 0.44),
    0 0 24px rgba(210, 188, 138, 0.18);
  opacity: 0.28;
}

.escape-star--one { top: 24%; left: 24%; }
.escape-star--two { top: 42%; right: 26%; }
.escape-star--three { bottom: 24%; left: 58%; }

.escape-drift__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.escape-drift h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3.3vw, 3rem);
  text-shadow:
    0 0 28px rgba(255, 246, 218, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.46);
}

.escape-drift p:not(.eyebrow) {
  max-width: 600px;
  margin-inline: auto;
  color: rgba(250, 245, 234, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 8vw, 98px);
  align-items: start;
  min-height: 640px;
  background:
    radial-gradient(ellipse at 78% 44%, rgba(178, 15, 24, 0.26), transparent 42%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.95), rgba(3, 3, 3, 0.66) 54%, rgba(3, 3, 3, 0.92)),
    url("../images/hero/red-silhouette-veil.jpeg") right center / cover no-repeat,
    url("../images/textures/red-cosmos-texture.jpeg") center / cover no-repeat,
    #050404;
}

.contact::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 76% 42%, rgba(178, 15, 24, 0.30), transparent 38%),
    radial-gradient(ellipse at 20% 86%, rgba(184, 135, 47, 0.08), transparent 34%),
    linear-gradient(112deg, transparent 0 54%, rgba(184, 135, 47, 0.06) 61%, transparent 68%);
  opacity: 0.82;
}

.contact::after {
  right: clamp(12px, 6vw, 96px);
  bottom: clamp(18px, 5vw, 72px);
  z-index: 0;
  width: min(24vw, 300px);
  aspect-ratio: 736 / 1308;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.22), rgba(3, 3, 3, 0.76)),
    url("../images/petals/falling-rose-petals.jpeg") center / cover no-repeat;
  filter: saturate(0.76) contrast(1.06) brightness(0.62);
  opacity: 0.22;
  transform: rotate(-6deg);
  mask-image: radial-gradient(ellipse at 52% 52%, #000 0 44%, transparent 74%);
}

.contact__intro address {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-style: normal;
}

.contact__intro::before {
  display: block;
  width: 84px;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--ade-gold-deep), var(--ade-gold-lit), transparent);
  content: "";
  opacity: 0.78;
}

.contact .script-line {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 0;
  padding: 0 0 18px;
  background:
    linear-gradient(100deg, #8f682f 0%, #d2bc8a 24%, #fff1c7 46%, #b99a66 68%, #7b5727 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--ade-script);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.34;
  text-shadow:
    0 0 18px rgba(210, 188, 138, 0.22),
    0 15px 34px rgba(96, 69, 31, 0.26);
  -webkit-text-fill-color: transparent;
}

.contact__intro a {
  color: var(--ade-gold-soft);
  text-decoration: none;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(210, 188, 138, 0.58);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(37, 211, 102, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(210, 188, 138, 0.14), rgba(184, 135, 47, 0.07) 48%, rgba(255, 255, 255, 0.018)),
    rgba(3, 3, 3, 0.38);
  color: var(--ade-gold-soft);
  font-family: var(--ade-rounded);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 0 24px rgba(154, 115, 56, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.contact-whatsapp__icon {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  padding: 5px;
  border-radius: 50%;
  background: #25d366;
  color: #07180d;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 0 10px rgba(37, 211, 102, 0.42),
    0 0 28px rgba(37, 211, 102, 0.18);
}

.contact-whatsapp__label {
  color: inherit;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
  border-color: rgba(210, 188, 138, 0.72);
  color: var(--ade-gold-lit);
  box-shadow:
    inset 0 0 30px rgba(154, 115, 56, 0.12),
    0 0 26px rgba(37, 211, 102, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.contact__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.contact-feature {
  position: relative;
  height: clamp(420px, 41vw, 560px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 47, 0.34);
  background:
    radial-gradient(ellipse at 18% 10%, rgba(255, 246, 218, 0.10), transparent 30%),
    radial-gradient(ellipse at 84% 74%, rgba(178, 15, 24, 0.18), transparent 38%),
    var(--ade-panel);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 0 70px rgba(210, 188, 138, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(178, 15, 24, 0.10);
}

.contact-feature::before,
.contact-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.contact-feature::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0) 34%, rgba(3, 3, 3, 0.28) 70%, rgba(3, 3, 3, 0.70)),
    radial-gradient(ellipse at 18% 12%, rgba(255, 246, 218, 0.16), transparent 34%),
    radial-gradient(ellipse at 84% 18%, rgba(178, 15, 24, 0.14), transparent 44%);
}

.contact-feature::after {
  z-index: 2;
  border: 1px solid rgba(210, 188, 138, 0.24);
  background:
    linear-gradient(90deg, rgba(210, 188, 138, 0), rgba(210, 188, 138, 0.18), rgba(210, 188, 138, 0)) left 16px top 16px / calc(100% - 32px) 1px no-repeat,
    radial-gradient(ellipse at 50% 8%, rgba(255, 246, 218, 0.12), transparent 34%);
  box-shadow:
    inset 0 0 42px rgba(3, 3, 3, 0.20),
    inset 0 -42px 80px rgba(3, 3, 3, 0.34);
}

.contact-feature__images {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  min-height: inherit;
}

.contact-feature img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.04) brightness(0.92);
  transform: scale(1.02);
  transition:
    filter 420ms ease,
    transform 520ms ease;
}

.contact-feature:hover img,
.contact-feature:focus-within img {
  filter: saturate(1) contrast(1.06) brightness(0.98);
  transform: scale(1.045);
}

.contact-feature img:first-child {
  grid-row: 1 / -1;
}

.contact-feature img + img {
  border-left: 1px solid rgba(184, 135, 47, 0.32);
  object-position: center 54%;
}

.contact-feature img:nth-child(3) {
  border-top: 1px solid rgba(184, 135, 47, 0.32);
  object-position: center 48%;
}

.contact-feature figcaption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 3;
  display: grid;
  gap: 5px;
  width: fit-content;
  max-width: calc(100% - 44px);
  padding: 14px 16px 15px;
  border: 1px solid rgba(210, 188, 138, 0.56);
  background:
    radial-gradient(ellipse at 18% 18%, rgba(255, 246, 218, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(3, 3, 3, 0.76), rgba(54, 35, 14, 0.72) 62%, rgba(96, 69, 31, 0.64));
  box-shadow:
    inset 0 0 0 1px rgba(255, 246, 218, 0.06),
    inset 0 0 34px rgba(210, 188, 138, 0.10),
    0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px) saturate(1.08);
}

.contact-feature figcaption strong {
  color: var(--ade-gold-lit);
  font-family: var(--ade-script);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 400;
  line-height: 0.95;
}

.contact-feature figcaption span {
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-feature figcaption .contact-feature__location {
  color: var(--ade-gold-lit);
  font-size: 0.70rem;
}

.contact-feature figcaption a {
  width: fit-content;
  margin-top: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(210, 188, 138, 0.44);
  background:
    linear-gradient(135deg, rgba(210, 188, 138, 0.20), rgba(184, 135, 47, 0.08)),
    rgba(3, 3, 3, 0.42);
  color: var(--ade-white);
  font-family: var(--ade-rounded);
  font-size: 0.60rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-feature figcaption a:hover,
.contact-feature figcaption a:focus-visible {
  border-color: rgba(255, 246, 218, 0.74);
  background:
    linear-gradient(135deg, rgba(210, 188, 138, 0.32), rgba(178, 15, 24, 0.14)),
    rgba(3, 3, 3, 0.46);
  color: #fff4d6;
}

.legal-section {
  display: none;
  padding: clamp(48px, 6vw, 72px) clamp(22px, 6vw, 86px);
  background:
    radial-gradient(ellipse at 12% 24%, rgba(178, 15, 24, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 4, 0.98), rgba(3, 3, 3, 1));
  border-top: 1px solid rgba(184, 135, 47, 0.18);
}

.legal-section:target {
  display: block;
}

.legal-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-section h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

.legal-section p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--ade-muted);
}

.legal-section__back {
  display: inline-flex;
  margin-top: 24px;
  color: var(--ade-gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.enquiry-form {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--ade-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    var(--ade-panel);
}

.enquiry-form fieldset {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  border: 0;
}

.enquiry-form legend {
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 8px;
  background:
    linear-gradient(105deg, #7b5526 0%, #c19c62 26%, #fff0c8 46%, #b89155 68%, #6f4b1f 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--ade-gold-lit);
  font-family: var(--ade-script);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.16;
  text-shadow:
    0 0 18px rgba(210, 188, 138, 0.18),
    0 14px 30px rgba(96, 69, 31, 0.24);
  -webkit-text-fill-color: transparent;
  animation: enquiryLegendShimmer 9s ease-in-out infinite;
}

.enquiry-form label {
  color: var(--ade-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--ade-border-soft);
  background: rgba(0, 0, 0, 0.32);
  color: var(--ade-white);
  font: inherit;
}

.enquiry-form input {
  min-height: 48px;
  padding: 0 14px;
}

.enquiry-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--ade-gold);
  outline: 0;
}

.enquiry-form button {
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
}

.form-note {
  max-width: 34rem;
  margin: 4px 0 0;
  color: rgba(247, 242, 234, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  margin: 18px 0 0;
  color: var(--ade-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(22px, 6vw, 86px);
  background:
    radial-gradient(ellipse at 8% 42%, rgba(178, 15, 24, 0.08), transparent 34%),
    linear-gradient(180deg, #050404, #030303);
  border-top: 1px solid var(--ade-border);
}

.footer-logo {
  width: 96px;
  background: transparent;
}

.site-footer nav ul,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: center;
}

.site-footer a,
.site-footer p {
  color: var(--ade-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.legal-links {
  grid-column: 1 / -1;
  justify-content: end;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(210, 188, 138, 0.54);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(184, 135, 47, 0.20), rgba(3, 3, 3, 0.74)),
    rgba(3, 3, 3, 0.86);
  color: var(--ade-white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.38),
    0 0 30px rgba(154, 115, 56, 0.18);
  font-family: var(--ade-rounded);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.whatsapp-float::before {
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: #38d96f;
  box-shadow: 0 0 16px rgba(56, 217, 111, 0.72);
  content: "";
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: rgba(210, 188, 138, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 58px rgba(0, 0, 0, 0.44),
    0 0 42px rgba(154, 115, 56, 0.28);
  transform: translateY(-2px);
}
