/* ============================================================
   VARIABLES & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --salmon:       #CD7A6A;
  --salmon-dark:  #A85E50;
  --salmon-light: #FAEAE6;
  --salmon-bg:    #FDF5F3;
  --beige:        #F5EDF2;
  --teal:         #6BBDB5;
  --white:        #ffffff;
  --text:         #444444;
  --text-dark:    #2a2a2a;
  --text-muted:   #888888;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;

  --max-w:    1200px;
  --topbar-h: 40px;
  --nav-h:    80px;
  --total-h:  calc(var(--topbar-h) + var(--nav-h));
  --radius:   8px;
  --tr:       0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; text-decoration: none; transition: color var(--tr); }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }
strong { font-weight: 700; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  padding-block: 5.5rem;
}

.section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 0.6rem;
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.btn--primary {
  background: var(--salmon);
  color: var(--white);
  border: 2px solid var(--salmon);
}
.btn--primary:hover {
  background: var(--salmon-dark);
  border-color: var(--salmon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,146,124,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--salmon);
  border: 2px solid var(--salmon);
}
.btn--outline:hover {
  background: var(--salmon);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; text-align: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  height: var(--topbar-h);
  background: var(--salmon);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.topbar__inner {
  height: 100%;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar__link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
}
.topbar__link:hover { opacity: 0.85; }
.topbar__divider { opacity: 0.5; }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.topbar__social {
  display: flex;
  align-items: center;
  color: var(--white);
  opacity: 0.85;
  transition: opacity var(--tr);
}
.topbar__social:hover { opacity: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid #ece4de;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-inline: clamp(1rem, 4vw, 3rem);
  transition: box-shadow var(--tr);
  overflow: visible;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav__group {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__group--right { justify-content: flex-end; }
.nav__group a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.nav__group a:hover { color: var(--salmon); }

.nav__cta {
  background: var(--salmon) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 3px;
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--salmon-dark) !important; }

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo-img {
  height: 110px;
  width: auto;
  display: block;
  position: relative;
  z-index: 10;
  transition: opacity var(--tr);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.nav__logo:hover .nav__logo-img { opacity: 0.82; }

/* Burger (mobile) */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--tr);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 199;
  background: var(--white);
  border-bottom: 2px solid var(--salmon-light);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1rem;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding-block: 0.4rem;
  border-bottom: 1px solid var(--beige);
}
.nav__drawer a:hover { color: var(--salmon); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100svh - var(--total-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 4rem;
  padding-inline: clamp(1.5rem, 8vw, 7rem);
  padding-block: 4rem 0;
  overflow: hidden;
  background: var(--salmon-light);
}

.hero__pretitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salmon-dark);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--salmon-dark);
}
.hero__desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 4rem;
}

.hero__visual {
  position: relative;
  min-height: calc(100svh - var(--total-h));
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* White blob behind hero image */
.hero__blob {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 90%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 62% 47% 82% 35% / 45% 50% 80% 66%;
  z-index: 0;
}

/* Dot pattern */
.hero__dots {
  position: absolute;
  bottom: 5%;
  left: -2%;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(circle, var(--teal) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: 1;
  opacity: 0.7;
}

.hero__img {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: auto;
  height: 92%;
  max-width: 95%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 -8px 24px rgba(0,0,0,0.08));
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--beige); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}
.about__dots {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(circle, var(--teal) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  z-index: 0;
  opacity: 0.65;
}
.about__img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.about__content p {
  color: var(--text);
  margin-bottom: 1rem;
}
.about__list {
  list-style: none;
  margin-block: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about__list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}
.about__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--salmon);
  font-size: 0.7rem;
  top: 0.28em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--white);
}
.services__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.services__content {
  padding: 5.5rem clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.service-item__icon {
  width: 52px;
  height: 52px;
  color: var(--salmon);
  margin-bottom: 0.9rem;
}
.service-item__icon svg { width: 100%; height: 100%; }

.service-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}
.service-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.services__photo {
  overflow: hidden;
  height: 100%;
  min-height: 520px;
}
.services__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--beige); }
.booking .container { padding-block: 4.5rem 4rem; }
.booking__lead {
  text-align: center;
  color: var(--text-muted);
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Calendar wrap */
.booking__calendar-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  margin-bottom: 2.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--salmon-light) transparent;
}
.booking__calendar {
  display: grid;
  grid-template-columns: 52px repeat(6, 1fr);
  min-width: 540px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8ddd7;
}

/* Column headers */
.bcal__corner {
  background: var(--salmon-light);
  border-right: 1px solid #e8ddd7;
  border-bottom: 2px solid var(--salmon);
}
.bcal__col-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0.7rem 0.3rem;
  background: var(--salmon-light);
  border-right: 1px solid #e8ddd7;
  border-bottom: 2px solid var(--salmon);
  text-align: center;
}
.bcal__dow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--salmon-dark);
}
.bcal__day {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}
.bcal__mon {
  font-size: 0.62rem;
  color: var(--text-muted);
}

/* Time label */
.bcal__time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #fdf8f6;
  border-right: 1px solid #e8ddd7;
  border-bottom: 1px solid #f0e8e4;
}

/* Cells */
.bcal__cell {
  border-right: 1px solid #f0e8e4;
  border-bottom: 1px solid #f0e8e4;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcal__cell--free {
  background: var(--white);
  cursor: pointer;
  transition: background var(--tr);
}
.bcal__cell--free::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  transition: all var(--tr);
}
.bcal__cell--free:hover { background: var(--salmon-light); }
.bcal__cell--free:hover::after { opacity: 1; background: var(--salmon); transform: scale(1.4); }
.bcal__cell--free.active { background: var(--salmon); }
.bcal__cell--free.active::after { background: var(--white); opacity: 1; }
.bcal__cell--booked { background: #f5f5f5; }
.bcal__cell--off    { background: #f9f7f6; }

/* Form panel below calendar */
.booking__form-panel {
  max-width: 600px;
  margin-inline: auto;
}
.booking__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.booking__form { display: flex; flex-direction: column; gap: 1rem; }

/* Selected info */
.booking__selected {
  display: none;
  background: var(--salmon-light);
  border-left: 3px solid var(--salmon);
  border-radius: 4px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--salmon-dark);
  margin-bottom: 1.25rem;
}
.booking__selected.visible { display: block; }

.booking__error {
  font-size: 0.82rem;
  color: #c0392b;
  text-align: center;
  min-height: 1.2em;
}

/* Confirm */
.booking__confirm { display: none; margin-top: 1rem; }
.booking__confirm.visible { display: block; }
.booking__confirm-inner {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}
.booking__confirm-icon { display: block; font-size: 1.5rem; margin-bottom: 0.5rem; }

@media (max-width: 600px) {
  .booking__form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--salmon-bg);
}
.pricing .container {
  padding-block: 5rem;
}
.pricing .section__title {
  margin-bottom: 3rem;
}
.pricing__wrap {
  max-width: 680px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 36px rgba(0,0,0,0.08);
  overflow: hidden;
}
.pricing__img {
  width: 100%;
  display: block;
}
.pricing__note {
  text-align: center;
  margin-top: 2.5rem;
}
.pricing__note p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact .container { padding-block: 3.5rem; }
.contact .section__title { margin-bottom: 1.75rem; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact__item-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--salmon-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salmon);
}
.contact__item-icon svg { width: 16px; height: 16px; }
.contact__item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 0.15rem;
}
.contact__item a,
.contact__item span {
  font-size: 0.95rem;
  color: var(--text);
}
.contact__item a:hover { color: var(--salmon); }

.contact__hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e8ddd7;
}
.contact__hours strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 0.75rem;
}
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FORM */
.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0d5ce;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--tr);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--salmon);
}
.form-group textarea { resize: vertical; }
.form__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--salmon-dark);
  min-height: 1.5em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #2e2020;
  color: rgba(255,255,255,0.55);
  padding-block: 3rem;
}
.footer__inner {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--salmon-light);
  margin-bottom: 1rem;
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer__nav a:hover { color: var(--salmon-light); }
.footer__copy { font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 3rem 0;
    min-height: auto;
    align-items: start;
  }
  .hero__text {
    padding-bottom: 1.5rem;
    justify-content: flex-start;
    align-items: center;
  }
  .hero__desc { margin-inline: auto; }
  .hero__visual {
    min-height: auto;
    height: 340px;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
  .hero__img {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: 95%;
  }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__img { aspect-ratio: 16/9; }

  .services__inner { grid-template-columns: 1fr; }
  .services__photo { min-height: 360px; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .topbar__left span:last-child { display: none; }
  .nav__group { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .topbar { display: none; }
  .hero__visual { height: 280px; }
}
