:root {
  --blush: #fff5f7;
  --petal: #f7cfd9;
  --rose: #c45c7a;
  --rose-deep: #8f3a55;
  --ink: #3a2430;
  --muted: #7a5a66;
  --line: rgba(196, 92, 122, 0.22);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(143, 58, 85, 0.12);
  --font-script: "Great Vibes", cursive;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(247, 207, 217, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(196, 92, 122, 0.12), transparent 50%),
    linear-gradient(180deg, #fff8fa 0%, var(--blush) 40%, #fdeef2 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--rose-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 0.75rem;
}

.section-intro {
  max-width: 36rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro p:last-child {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* Floating petals */
.petals {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -10vh;
  width: 12px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--petal) 55%, var(--rose) 100%);
  border-radius: 70% 0 70% 0;
  opacity: 0.55;
  animation: fall linear infinite;
  filter: blur(0.2px);
}

@keyframes fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  100% {
    transform: translate3d(var(--drift), 110vh, 0) rotate(720deg);
    opacity: 0;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 248, 250, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 248, 250, 0.92);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-script);
  font-size: 1.55rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease);
}

.nav a:hover {
  color: var(--rose-deep);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  background: var(--rose);
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--rose-deep);
  transform: translateY(-1px);
}

@media (min-width: 820px) {
  .nav { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  border-color: rgba(143, 58, 85, 0.35);
}

.btn-ghost:hover {
  border-color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.45);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 20%;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(58, 36, 48, 0.12) 0%,
      rgba(58, 36, 48, 0.08) 35%,
      rgba(58, 36, 48, 0.28) 58%,
      rgba(58, 36, 48, 0.55) 78%,
      rgba(58, 36, 48, 0.68) 100%
    ),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(143, 58, 85, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(720px, 92vw);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 8.5rem;
  text-align: center;
  color: var(--white);
  animation: riseIn 1.1s var(--ease) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: min(160px, 42vw);
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 8px 24px rgba(58, 36, 48, 0.25));
}

.hero-brand {
  font-family: var(--font-script);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 28px rgba(58, 36, 48, 0.45);
  margin: 0 0 0.65rem;
  line-height: 1.05;
  padding: 0 0.25rem;
}

.hero-place {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-style: italic;
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
  padding: 0 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 16px rgba(58, 36, 48, 0.35);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  padding: 0 0.5rem;
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* About */
.about {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .about {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 12%;
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 207, 217, 0.9), transparent 50%),
    linear-gradient(135deg, var(--petal), transparent);
  z-index: -1;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  margin-bottom: 1.1rem;
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 34rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
  transition: color 0.25s, border-color 0.25s;
}

.text-link:hover {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

/* Works */
.works {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55) 20%, rgba(255, 255, 255, 0.55) 80%, transparent);
}

.works-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 780px) {
  .works-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 560px;
  }

  .work-featured {
    grid-row: 1 / -1;
  }
}

.work {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f3dce3;
  min-height: 240px;
}

.work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.work:hover img {
  transform: scale(1.05);
}

.work figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(transparent, rgba(58, 36, 48, 0.72));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.work-script {
  display: block;
  font-family: var(--font-script);
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1;
}

.work-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Booking */
.booking {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 4rem);
}

.booking-panel {
  display: grid;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 247, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .booking-panel {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.25rem;
  }
}

.calendar.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.calendar-head h3 {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: 1.45rem;
  text-transform: capitalize;
}

.cal-nav {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--rose-deep);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cal-nav:hover {
  background: var(--petal);
  border-color: var(--rose);
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.calendar-weekdays {
  margin-bottom: 0.45rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 500;
}

.day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.day:hover:not(:disabled):not(.is-empty) {
  border-color: var(--line);
  background: rgba(247, 207, 217, 0.35);
}

.day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.day:disabled {
  color: #c9adb6;
  cursor: not-allowed;
}

.day.is-today {
  box-shadow: inset 0 0 0 1px var(--rose);
}

.day.is-selected {
  background: var(--rose);
  color: #fff;
}

.booking-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slots h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.slots-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.5rem;
}

.slot {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem 0.4rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.slot:hover:not(:disabled) {
  border-color: var(--rose);
}

.slot.is-selected {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.slot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-fields {
  display: grid;
  gap: 0.85rem;
}

.booking-fields label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.booking-fields input,
.booking-fields select,
.booking-fields textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196, 92, 122, 0.15);
}

.booking-status {
  margin: 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  color: var(--rose-deep);
}

.booking-status.is-error {
  color: #9b2c2c;
}

/* Entity strip – sits into hero bottom, no gap */
.entity-strip {
  position: relative;
  z-index: 2;
  margin-top: -4.5rem;
  padding: 0 clamp(1.25rem, 5vw, 4rem) 0;
  background: transparent;
  border: 0;
}

.entity-strip.reveal {
  transform: none;
}

.entity-strip.reveal:not(.is-visible) {
  opacity: 0;
}

.entity-strip.reveal.is-visible {
  opacity: 1;
  animation: stripRise 0.9s var(--ease) both;
}

@keyframes stripRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.entity-facts {
  display: grid;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  padding: 1.75rem 1.5rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 247, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(143, 58, 85, 0.14);
  backdrop-filter: blur(10px);
}

@media (min-width: 700px) {
  .entity-facts {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.85rem 0.5rem;
  }

  .entity-facts > div {
    padding: 0.5rem 1.35rem;
    border-right: 1px solid var(--line);
  }

  .entity-facts > div:last-child {
    border-right: 0;
  }
}

.entity-facts > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.entity-facts > div:last-child {
  border-bottom: 0;
}

@media (min-width: 700px) {
  .entity-facts > div {
    border-bottom: 0;
  }
}

.entity-facts dt {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin: 0 0 0.4rem;
}

.entity-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink);
  line-height: 1.35;
}

.entity-facts a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.entity-facts a:hover {
  color: var(--rose-deep);
  border-bottom-color: var(--rose);
}

/* Pull following section up slightly so strip sits in the flow */
.entity-strip + .about {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
}

/* Services */
.services {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
}

.service-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 860px;
  display: grid;
  gap: 0;
}

.service-list li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.4rem;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

/* FAQ */
.faq {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
}

.faq-item h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 4rem) 3rem;
  text-align: center;
  background:
    url("../images/hero-bg.png") center / cover no-repeat;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 245, 247, 0.88), rgba(253, 238, 242, 0.92));
  z-index: -1;
}

.contact-inner {
  max-width: 36rem;
  margin: 0 auto;
}

.contact-place {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--muted);
  margin: 0.5rem auto 1rem;
  line-height: 1.45;
}

.contact-place strong {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}

.contact-channels {
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-note a {
  word-break: break-all;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

.footer-logo {
  margin: 0 auto 0.75rem;
  opacity: 0.9;
}

.footer-meta {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
}

.footer-meta a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--rose-deep);
}

/* Legal pages */
.legal-page {
  position: relative;
  z-index: 1;
  padding: 7rem clamp(1.25rem, 5vw, 4rem) 4rem;
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.legal-body {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-body h2,
.legal-body h3 {
  color: var(--ink);
  margin-top: 1.5rem;
}

.legal-body p {
  margin: 0 0 1rem;
}

/* Popup */
.site-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.site-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 36, 48, 0.45);
}

.site-popup-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: linear-gradient(160deg, #fff, #fff5f7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
}

.site-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.site-popup-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.site-popup-body {
  color: var(--muted);
  margin: 0.75rem 0 1.25rem;
  font-size: 0.95rem;
}

.site-popup-panel h2 {
  font-size: 1.75rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .petal,
  .hero-photo,
  .hero-content,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
