:root {
  --rose-50: #fff8fb;
  --rose-100: #fdeef3;
  --rose-200: #f8dce6;
  --rose-300: #efb9ca;
  --rose-400: #dc8fac;
  --rose-500: #c86d8d;
  --rose-600: #a94d70;
  --rose-700: #823a56;
  --wine: #5e293e;
  --gold-200: #ebdba9;
  --gold-300: #d7bb72;
  --gold-400: #c6a252;
  --gold-500: #a8792a;
  --cream: #fffdf9;
  --ink: #2d2529;
  --muted: #6e6268;
  --line: rgba(82, 49, 61, .12);
  --white: #fff;
  --shadow-sm: 0 12px 40px rgba(93, 45, 64, .09);
  --shadow-md: 0 24px 70px rgba(93, 45, 64, .14);
  --shadow-gold: 0 18px 50px rgba(168, 121, 42, .18);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--wine); background: var(--rose-200); }

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { position: relative; padding: 112px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: padding .3s ease, background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 250, 252, .88);
  border-color: rgba(130, 58, 86, .08);
  box-shadow: 0 10px 40px rgba(82, 49, 61, .07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(168, 121, 42, .35);
  border-radius: 50%;
  color: var(--gold-500);
  background: linear-gradient(145deg, #fff, #fff7f9);
  box-shadow: inset 0 0 0 4px #fff, 0 8px 24px rgba(168, 121, 42, .12);
  font: 700 16px/1 var(--font-display);
  letter-spacing: .03em;
}
.brand-copy { display: grid; line-height: .86; }
.brand-copy strong { color: var(--wine); font: 700 25px/1 var(--font-display); letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--gold-500); font-size: 9px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 21px; }
.main-nav > a:not(.nav-cta):not(.nav-social) { position: relative; color: #574a50; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta):not(.nav-social)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-300), var(--rose-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav > a:not(.nav-cta):not(.nav-social):hover::after,
.main-nav > a:not(.nav-cta):not(.nav-social):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(130, 58, 86, .13);
  border-radius: 50%;
  color: var(--rose-700);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 8px 24px rgba(93, 45, 64, .07);
  transition: transform .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.nav-social span { display: none; }
.nav-social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.nav-social:hover { color: var(--wine); background: var(--white); border-color: rgba(168, 121, 42, .32); box-shadow: 0 12px 30px rgba(93, 45, 64, .12); transform: translateY(-2px); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--rose-600));
  box-shadow: 0 12px 30px rgba(130, 58, 86, .17);
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav-cta svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(130, 58, 86, .24); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); cursor: pointer; }
.menu-toggle span { display: block; width: 19px; height: 1.5px; margin: 4px auto; background: var(--wine); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.hero {
  min-height: 760px;
  padding: 150px 0 106px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 82% 16%, rgba(215, 187, 114, .12), transparent 24%),
    radial-gradient(circle at 8% 40%, rgba(239, 185, 202, .28), transparent 28%),
    linear-gradient(135deg, #fffafc 0%, #fff 50%, #fffaf8 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background-image: radial-gradient(rgba(94, 41, 62, .09) .7px, transparent .7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, #000, transparent 48%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .9fr; align-items: center; gap: 86px; }
.hero-copy { max-width: 660px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--rose-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow-dot { position: relative; flex: 0 0 auto; width: 9px; height: 9px; border: 1px solid var(--gold-400); border-radius: 50%; }
.eyebrow-dot::after { content: ""; position: absolute; inset: 2px; border-radius: inherit; background: var(--gold-400); }
.hero h1 {
  max-width: 730px;
  margin: 0;
  color: var(--wine);
  font: 600 clamp(58px, 6.1vw, 88px)/.91 var(--font-display);
  letter-spacing: -.045em;
}
.hero h1 em { position: relative; color: var(--rose-500); font-weight: 600; }
.hero h1 em::after {
  content: "";
  position: absolute;
  right: 1%;
  bottom: 3px;
  left: 3%;
  height: 7px;
  opacity: .55;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8c50-7 118-6 236-3' fill='none' stroke='%23d7bb72' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}
.hero-text { max-width: 585px; margin: 30px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background-color .25s ease, border-color .25s ease;
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--rose-600), var(--wine)); box-shadow: 0 15px 36px rgba(130, 58, 86, .2); }
.button-primary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90%;
  left: -35%;
  width: 30%;
  height: 280%;
  background: rgba(255,255,255,.32);
  transform: rotate(22deg);
  transition: left .55s ease;
}
.button-primary:hover::before { left: 120%; }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 19px 45px rgba(130, 58, 86, .28); }
.button-ghost { color: var(--wine); background: rgba(255,255,255,.65); border-color: rgba(130, 58, 86, .16); }
.button-ghost:hover { transform: translateY(-3px); background: var(--white); box-shadow: var(--shadow-sm); }
.button-outline { color: var(--wine); border-color: rgba(130, 58, 86, .2); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--wine); transform: translateY(-2px); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 31px; color: #71636a; font-size: 12px; font-weight: 600; }
.hero-notes span { display: inline-flex; align-items: center; gap: 7px; }
.hero-notes i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(215, 187, 114, .17); }

.hero-visual { position: relative; width: min(100%, 470px); margin-left: auto; padding: 22px 27px 20px 23px; }
.hero-frame {
  position: relative;
  height: 565px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.92);
  border-radius: 44% 44% 24px 24px / 19% 19% 24px 24px;
  background: var(--rose-100);
  box-shadow: 0 32px 90px rgba(94, 41, 62, .18), 0 0 0 1px rgba(168,121,42,.17);
}
.hero-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: inherit;
  pointer-events: none;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.02); transition: transform 1.2s cubic-bezier(.22,.61,.36,1); }
.hero-visual:hover .hero-frame img { transform: scale(1.065); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(94,41,62,.18), transparent 32%); }
.frame-line { position: absolute; z-index: 3; width: 80px; height: 1px; background: var(--gold-300); }
.frame-line::before { content: ""; position: absolute; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-300); }
.frame-line-top { top: 23px; right: 25px; }
.frame-line-top::before { right: 0; }
.frame-line-bottom { bottom: 25px; left: 25px; }
.frame-line-bottom::before { left: 0; }
.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 16px;
  background: rgba(255,255,255,.81);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: floating 5s ease-in-out infinite;
}
.floating-card p { display: grid; margin: 0; line-height: 1.25; }
.floating-card strong { color: var(--wine); font-size: 12px; }
.floating-card small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.floating-card-top { top: 75px; right: -54px; }
.floating-card-bottom { bottom: 67px; left: -47px; animation-delay: -2.4s; }
.floating-icon { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; color: var(--gold-500); background: var(--rose-100); }
.mini-swatches { display: flex; }
.mini-swatches span { width: 23px; height: 36px; border: 2px solid var(--white); border-radius: 50% 50% 8px 8px; box-shadow: 0 4px 11px rgba(94,41,62,.08); }
.mini-swatches span:nth-child(1) { background: #f4c8d6; }
.mini-swatches span:nth-child(2) { margin-left: -8px; background: #d98caa; }
.mini-swatches span:nth-child(3) { margin-left: -8px; background: linear-gradient(150deg, #f7e5a9, #bd8c37); }
.hero-sparkle { position: absolute; z-index: 4; fill: var(--gold-300); filter: drop-shadow(0 5px 10px rgba(168,121,42,.15)); animation: twinkle 3.8s ease-in-out infinite; }
.sparkle-one { top: 9px; left: -13px; width: 32px; }
.sparkle-two { right: -6px; bottom: 7px; width: 21px; animation-delay: -1.7s; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { top: 16%; right: -120px; width: 390px; height: 390px; border: 1px solid rgba(215,187,114,.2); }
.hero-glow-one::before, .hero-glow-one::after { content: ""; position: absolute; border: 1px solid rgba(215,187,114,.15); border-radius: inherit; }
.hero-glow-one::before { inset: 45px; }
.hero-glow-one::after { inset: 95px; }
.hero-glow-two { bottom: -180px; left: -120px; width: 400px; height: 400px; background: rgba(248,220,230,.32); filter: blur(70px); }
.scroll-hint {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #8b7b82;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-hint span { position: relative; width: 1px; height: 31px; overflow: hidden; background: rgba(130,58,86,.18); }
.scroll-hint span::after { content: ""; position: absolute; top: -100%; left: 0; width: 1px; height: 50%; background: var(--gold-500); animation: scrollLine 2s ease-in-out infinite; }

.section-heading { margin-bottom: 54px; }
.section-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--gold-500); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.section-kicker::before, .section-kicker::after { content: ""; width: 23px; height: 1px; background: var(--gold-300); }
.section-heading h2, .experience-copy h2, .faq-intro h2 {
  margin: 0;
  color: var(--wine);
  font: 600 clamp(43px, 5vw, 61px)/.98 var(--font-display);
  letter-spacing: -.035em;
}
.section-heading p { max-width: 620px; margin: 19px auto 0; color: var(--muted); }
.heading-centered { max-width: 750px; margin-inline: auto; text-align: center; }
.heading-split { display: grid; grid-template-columns: 1.05fr .8fr; align-items: end; gap: 70px; }
.heading-split p { margin: 0 0 16px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 3px; border-bottom: 1px solid rgba(168,121,42,.35); color: var(--wine); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--gold-500); }

.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 520px;
  padding: 34px 31px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #fff 55%, #fff9fb);
  box-shadow: 0 10px 45px rgba(82,49,61,.05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(215,187,114,.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 24px rgba(215,187,114,.04);
  transition: transform .5s ease;
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(200,109,141,.25); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scale(1.18); }
.service-card.featured { border-color: rgba(215,187,114,.5); background: linear-gradient(155deg, #fff 30%, #fff7ec); box-shadow: var(--shadow-gold); }
.card-badge { position: absolute; top: 22px; right: 22px; padding: 5px 10px; border: 1px solid rgba(168,121,42,.18); border-radius: 999px; color: var(--gold-500); background: rgba(255,255,255,.75); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.service-number { color: rgba(94,41,62,.18); font: 600 15px/1 var(--font-display); }
.service-icon { display: grid; width: 62px; height: 62px; margin: 27px 0 25px; place-items: center; border: 1px solid rgba(200,109,141,.14); border-radius: 22px; color: var(--rose-600); background: var(--rose-50); transition: transform .35s ease, color .35s ease, background-color .35s ease; }
.service-card.featured .service-icon { color: var(--gold-500); border-color: rgba(168,121,42,.18); background: #fffaf0; }
.service-card:hover .service-icon { transform: rotate(-5deg) scale(1.05); }
.service-icon svg { width: 35px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; color: var(--wine); font: 600 30px/1.05 var(--font-display); }
.service-card > p { min-height: 92px; margin: 15px 0 18px; color: var(--muted); font-size: 14px; }
.service-card ul { display: grid; gap: 9px; margin: 0 0 26px; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 18px; color: #5d5157; font-size: 12px; font-weight: 600; }
.service-card li::before { content: ""; position: absolute; top: 8px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-300); }
.service-card > a { position: absolute; bottom: 28px; left: 31px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; color: var(--rose-700); font-size: 12px; font-weight: 700; }
.service-card > a span { color: var(--gold-500); transition: transform .2s ease; }
.service-card > a:hover span { transform: translate(2px,-2px); }

.portfolio { background: linear-gradient(180deg, var(--rose-50), #fff); }
.portfolio-grid { display: grid; grid-template-columns: 1.05fr .9fr .9fr; grid-template-rows: 270px 270px; gap: 18px; }
.portfolio-item { position: relative; margin: 0; overflow: hidden; border-radius: 24px; background: var(--rose-100); box-shadow: 0 15px 45px rgba(82,49,61,.08); }
.portfolio-item.item-tall { grid-row: 1 / 3; }
.portfolio-item.item-wide { grid-column: 2 / 4; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.22,.61,.36,1), filter .5s ease; }
.portfolio-item.item-tall img { object-position: center 48%; }
.portfolio-item.item-wide img { object-position: center 43%; }
.portfolio-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(51,28,38,.74), transparent 55%); opacity: .72; transition: opacity .4s ease; }
.portfolio-item:hover img { transform: scale(1.06); filter: saturate(1.03); }
.portfolio-item:hover::after { opacity: .9; }
.portfolio-item figcaption { position: absolute; right: 22px; bottom: 20px; left: 22px; z-index: 2; display: grid; color: var(--white); transition: transform .35s ease; }
.portfolio-item:hover figcaption { transform: translateY(-3px); }
.portfolio-item figcaption span { margin-bottom: 7px; color: var(--gold-200); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.portfolio-item figcaption strong { font: 600 28px/1 var(--font-display); }
.portfolio-item figcaption small { margin-top: 4px; color: rgba(255,255,255,.75); font-size: 10px; }
.photo-note { margin: 18px 0 0; color: #988b91; font-size: 10px; text-align: right; }

.experience { overflow: hidden; background: var(--white); }
.experience-grid { display: grid; grid-template-columns: .88fr 1fr; align-items: center; gap: 100px; }
.experience-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.experience-card-main {
  position: relative;
  z-index: 3;
  width: min(100%, 390px);
  padding: 66px 46px 54px;
  border: 1px solid rgba(215,187,114,.37);
  border-radius: 46% 46% 28px 28px / 20% 20% 28px 28px;
  background: linear-gradient(150deg, #fff9fb, #fff7ec);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.experience-card-main::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.8); border-radius: inherit; }
.big-quote { position: relative; z-index: 2; display: block; height: 50px; color: var(--gold-400); font: 600 89px/.7 var(--font-display); }
.experience-card-main p { position: relative; z-index: 2; margin: 22px 0; color: var(--wine); font: 600 29px/1.15 var(--font-display); }
.signature { position: relative; z-index: 2; color: var(--rose-600); font: 600 20px/1 var(--font-display); font-style: italic; }
.experience-orbit { position: absolute; border: 1px solid rgba(200,109,141,.14); border-radius: 50%; animation: slowSpin 25s linear infinite; }
.orbit-one { width: 470px; height: 470px; }
.orbit-one::after { content: ""; position: absolute; top: 49px; right: 40px; width: 11px; height: 11px; border: 3px solid var(--white); border-radius: 50%; background: var(--gold-300); box-shadow: var(--shadow-sm); }
.orbit-two { width: 550px; height: 550px; border-style: dashed; border-color: rgba(215,187,114,.16); animation-direction: reverse; animation-duration: 34s; }
.experience-flower { position: absolute; z-index: 4; right: 15px; bottom: 72px; display: grid; width: 70px; height: 70px; place-items: center; border: 1px solid rgba(215,187,114,.25); border-radius: 50%; color: var(--gold-400); background: var(--white); box-shadow: var(--shadow-sm); font-size: 26px; animation: floating 5s ease-in-out infinite; }
.experience-copy > p { margin: 24px 0 31px; color: var(--muted); }
.feature-list { display: grid; }
.feature-list article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.feature-list article:last-child { border-bottom: 1px solid var(--line); }
.feature-index { color: var(--gold-500); font: 600 14px/1 var(--font-display); }
.feature-list h3 { margin: -4px 0 4px; color: var(--wine); font: 600 23px/1.1 var(--font-display); }
.feature-list p { margin: 0; color: var(--muted); font-size: 13px; }

.process { padding-top: 30px; background: var(--white); }
.process-shell { position: relative; padding: 82px 70px 70px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, #5c293d 0%, #7a3652 50%, #4d2636 100%); box-shadow: 0 30px 90px rgba(94,41,62,.21); }
.process-shell::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.8) .7px, transparent .7px); background-size: 25px 25px; mask-image: linear-gradient(to bottom, #000, transparent 75%); }
.process-shell::after { content: ""; position: absolute; top: -145px; right: -100px; width: 380px; height: 380px; border: 1px solid rgba(235,219,169,.18); border-radius: 50%; box-shadow: inset 0 0 0 48px rgba(235,219,169,.025); }
.heading-centered.light { position: relative; z-index: 2; }
.heading-centered.light .section-kicker { color: var(--gold-200); }
.heading-centered.light h2 { color: var(--white); }
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; align-items: center; gap: 17px; }
.process-grid article { min-height: 235px; padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.055); backdrop-filter: blur(4px); transition: transform .3s ease, background-color .3s ease, border-color .3s ease; }
.process-grid article:hover { transform: translateY(-7px); border-color: rgba(235,219,169,.28); background: rgba(255,255,255,.085); }
.process-grid article > span { color: rgba(255,255,255,.28); font: 600 12px/1 var(--font-display); }
.process-icon { display: grid; width: 52px; height: 52px; margin: 21px 0 20px; place-items: center; border: 1px solid rgba(235,219,169,.28); border-radius: 17px; color: var(--gold-200); background: rgba(255,255,255,.06); }
.process-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.process-grid h3 { margin: 0 0 7px; color: var(--white); font: 600 23px/1.1 var(--font-display); }
.process-grid p { margin: 0; color: rgba(255,255,255,.67); font-size: 12px; }
.process-arrow { color: rgba(235,219,169,.55); font: 300 27px/1 var(--font-display); text-align: center; }
.process-action { position: relative; z-index: 2; margin-top: 37px; text-align: center; }
.button-light { color: var(--wine); background: var(--white); box-shadow: 0 15px 40px rgba(0,0,0,.15); }
.button-light:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(0,0,0,.23); }

.faq { background: linear-gradient(180deg, #fff, var(--rose-50)); }
.faq-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 94px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p { margin: 22px 0 30px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger { display: grid; grid-template-columns: 1fr 32px; align-items: center; gap: 20px; width: 100%; padding: 25px 0; border: 0; background: transparent; color: var(--wine); text-align: left; cursor: pointer; }
.accordion-trigger span { font: 600 23px/1.15 var(--font-display); }
.accordion-trigger i { position: relative; width: 29px; height: 29px; border: 1px solid rgba(130,58,86,.15); border-radius: 50%; }
.accordion-trigger i::before, .accordion-trigger i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--rose-600); transform: translate(-50%,-50%); transition: transform .25s ease; }
.accordion-trigger i::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-trigger[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { overflow: hidden; }
.accordion-panel p { max-width: 670px; margin: -4px 50px 25px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding-top: 20px; background: var(--rose-50); }
.cta-shell { position: relative; padding: 93px 30px; overflow: hidden; border: 1px solid rgba(215,187,114,.35); border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff 10%, #fff7fa 55%, #fff8ec); text-align: center; box-shadow: var(--shadow-sm); }
.cta-content { position: relative; z-index: 3; max-width: 700px; margin: auto; }
.cta-content h2 { margin: 0; color: var(--wine); font: 600 clamp(47px, 6vw, 68px)/.95 var(--font-display); letter-spacing: -.04em; }
.cta-content p { max-width: 590px; margin: 22px auto 31px; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cta-decoration { position: absolute; border-radius: 50%; }
.cta-decoration-one { top: -140px; left: -85px; width: 390px; height: 390px; border: 1px solid rgba(200,109,141,.13); box-shadow: inset 0 0 0 53px rgba(248,220,230,.15); }
.cta-decoration-two { right: -115px; bottom: -195px; width: 430px; height: 430px; background: rgba(235,219,169,.16); box-shadow: inset 0 0 0 67px rgba(255,255,255,.34); }
.cta-star { position: absolute; z-index: 2; color: var(--gold-300); animation: twinkle 4s ease-in-out infinite; }
.star-a { top: 58px; left: 18%; font-size: 27px; }
.star-b { right: 16%; bottom: 64px; font-size: 19px; animation-delay: -2s; }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.69); background: #321e27; }
.site-footer .brand-mark { color: var(--gold-200); background: rgba(255,255,255,.04); border-color: rgba(235,219,169,.27); box-shadow: inset 0 0 0 4px rgba(255,255,255,.03); }
.site-footer .brand-copy strong { color: var(--white); }
.site-footer .brand-copy small { color: var(--gold-200); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .55fr .8fr; gap: 70px; padding-bottom: 50px; }
.footer-brand p { max-width: 290px; margin: 20px 0 0; font-size: 13px; }
.footer-links, .footer-contact { display: grid; align-content: start; justify-items: start; gap: 10px; }
.footer-links strong, .footer-contact strong { margin-bottom: 5px; color: var(--white); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a, .footer-contact a { font-size: 13px; transition: color .2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-200); }
.footer-contact small { max-width: 220px; font-size: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--gold-200); }

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.floating-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.floating-social:hover { transform: translateY(-4px); }
.floating-social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.floating-instagram {
  width: 50px;
  padding: 0;
  color: var(--wine);
  background: rgba(255,255,255,.94);
  border-color: rgba(130,58,86,.14);
  box-shadow: 0 14px 34px rgba(94,41,62,.17);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.floating-instagram span { display: none; }
.floating-instagram:hover { border-color: rgba(168,121,42,.32); box-shadow: 0 18px 40px rgba(94,41,62,.23); }
.floating-whatsapp {
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-500), var(--wine));
  box-shadow: 0 16px 40px rgba(94,41,62,.29);
}
.floating-whatsapp:hover { box-shadow: 0 21px 48px rgba(94,41,62,.36); }

.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,.61,.36,1); transition-delay: var(--delay, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes floating { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(.6deg); } }
@keyframes twinkle { 0%,100% { transform: scale(.8) rotate(0); opacity: .5; } 50% { transform: scale(1.12) rotate(18deg); opacity: 1; } }
@keyframes scrollLine { 0% { top: -60%; } 65%,100% { top: 120%; } }
@keyframes slowSpin { to { transform: rotate(360deg); } }



/* SEO/AEO content blocks and local signals */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.local-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(168,121,42,.12);
  border-bottom: 1px solid rgba(168,121,42,.16);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 38px rgba(82,49,61,.045);
}
.local-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 104px;
}
.local-strip-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 23px 26px;
}
.local-strip-grid > div + div { border-left: 1px solid var(--line); }
.local-strip-grid p { display: grid; margin: 0; line-height: 1.25; }
.local-strip-grid strong { color: var(--wine); font: 600 19px/1.1 var(--font-display); }
.local-strip-grid small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 600; }
.local-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(168,121,42,.2);
  border-radius: 50%;
  color: var(--gold-500);
  background: linear-gradient(145deg, #fff, #fff8ec);
  box-shadow: 0 8px 22px rgba(168,121,42,.09);
  font-size: 16px;
}

.choice-guide {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(239,185,202,.26), transparent 25%),
    radial-gradient(circle at 88% 88%, rgba(235,219,169,.22), transparent 27%),
    linear-gradient(180deg, #fffafc, #fff);
}
.answer-summary {
  display: grid;
  grid-template-columns: 47px 1fr;
  align-items: center;
  gap: 17px;
  max-width: 930px;
  margin: 0 auto 25px;
  padding: 22px 25px;
  border: 1px solid rgba(168,121,42,.25);
  border-radius: 19px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-sm);
}
.answer-summary > span {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-500);
  background: #fff7e8;
  font-size: 20px;
}
.answer-summary p { margin: 0; color: var(--muted); font-size: 14px; }
.answer-summary strong { color: var(--wine); }
.answer-summary b { color: var(--rose-700); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.choice-grid article {
  position: relative;
  min-height: 230px;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 13px 45px rgba(82,49,61,.055);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.choice-grid article::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -67px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(215,187,114,.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(215,187,114,.035);
}
.choice-grid article:hover { transform: translateY(-7px); border-color: rgba(200,109,141,.25); box-shadow: var(--shadow-md); }
.choice-label {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(200,109,141,.16);
  border-radius: 999px;
  color: var(--rose-700);
  background: var(--rose-50);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.choice-grid h3 { margin: 27px 0 11px; color: var(--wine); font: 600 31px/1 var(--font-display); }
.choice-grid p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; }
.choice-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 930px;
  margin: 31px auto 0;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}
.choice-action p { margin: 0; color: var(--muted); font-size: 14px; }
.choice-action .button { flex: 0 0 auto; }

.photo-note a { color: var(--rose-700); font-weight: 700; }
.photo-note a:hover { color: var(--gold-500); }
.service-card > p strong { color: var(--wine); }
.accordion-item > h3 { margin: 0; font: inherit; }
.footer-contact { margin: 0; font-style: normal; }
.footer-contact > span { color: rgba(255,255,255,.8); font-size: 13px; }

@media (max-width: 1060px) {
  .main-nav { gap: 20px; }
  .main-nav > a:not(.nav-cta):not(.nav-social) { font-size: 13px; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(54px, 6.3vw, 74px); }
  .floating-card-top { right: -20px; }
  .floating-card-bottom { left: -20px; }
  .experience-grid { gap: 55px; }
  .faq-grid { gap: 55px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .site-header { padding: 12px 0; }
  .menu-toggle { position: relative; z-index: 1002; display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 95px 32px 40px;
    background: rgba(255,250,252,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.nav-cta):not(.nav-social) { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--wine); font: 600 29px/1 var(--font-display); }
  .main-nav > a:not(.nav-cta):not(.nav-social)::after { display: none; }
  .nav-social {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--wine);
    background: transparent;
    box-shadow: none;
    font: 600 29px/1 var(--font-display);
  }
  .nav-social span { display: inline; }
  .nav-social svg { width: 22px; height: 22px; }
  .nav-social:hover { background: transparent; border-color: var(--line); box-shadow: none; transform: none; }
  .nav-cta { justify-content: center; margin-top: 24px; min-height: 54px; }
  .hero { min-height: auto; padding: 132px 0 95px; }
  .hero-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 720px; text-align: center; margin: auto; }
  .eyebrow { justify-content: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { width: min(100%, 460px); margin: auto; }
  .scroll-hint { display: none; }
  .service-grid { grid-template-columns: 1fr; max-width: 680px; margin: auto; }
  .service-card { min-height: 420px; }
  .service-card > p { min-height: auto; }
  .heading-split { grid-template-columns: 1fr; gap: 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 260px 290px; }
  .portfolio-item.item-tall { grid-row: 1 / 3; }
  .portfolio-item.item-wide { grid-column: 1 / 3; }
  .experience-grid { grid-template-columns: 1fr; gap: 70px; }
  .experience-copy { max-width: 680px; margin: auto; }
  .process-shell { padding: 72px 35px 55px; }
  .process-grid { grid-template-columns: 1fr; max-width: 650px; margin: auto; }
  .process-grid article { min-height: auto; }
  .process-arrow { transform: rotate(90deg); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; max-width: 650px; }
  .footer-grid { grid-template-columns: 1.2fr .7fr .8fr; gap: 35px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 22px; }
  .hero { padding: 119px 0 82px; }
  .eyebrow-dot { display: none; }
  .hero h1 { font-size: clamp(48px, 15.5vw, 66px); }
  .hero-text { margin-top: 23px; font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-notes { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .hero-visual { padding: 11px; }
  .hero-frame { height: 500px; border-radius: 42% 42% 20px 20px / 17% 17% 20px 20px; }
  .floating-card { min-width: 166px; padding: 11px 13px; }
  .floating-card-top { top: 64px; right: -2px; }
  .floating-card-bottom { bottom: 45px; left: -2px; }
  .sparkle-one { left: 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .experience-copy h2, .faq-intro h2 { font-size: clamp(40px, 12vw, 51px); }
  .service-card { min-height: 454px; padding: 29px 25px; }
  .service-card > a { left: 25px; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 360px); }
  .portfolio-item.item-tall, .portfolio-item.item-wide { grid-column: auto; grid-row: auto; }
  .photo-note { text-align: left; }
  .experience-visual { min-height: 470px; }
  .experience-card-main { padding: 60px 32px 46px; }
  .experience-card-main p { font-size: 26px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 455px; height: 455px; }
  .experience-flower { right: 2px; bottom: 48px; width: 57px; height: 57px; }
  .process { padding-top: 10px; }
  .process-shell { padding: 62px 20px 42px; border-radius: 28px; }
  .process-grid article { padding: 24px; }
  .accordion-trigger span { font-size: 21px; }
  .accordion-panel p { margin-right: 0; }
  .cta-shell { padding: 75px 22px; border-radius: 28px; }
  .cta-content h2 { font-size: clamp(45px, 13vw, 58px); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cta-actions { display: grid; }
  .floating-contact { right: 14px; bottom: 14px; gap: 8px; }
  .floating-social { width: 51px; height: 51px; min-height: 51px; padding: 0; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .local-strip-grid > div { padding-inline: 18px; }
  .local-strip-grid strong { font-size: 18px; }
  .choice-grid article { padding: 27px 23px; }
}

@media (max-width: 900px) {
  .local-strip-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .local-strip-grid > div { justify-content: flex-start; padding: 15px 6px; }
  .local-strip-grid > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .choice-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .choice-grid article { min-height: 0; }
  .choice-action { max-width: 680px; }
}

@media (max-width: 620px) {
  .answer-summary { grid-template-columns: 39px 1fr; padding: 18px; }
  .answer-summary > span { width: 39px; height: 39px; }
  .choice-action { align-items: stretch; flex-direction: column; }
  .choice-action .button { width: 100%; }
  .local-strip-grid strong { font-size: 17px; }
}
