:root {
  --ink: #28191e;
  --muted: #7d656b;
  --paper: #fff8f6;
  --white: #ffffff;
  --blush: #f6d7dd;
  --rose: #b95c77;
  --rose-dark: #84354c;
  --wine: #2f1820;
  --gold: #d9b56f;
  --line: rgba(132, 53, 76, 0.14);
  --free: #7ca686;
  --busy: #c66766;
  --pending: #d7a64d;
  --shadow: 0 24px 64px rgba(132, 53, 76, 0.16);
  --shadow-strong: 0 36px 96px rgba(132, 53, 76, 0.24);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-line: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

main,
section,
article,
div {
  min-width: 0;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(246, 215, 221, 0.72), transparent 32vw),
    radial-gradient(circle at 88% 16%, rgba(217, 181, 111, 0.18), transparent 24vw),
    linear-gradient(180deg, #fffaf8 0%, #f7e2e4 46%, #fff7f4 100%);
  margin: 0;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body::before {
  animation: ambientGlow 18s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.86), transparent 100px),
    radial-gradient(circle at 78% 42%, rgba(246, 215, 221, 0.46), transparent 170px),
    radial-gradient(circle at 38% 82%, rgba(217, 181, 111, 0.14), transparent 210px);
  inset: 0;
}

body::after {
  animation: petalFloat 24s linear infinite;
  background-image:
    radial-gradient(ellipse at center, rgba(246, 168, 187, 0.34) 0 24%, transparent 26%),
    radial-gradient(ellipse at center, rgba(255, 235, 239, 0.58) 0 20%, transparent 22%);
  background-position:
    14% 22%,
    84% 72%;
  background-repeat: no-repeat;
  background-size:
    46px 18px,
    34px 14px;
  inset: 0;
  opacity: 0.72;
}

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

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

svg {
  height: 18px;
  width: 18px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(24px);
  background: rgba(255, 248, 246, 0.74);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 68px;
  padding: 10px clamp(14px, 4vw, 58px);
  position: sticky;
  top: 0;
  z-index: 30;
}

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

.brand img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  height: 46px;
  padding: 5px;
  width: 46px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--rose-dark);
}

.header-cta,
.button,
.quick-actions a,
.contact-buttons a,
.icon-button,
.floating-whatsapp {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.header-cta,
.primary,
.floating-whatsapp {
  background: linear-gradient(135deg, #d78198, var(--rose-dark));
  box-shadow: 0 18px 38px rgba(132, 53, 76, 0.28);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.header-cta::after,
.primary::after,
.floating-whatsapp::after {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.5) 48%, transparent 100%);
  content: "";
  height: 160%;
  left: -120%;
  pointer-events: none;
  position: absolute;
  top: -30%;
  transform: rotate(12deg);
  transition: left 620ms ease;
  width: 70%;
}

.header-cta:hover::after,
.primary:hover::after,
.floating-whatsapp:hover::after {
  left: 125%;
}

.header-cta {
  justify-self: end;
  padding: 0 18px;
}

.button {
  padding: 0 20px;
}

.glass,
.soft {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--rose-dark);
}

.dark-soft {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.full {
  width: 100%;
}

.header-cta:hover,
.button:hover,
.quick-actions a:hover,
.contact-buttons a:hover,
.icon-button:hover,
.floating-whatsapp:hover {
  box-shadow:
    var(--shadow-strong),
    0 0 32px rgba(217, 181, 111, 0.18);
  transform: translateY(-4px) scale(1.01);
}

.icon-button:disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - 68px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 74px) clamp(14px, 5vw, 74px) clamp(34px, 6vw, 86px);
  position: relative;
}

.hero-background {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: -2;
}

.hero-background img {
  animation: softZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.02) contrast(1.03);
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 1;
  width: 100%;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 246, 244, 0.9) 0%, rgba(255, 239, 242, 0.6) 44%, rgba(49, 24, 32, 0.28) 100%),
    linear-gradient(180deg, rgba(48, 22, 31, 0.08), rgba(48, 22, 31, 0.5)),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.72), transparent 260px),
    radial-gradient(circle at 72% 18%, rgba(217, 181, 111, 0.2), transparent 220px);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero::after {
  animation: petalFloat 22s linear infinite;
  background-image:
    radial-gradient(ellipse at center, rgba(255, 234, 238, 0.54) 0 20%, transparent 22%),
    radial-gradient(ellipse at center, rgba(220, 133, 154, 0.28) 0 18%, transparent 20%);
  background-position:
    16% 20%,
    82% 68%;
  background-repeat: no-repeat;
  background-size:
    52px 20px,
    38px 16px;
  content: "";
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.8fr);
  margin: 0 auto;
  max-width: 1240px;
  min-height: calc(100svh - 150px);
}

.hero-copy {
  backdrop-filter: blur(24px);
  background: linear-gradient(145deg, rgba(255, 250, 248, 0.72), rgba(255, 235, 239, 0.32));
  border: 1px solid var(--glass-line);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  padding: clamp(22px, 4vw, 46px);
  position: relative;
}

.hero-copy::after {
  background:
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.72), transparent),
    radial-gradient(circle, rgba(217, 181, 111, 0.18), transparent 64%);
  border-radius: inherit;
  content: "";
  inset: 1px;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  animation: logoGlow 5.6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(217, 181, 111, 0.32);
  border-radius: 28px;
  box-shadow: var(--shadow);
  height: clamp(104px, 11vw, 132px);
  padding: 12px;
  width: clamp(104px, 11vw, 132px);
}

[data-reveal],
.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

[data-reveal].is-visible,
.reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-top: 18px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  color: var(--rose-dark);
  font-size: clamp(44px, 5.8vw, 72px);
  line-height: 0.95;
  margin: 14px 0 18px;
  max-width: 580px;
}

h2 {
  color: var(--wine);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.hero-copy p {
  color: #744354;
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-visual {
  position: relative;
}

.hero-main-photo {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-floating-card {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  bottom: 0;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  grid-template-columns: 76px 1fr;
  left: 0;
  padding: 12px;
  position: absolute;
  width: min(320px, 78vw);
}

.hero-floating-card img {
  border-radius: 18px;
  height: 76px;
  object-fit: cover;
  width: 76px;
}

.hero-floating-card span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-floating-card strong {
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.quick-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  padding: 24px clamp(14px, 5vw, 74px);
}

.quick-actions a,
.contact-buttons a {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(132, 53, 76, 0.1);
  color: var(--rose-dark);
  min-height: 68px;
}

.section,
.booking-section,
.location-section,
.contacts-section {
  padding: clamp(58px, 8vw, 106px) clamp(14px, 5vw, 74px);
  position: relative;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 820px;
}

.section-head p,
.location-section p,
.instagram-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 238, 241, 0.42));
}

.service-grid {
  display: grid;
  gap: 22px;
}

.service-card,
.service-category,
.booking-card,
.calendar-card,
.instagram-card,
.google-calendar-panel {
  backdrop-filter: blur(20px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 244, 0.7)),
    radial-gradient(circle at 86% 8%, rgba(217, 181, 111, 0.12), transparent 170px);
  border: 1px solid var(--glass-line);
  border-radius: 30px;
  box-shadow:
    0 20px 58px rgba(132, 53, 76, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.service-category {
  padding: clamp(16px, 3vw, 28px);
}

.service-category-head {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.service-category-head h3 {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
}

.service-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.extras-category {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 246, 0.66)),
    radial-gradient(circle at 88% 10%, rgba(217, 181, 111, 0.16), transparent 180px);
}

.extras-intro {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.extra-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.extra-chip {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(132, 53, 76, 0.1);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px 14px;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
  width: min(100%, 420px);
}

.extra-chip:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.extra-chip h4 {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  margin: 0 0 4px;
}

.extra-chip p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.extra-tag {
  align-items: center;
  border: 1px solid rgba(132, 53, 76, 0.12);
  border-radius: 999px;
  color: var(--rose-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
}

.service-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 190px;
  padding: 18px;
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.service-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 50%);
  border-radius: inherit;
  content: "";
  inset: 1px;
  pointer-events: none;
  position: absolute;
}

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

.service-card:hover {
  border-color: rgba(217, 181, 111, 0.38);
  box-shadow: var(--shadow-strong);
  transform: perspective(900px) translateY(-8px) rotateX(2deg);
}

.service-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--blush), rgba(217, 181, 111, 0.26));
  border-radius: 20px;
  color: var(--rose-dark);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.service-card h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.service-meta {
  display: grid;
  gap: 8px;
}

.service-meta span {
  align-items: center;
  background: rgba(132, 53, 76, 0.08);
  border-radius: 999px;
  color: var(--rose-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  padding: 8px 10px;
  width: fit-content;
}

.service-meta span:last-child {
  background: rgba(217, 181, 111, 0.18);
  color: var(--wine);
  font-size: 14px;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 248, 0.84), rgba(255, 246, 247, 0.56)),
    radial-gradient(circle at 88% 18%, rgba(217, 181, 111, 0.14), transparent 220px);
}

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

.gallery-item {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: zoom-in;
  min-height: 0;
  padding: 0;
}

.gallery-item.tall {
  grid-row: span 3;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:not(.tall):not(.wide) {
  grid-row: span 2;
}

.gallery-grid img {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition:
    filter 300ms ease,
    transform 300ms ease;
}

.gallery-item:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: translateY(-5px) scale(1.01);
}

.gallery-cta {
  margin-top: 18px;
}

.instagram-section,
.reviews-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 246, 0.56), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 14% 20%, rgba(246, 215, 221, 0.52), transparent 250px);
}

.instagram-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
}

.instagram-profile,
.instagram-feed-placeholder,
.review-card,
.location-info-card {
  backdrop-filter: blur(22px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 241, 244, 0.64)),
    radial-gradient(circle at 88% 10%, rgba(217, 181, 111, 0.14), transparent 160px);
  border: 1px solid var(--glass-line);
  border-radius: 30px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.instagram-profile {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 132px 1fr;
  padding: clamp(18px, 3vw, 30px);
}

.instagram-profile img {
  border: 1px solid rgba(217, 181, 111, 0.22);
  border-radius: 34px;
  height: 132px;
  object-fit: cover;
  width: 132px;
}

.instagram-profile h2 {
  font-size: clamp(26px, 4vw, 48px);
  overflow-wrap: anywhere;
}

.instagram-feed-placeholder {
  align-content: center;
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 24px;
}

.instagram-feed-placeholder span,
.location-info-card span {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.instagram-feed-placeholder strong,
.location-info-card h3 {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.instagram-feed-placeholder p,
.review-card p {
  color: var(--muted);
  line-height: 1.6;
}

.reviews-carousel {
  display: grid;
  min-height: 260px;
  position: relative;
}

.review-card {
  align-content: center;
  display: grid;
  gap: 16px;
  grid-area: 1 / 1;
  opacity: 0;
  padding: clamp(22px, 5vw, 46px);
  transform: translateX(18px) scale(0.98);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.review-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}

.stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0;
}

.review-card p {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.16;
  margin: 0;
}

.review-card strong {
  color: var(--rose-dark);
}

.review-controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.availability-section {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(248, 224, 229, 0.54)),
    radial-gradient(circle at 90% 12%, rgba(246, 215, 221, 0.62), transparent 250px);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.legend span {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
}

.dot {
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.free {
  background: var(--free);
}

.busy {
  background: var(--busy);
}

.pending {
  background: var(--pending);
}

.calendar-layout {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.calendar-card {
  padding: clamp(16px, 3vw, 28px);
}

.calendar-status {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--rose-dark);
  display: flex;
  font-size: 14px;
  font-weight: 850;
  gap: 10px;
  line-height: 1.4;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.month-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.month-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.icon-button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--rose-dark);
  height: 44px;
  width: 44px;
}

.calendar-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekday {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  padding: 6px 0;
  text-align: center;
  text-transform: uppercase;
}

.day-button {
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font-weight: 950;
  place-items: center;
  position: relative;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.day-button:hover:not(.is-empty) {
  border-color: rgba(217, 181, 111, 0.42);
  box-shadow: 0 14px 28px rgba(132, 53, 76, 0.14);
  transform: translateY(-2px);
}

.day-button::after {
  border-radius: 999px;
  bottom: 7px;
  content: "";
  height: 5px;
  position: absolute;
  width: 20px;
}

.day-button.is-empty {
  background: transparent;
  border: 0;
}

.day-button.is-free::after {
  background: var(--free);
}

.day-button.is-busy::after {
  background: var(--busy);
}

.day-button.is-pending::after {
  background: var(--pending);
}

.day-button.is-closed {
  opacity: 0.42;
}

.day-button.is-unavailable {
  cursor: not-allowed;
  opacity: 0.58;
}

.day-button.is-unavailable::after {
  background: rgba(132, 53, 76, 0.18);
}

.google-calendar-panel {
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.availability-panel {
  align-content: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 215, 221, 0.58)),
    radial-gradient(circle at 80% 18%, rgba(217, 181, 111, 0.22), transparent 220px);
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: clamp(18px, 3vw, 30px);
}

.availability-panel-top h3 {
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
  margin: 8px 0 10px;
}

.availability-panel-top p:last-child,
.availability-count-card p,
.availability-readonly-note {
  color: var(--muted);
  line-height: 1.55;
}

.availability-focus,
.availability-count-card,
.availability-readonly-note,
.availability-empty-state,
.slot-choice {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 40px rgba(132, 53, 76, 0.08);
}

.availability-focus,
.availability-count-card {
  border-radius: 24px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.availability-focus span,
.availability-count-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.availability-focus strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
}

.availability-count-card strong {
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.95;
}

.availability-slot-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slot-choice {
  border-radius: 22px;
  color: var(--rose-dark);
  cursor: pointer;
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 14px;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.slot-choice strong {
  font-size: 18px;
}

.slot-choice span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.slot-choice:hover {
  border-color: rgba(217, 181, 111, 0.52);
  box-shadow: 0 18px 38px rgba(132, 53, 76, 0.14);
  transform: translateY(-2px);
}

.availability-empty-state {
  border-radius: 22px;
  color: var(--muted);
  grid-column: 1 / -1;
  padding: 18px;
}

.availability-booking-link {
  margin-top: 2px;
}

.availability-readonly-note {
  align-items: flex-start;
  border-radius: 22px;
  display: flex;
  gap: 10px;
  padding: 16px;
}

.booking-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 246, 0.44), rgba(255, 255, 255, 0.16)),
    url("./assets/brows-04.jpeg") right center / min(46vw, 620px) auto no-repeat;
}

.booking-card {
  margin: 0 auto;
  max-width: 960px;
  padding: clamp(18px, 4vw, 40px);
}

.booking-form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  min-height: 52px;
  padding: 0 14px;
  width: 100%;
}

textarea {
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.calendar-note {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 14px;
}

.location-section {
  background:
    linear-gradient(135deg, rgba(47, 24, 32, 0.96), rgba(111, 54, 70, 0.94)),
    url("./assets/brows-03.jpeg") center / cover;
  color: var(--white);
}

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

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

.location-section p {
  color: rgba(255, 255, 255, 0.78);
}

.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
}

.map-shell {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(246, 215, 221, 0.08)),
    radial-gradient(circle at 50% 50%, rgba(217, 181, 111, 0.2), transparent 240px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.25);
  height: min(64vh, 560px);
  min-height: 360px;
  overflow: hidden;
  transform: translateZ(0);
  width: 100%;
  position: relative;
}

.map-shell iframe {
  border: 0;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

.map-fallback {
  align-content: center;
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 10px;
  inset: 0;
  justify-items: center;
  padding: 24px;
  position: absolute;
  text-align: center;
}

.map-fallback svg {
  color: var(--gold);
  height: 34px;
  width: 34px;
}

.map-fallback strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
}

.map-fallback span {
  color: rgba(255, 255, 255, 0.7);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.location-info-card {
  align-content: center;
  color: var(--ink);
  display: grid;
  gap: 12px;
  padding: 24px;
}

.location-info-card p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.contacts-section {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
}

.instagram-card {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 120px 1fr;
  padding: 22px;
}

.instagram-card img {
  border-radius: 28px;
  height: 120px;
  object-fit: cover;
  width: 120px;
}

.instagram-card h2 {
  font-size: clamp(26px, 3vw, 42px);
  overflow-wrap: anywhere;
}

.contact-buttons {
  display: grid;
  gap: 12px;
}

.floating-whatsapp {
  bottom: 16px;
  padding: 0 18px;
  position: fixed;
  right: 16px;
  z-index: 40;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 24px clamp(14px, 5vw, 74px);
}

.lightbox {
  align-items: center;
  background: rgba(47, 24, 32, 0.84);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 14px;
  inset: 0;
  justify-items: center;
  padding: 24px;
  position: fixed;
  z-index: 100;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.36);
  max-height: 82vh;
  max-width: min(980px, 92vw);
  object-fit: contain;
}

.lightbox p {
  color: var(--white);
  font-weight: 850;
  margin: 0;
  text-align: center;
}

.lightbox-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  position: fixed;
  right: 18px;
  top: 18px;
  width: 48px;
}

@keyframes softZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08) translateY(-10px);
  }
}

@keyframes petalFloat {
  from {
    background-position:
      14% 22%,
      84% 72%;
    transform: translateY(0) rotate(0deg);
  }
  to {
    background-position:
      18% 80%,
      76% 18%;
    transform: translateY(-22px) rotate(2deg);
  }
}

@keyframes ambientGlow {
  from {
    opacity: 0.5;
    transform: translateY(0);
  }
  to {
    opacity: 0.95;
    transform: translateY(-18px);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow:
      var(--shadow),
      0 0 0 rgba(217, 181, 111, 0);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      var(--shadow-strong),
      0 0 38px rgba(217, 181, 111, 0.24);
    transform: translateY(-2px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-shell,
  .calendar-layout,
  .contacts-section,
  .instagram-showcase,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 110px;
  }

  .hero-floating-card {
    left: 18px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 9px 12px;
  }

  .brand img {
    height: 42px;
    width: 42px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small,
  .header-cta span {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 64px);
    padding: 24svh 14px 34px;
  }

  .hero-shell {
    gap: 18px;
    align-items: end;
    min-height: calc(66svh - 98px);
  }

  .hero-copy {
    backdrop-filter: blur(18px);
    background: linear-gradient(145deg, rgba(255, 250, 248, 0.78), rgba(255, 235, 239, 0.42));
    border-radius: 28px;
    max-width: 100%;
    overflow: hidden;
    padding: 18px 16px;
    width: calc(100vw - 28px);
  }

  .hero-logo {
    height: 86px;
    width: 86px;
  }

  h1 {
    font-size: clamp(31px, 9.2vw, 37px);
    line-height: 1;
    max-width: 12ch;
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-copy p,
  .section-head p,
  .location-section p,
  .instagram-card p {
    font-size: 16px;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 29ch;
  }

  .hero-background img {
    object-position: 52% 20%;
  }

  .hero-actions,
  .button,
  .quick-actions a,
  .contact-buttons a {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    min-height: 104px;
  }

  .hero-main-photo {
    border-radius: 28px;
  }

  .hero-floating-card {
    bottom: 0;
    left: 0;
  }

  .quick-actions,
  .service-list,
  .form-grid,
  .contacts-section {
    grid-template-columns: 1fr;
  }

  .service-category {
    border-radius: 26px;
    padding: 16px;
  }

  .service-card {
    min-height: 0;
  }

  .extra-chip {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .extra-tag {
    width: 100%;
  }

  .section,
  .booking-section,
  .location-section,
  .contacts-section {
    padding: 52px 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 118px;
  }

  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item.tall,
  .gallery-item:not(.tall):not(.wide) {
    grid-row: span 2;
  }

  .instagram-profile {
    grid-template-columns: 1fr;
  }

  .instagram-profile img {
    height: 108px;
    width: 108px;
  }

  .review-card p {
    font-size: 24px;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-status {
    align-items: flex-start;
    border-radius: 16px;
    font-size: 13px;
  }

  .availability-panel {
    gap: 14px;
    padding: 16px;
  }

  .availability-slot-list {
    grid-template-columns: 1fr;
  }

  .day-button {
    border-radius: 12px;
    font-size: 13px;
  }

  .month-row strong {
    font-size: 23px;
  }

  .booking-section {
    background:
      linear-gradient(180deg, rgba(255, 247, 246, 0.76), rgba(255, 255, 255, 0.22)),
      url("./assets/brows-04.jpeg") right top / 78vw auto no-repeat;
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    bottom: 12px;
    left: auto;
    right: 14px;
    min-height: 52px;
    padding: 0 16px;
    width: auto;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    grid-auto-rows: 104px;
  }

  .hero-visual {
    min-height: 102px;
  }
}

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