:root {
  --ink: #2a1524;
  --ink-soft: #5a3a4c;
  --blush: #ffd6e4;
  --rose: #f0a0b8;
  --pink: #e8789c;
  --pink-deep: #d45a86;
  --mist: #ffeaf2;
  --pearl: #fff5f9;
  --line: rgba(42, 21, 36, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  background:
    radial-gradient(ellipse 85% 55% at 8% 0%, rgba(255, 190, 214, 0.95), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 12%, rgba(232, 120, 156, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(240, 160, 184, 0.35), transparent 55%),
    linear-gradient(180deg, #fff0f5 0%, var(--mist) 42%, #fce4ee 100%);
  min-height: 100vh;
}

.mist {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
}

/* Logo — vector SVG text, always crisp */
.logo {
  display: block;
  overflow: visible;
}

.logo text {
  paint-order: stroke fill;
}

.logo--nav {
  width: auto;
  height: 2.6rem;
}

.logo--hero {
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(155, 77, 255, 0.18));
}

.logo--footer {
  display: inline-block;
  width: auto;
  height: 1.85rem;
  vertical-align: middle;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 245, 249, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.nav__links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0 auto 0 1.5rem;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav__links a {
  opacity: 0.78;
  transition: opacity 0.2s ease;
}

.nav__links a:hover {
  opacity: 1;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: var(--ink-soft);
}

.lang button.is-active {
  background: var(--pink-deep);
  color: var(--pearl);
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: min(100vh, 920px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  background: radial-gradient(circle, rgba(255, 170, 200, 0.5), rgba(232, 120, 156, 0.2) 45%, transparent 70%);
  filter: blur(8px);
  animation: glowPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  animation: riseIn 1s ease both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__place {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero__brand {
  margin: 0;
  line-height: 0;
}

.hero__tagline {
  margin: 1.1rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 18ch;
}

.hero__lede {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__fairy {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 420px;
  animation: fairyIn 1.2s ease 0.15s both;
}

@keyframes fairyIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.fairy {
  position: relative;
  width: min(100%, 480px);
  animation: fairyHover 4.5s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(140, 50, 100, 0.18));
  z-index: 1;
}

.fairy__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.35rem;
  -webkit-user-drag: none;
  user-select: none;
}

@keyframes fairyHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.butterflies {
  position: absolute;
  inset: -8% -12%;
  pointer-events: none;
  z-index: 3;
}

.butterfly {
  position: absolute;
  width: 28px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 4px 8px rgba(120, 40, 80, 0.2));
}

.bf-wing--l,
.bf-wing--r {
  transform-box: fill-box;
}

.bf-wing--l {
  transform-origin: right center;
  animation: bfWingL 0.28s ease-in-out infinite;
}

.bf-wing--r {
  transform-origin: left center;
  animation: bfWingR 0.28s ease-in-out infinite;
}

@keyframes bfWingL {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.35); }
}

@keyframes bfWingR {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.35); }
}

.butterfly--1 {
  width: 34px;
  top: 18%;
  left: 6%;
  animation: bfPath1 11s ease-in-out infinite;
}

.butterfly--2 {
  width: 26px;
  top: 42%;
  right: 4%;
  animation: bfPath2 9s ease-in-out infinite;
}

.butterfly--3 {
  width: 22px;
  top: 8%;
  right: 18%;
  animation: bfPath3 13s ease-in-out infinite;
}

.butterfly--4 {
  width: 30px;
  bottom: 22%;
  left: 10%;
  animation: bfPath4 10s ease-in-out infinite;
}

.butterfly--5 {
  width: 24px;
  top: 30%;
  left: 48%;
  animation: bfPath5 12s ease-in-out infinite;
}

@keyframes bfPath1 {
  0% { transform: translate(0, 0) rotate(-8deg); }
  25% { transform: translate(40px, -30px) rotate(10deg); }
  50% { transform: translate(70px, 20px) rotate(-4deg); }
  75% { transform: translate(20px, 45px) rotate(12deg); }
  100% { transform: translate(0, 0) rotate(-8deg); }
}

@keyframes bfPath2 {
  0% { transform: translate(0, 0) rotate(6deg); }
  25% { transform: translate(-35px, 25px) rotate(-10deg); }
  50% { transform: translate(-60px, -20px) rotate(8deg); }
  75% { transform: translate(-15px, -40px) rotate(-6deg); }
  100% { transform: translate(0, 0) rotate(6deg); }
}

@keyframes bfPath3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-50px, 40px) rotate(14deg); }
  66% { transform: translate(25px, 55px) rotate(-10deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes bfPath4 {
  0% { transform: translate(0, 0) rotate(4deg); }
  25% { transform: translate(45px, -35px) rotate(-12deg); }
  50% { transform: translate(80px, 10px) rotate(8deg); }
  75% { transform: translate(30px, 30px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(4deg); }
}

@keyframes bfPath5 {
  0% { transform: translate(0, 0) rotate(-6deg); }
  25% { transform: translate(30px, -45px) rotate(10deg); }
  50% { transform: translate(-40px, -20px) rotate(-8deg); }
  75% { transform: translate(15px, 25px) rotate(6deg); }
  100% { transform: translate(0, 0) rotate(-6deg); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 560;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--pink {
  background: linear-gradient(135deg, #f0a0b8, var(--pink) 45%, var(--pink-deep));
  color: #fff;
  border: 0;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(42, 21, 36, 0.2);
  color: var(--ink);
}

.btn--block {
  width: 100%;
  margin-top: 0.55rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 600;
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

.section-lede {
  margin: 0 0 2.5rem;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 2.5rem;
  align-items: start;
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.aside {
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--pink);
  background: rgba(255, 245, 249, 0.75);
}

.aside__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 600;
}

.aside__name {
  margin: 0.55rem 0 0.25rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.aside__meta {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.service h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.service p {
  margin: 0;
  color: var(--ink-soft);
}

.brand-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.brand-notes h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.brand-notes p {
  margin: 0;
  color: var(--ink-soft);
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.price-tab {
  border: 1px solid var(--line);
  background: rgba(255, 245, 249, 0.65);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

.price-tab.is-active {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--pearl);
}

.price-panel[hidden] {
  display: none;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.price-row span {
  color: var(--ink-soft);
}

.price-row strong {
  font-weight: 600;
  white-space: nowrap;
}

.price-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.policy {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.policy h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.policy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.train-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.train-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.train-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px rgba(232, 120, 156, 0.8);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.scent {
  margin: 0;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.address {
  font-style: normal;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(160deg, #3a1f30, #2a1524);
  color: var(--pearl);
}

.address__name {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.address p {
  margin: 0.15rem 0;
}

.address__y {
  margin-top: 1rem !important;
  opacity: 0.7;
  font-size: 0.9rem;
}

.map-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: #ffc2d6;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 194, 214, 0.45);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__content {
    order: 1;
    padding-bottom: 1.5rem;
  }

  .hero__fairy {
    order: 0;
    min-height: 340px;
    max-height: 56vh;
  }

  .fairy {
    width: min(100%, 340px);
  }

  .about__grid,
  .service-list,
  .brand-notes,
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(255, 245, 249, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0.85rem;
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .price-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .price-row strong {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
