/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --cream:        #FAF6F1;
  --sand:         #EDE8E0;
  --sand-dark:    #DDD6CB;
  --text:         #2C2C2C;
  --text-muted:   #7A7068;
  --accent:       #C8796A;
  --accent-dark:  #B36254;
  --white:        #FFFFFF;
  --dark:         #1E1714;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Lato', system-ui, -apple-system, sans-serif;

  --nav-h:        68px;
  --max-w:        1200px;
  --section-py:   96px;
  --radius:       6px;
  --radius-lg:    16px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── UTILITIES ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 121, 106, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(44, 44, 44, 0.35);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 121, 106, 0.05);
}

.btn--large {
  padding: 16px 36px;
  font-size: 14px;
}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav--solid {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--sand);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.35s var(--ease);
}
.nav--solid .nav__logo { color: var(--text); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after { width: 100%; }
.nav__link:hover { color: var(--white); }
.nav--solid .nav__link { color: var(--text-muted); }
.nav--solid .nav__link:hover { color: var(--text); }

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  transform-origin: left;
}
.nav--solid .nav__toggle span { background: var(--text); }
.nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translateY(-1px); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(1px); }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 12s ease;
}
.hero:hover .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 12, 8, 0.4) 0%,
    rgba(20, 12, 8, 0.3) 60%,
    rgba(20, 12, 8, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 4vw, 56px);
  max-width: 820px;
  background: rgba(15, 9, 6, 0.28);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 200, 185, 0.95);
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── ABOUT ──────────────────────────────────────────── */
.about {
  padding-block: var(--section-py);
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(44, 28, 20, 0.12);
}
.about__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(44, 28, 20, 0.07);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.about__stars {
  color: #E8A84B;
  font-size: 16px;
  letter-spacing: 1px;
}

.about__reviews-link {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.about__reviews-link:hover { border-color: var(--accent); }

.about__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--text);
}
.about__text h2 em {
  font-style: italic;
  color: var(--accent);
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.75;
}

.about__signature {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: var(--text) !important;
  margin-top: 28px !important;
  margin-bottom: 32px !important;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
  line-height: 1.5;
}
.about__signature strong {
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  display: block;
}

/* ─── GALLERY STRIP ──────────────────────────────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
  overflow: hidden;
}

.gallery-strip__item {
  overflow: hidden;
}
.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-strip__item:hover img {
  transform: scale(1.06);
}

/* ─── RESERVATION ────────────────────────────────────── */
.reservation {
  padding-block: var(--section-py);
  background: var(--sand);
}

.reservation__inner {
  text-align: center;
}

.reservation__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.reservation__inner h2 em {
  font-style: italic;
  color: var(--accent);
}

.reservation__sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 52px;
}

.planity-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(44, 28, 20, 0.08);
  overflow: hidden;
  min-height: 700px;
}
.planity-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact {
  padding-block: var(--section-py);
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 36px;
  color: var(--text);
}

.contact__block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--sand);
}
.contact__block:last-of-type {
  border-bottom: none;
}

.contact__block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact__block h3 svg { flex-shrink: 0; }

.contact__block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact__detail {
  font-size: 13px;
  color: var(--text-muted);
}

.contact__phone {
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.contact__phone:hover { color: var(--accent); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours-table td {
  padding: 6px 0;
  color: var(--text-muted);
}
.hours-table td:first-child {
  font-weight: 400;
  width: 110px;
  color: var(--text);
}
.hours-table td:last-child {
  font-variant-numeric: tabular-nums;
}
.hours-table__closed td {
  color: var(--sand-dark) !important;
}

.contact__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 2px 0;
}
.social-btn:hover { color: var(--accent); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44, 28, 20, 0.08);
  min-height: 480px;
  height: 100%;
}
.contact__map iframe {
  display: block;
  min-height: 480px;
  height: 100%;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding-block: 48px;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer__links a:hover { color: var(--accent); }

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 8px;
}

/* ─── PLANITY WIDGET OVERRIDES ───────────────────────── */
#planitywl {
  background-color: var(--cream) !important;
}
@media (min-width: 768px) {
  #planitywl h3 { color: var(--text) !important; }
}
#planitywl .planity_bookappointment-button-choose,
.planity-gift-voucher-button-choose {
  background-color: var(--accent) !important;
}
.planity_ui_appointment_background > div:nth-child(2) {
  padding: 10px;
}
/* gift voucher title */
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div > div > h2 {
  color: var(--text) !important;
}
/* shop container */
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div > h2,
#planitywl > div:nth-child(2) > div:nth-child(2) > div > div > div:nth-child(2) > span {
  color: var(--text) !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
  :root { --section-py: 72px; }

  .about__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }
  .about__photo-wrap { aspect-ratio: 4/3; }

  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__map { min-height: 340px; }
  .contact__map iframe { min-height: 340px; }
}

/* Mobile nav */
@media (max-width: 720px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px clamp(20px, 5vw, 60px) 32px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(44, 28, 20, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    border-top: 1px solid var(--sand);
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .nav__link {
    display: block;
    padding: 14px 0;
    color: var(--text) !important;
    border-bottom: 1px solid var(--sand);
    font-size: 15px;
  }
  .nav__link::after { display: none; }

  .nav__cta { margin-left: 0; }
}

/* Small mobile */
@media (max-width: 540px) {
  :root { --section-py: 56px; }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 320px;
  }

  .about__rating {
    flex-wrap: wrap;
  }
  .about__reviews-link {
    margin-left: 0;
    width: 100%;
  }
}
