:root{
  --bg: 255 255 255;
  --ink: 18 18 18;
  --muted: 110 110 110;

  --glass: 255 255 255 / 0.12;
  --glass-2: 255 255 255 / 0.18;
  --stroke: 255 255 255 / 0.28;

  --shadow: 0 20px 60px rgba(0,0,0,.10);
  --shadow-2: 0 10px 30px rgba(0,0,0,.10);

  --radius: 999px;
  --ease: cubic-bezier(.2,.8,.2,1);

}

*{ box-sizing:border-box; }
body{
  margin:0;
  
  color: rgb(var(--ink));
  background-color: #623e2a;
}

/* wrapper */
.site-header{
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none; /* important: only pill clickable */
}

.header-pill{
  pointer-events: auto;
  margin: 0 auto;
  width: min(1100px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;

  padding-top: 3px;
  padding-left: 6px;
  padding-right: 4px;
  padding-bottom: 3px;
  border-radius: var(--radius);

  background: rgba(var(--bg) / .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(var(--stroke));
  box-shadow: var(--shadow);

  transition: transform .25s var(--ease),
              background .25s var(--ease),
              box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}

/* scrolled state (più compatto e “solido”) */
.site-header.is-scrolled .header-pill{
  transform: translateY(-4px);
  background: rgba(var(--bg) / .16);
  border-color: rgba(var(--bg) / .34);
  box-shadow: var(--shadow-2);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: inherit;
  padding: 6px 10px;
  border-radius: var(--radius);
}

.brand-mark{
  width: 22px; height: 22px;
  display:grid; place-items:center;
  border-radius: 10px;
  background: rgba(var(--bg) / .14);
  border: 1px solid rgba(var(--stroke));
}

.brand-name{
    font-family: "parfumerie-script";
    font-size: 35px;
    font-style: normal;   
    color: white;
    line-height: 0.8;
}

.nav{
  display:flex;
  justify-content:center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  
}

.nav-link{
  position: relative;
  text-decoration:none;
  color: white;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.nav-link:hover{
  background: rgba(var(--bg) / .14);
  color: whitesmoke;
}

.actions{
  display:flex;
  align-items:center;
  gap: 8px;
}

.icon-btn{
  width: 38px; height: 38px;
  display:grid; place-items:center;
  border-radius: var(--radius);
  color: rgba(var(--ink) / .88);
  background: rgba(var(--bg) / .10);
  border: 1px solid rgba(var(--stroke));
  text-decoration:none;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(var(--bg) / .16);
}

.btn{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 14px;
  border: 1px solid rgba(var(--stroke));
  transition: transform .2s var(--ease), filter .2s var(--ease);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.btn-primary{
  color: rgba(255,255,255,.95);
  background: rgba(207, 207, 207, 0.399);
  border-color: rgba(255,255,255,.12);
}
.btn-primary:hover{ transform: translateY(-1px); filter: brightness(1.05); }

/* Burger (mostrato solo su mobile) */
.burger{
  display:none;
  width: 40px; height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--stroke));
  background: rgba(var(--bg) / .10);
  cursor: pointer;
  padding: 0 12px;
}
.burger span{
  display:block;
  height: 2px;
  background: rgba(var(--ink) / .85);
  border-radius: 10px;
}
.burger span + span{ margin-top: 6px; }

/* Mobile menu overlay */
.mobile-menu{
  width: min(520px, calc(100% - 32px));
  margin: 12px auto 0;
  border-radius: 24px;
  background: rgba(var(--bg) / .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(var(--stroke));
  box-shadow: var(--shadow);
  overflow:hidden;
  pointer-events:auto;
}

.mobile-card{
  padding: 10px;
  display:grid;
  gap: 6px;
}

.mobile-link{
  padding: 14px 14px;
  border-radius: 18px;
  text-decoration:none;
  color: rgba(var(--ink) / .90);
  background: rgba(var(--bg) / .08);
  border: 1px solid rgba(var(--stroke));
}
.mobile-link:hover{ background: rgba(var(--bg) / .14); }
.mobile-link.cta{
  background: rgba(18,18,18,.88);
  color: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 860px){
  .header-pill{
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }
}

/* FINE HEADER */

@font-face {
  font-family: 'CocoGothic';
  src: url('/font/CocoGothic_trial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('hero.jpg') center / cover no-repeat;
  background-color: #623e2a;
  text-align: center;
  padding: 0 24px;
}

.hero-top {
  padding-top: 110px; /* distanza sotto header fixed */
  display: flex;
  justify-content: center;
}

.hero-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-eyebrow {
    font-family: 'CocoGothic', sans-serif;
    color: white;
    margin: 0;
    text-align: center;
    letter-spacing: 0.1em;
}

.hero-title {
    font-family: "parfumerie-script";
    font-size: 150px;
    font-style: normal;   
    color: white;
    line-height: 0.95;
    margin: 0;
    text-align: center;
}

.hero-subtitle {
    font-family: 'CocoGothic', sans-serif;
    color: white;
    margin: 12px 0 0;
    text-align: center;
    letter-spacing: 0.4em;
}

#typewriter {
  min-height: 1em;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* FINE HERO */

/* SECONDA SECTION */
.section-intro {
  background-color: #623e2a;
  padding: 110px 24px;
}

.section-intro__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.section-intro__title {
  margin: 0 0 28px;
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.95;
}

.section-intro__photo {
  width: min(280px, 78vw);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.section-intro__subtitle {
  margin: 26px 0 0;
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* FINE SECONDA SECTION */

/* TERZA SECTION */

/* TERZA SECTION – CARDS */
.section-cards {
  position: relative;
  min-height: 100vh;
  background-color: #623e2a; /* placeholder background */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-left: 24px;
  padding-right: 24px;
}

.section-cards__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-cards__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card-glass {
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgba(255, 255, 255, 0.729);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px 20px 28px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

.card-glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.card-glass img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}

.card-glass h3 {
  margin: 0 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-glass p {
  margin: 0;
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .section-cards__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.fullscreenimg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* FINE TERZA SECTION */

/* FOOTER */
.site-footer{
  width: 100%;
  margin-top: 80px;
  padding: 26px 0 34px;
  background: rgba(0,0,0,0.12);
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-shell{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.20);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 16px;
  align-items: center;
}

.footer-name{
  margin: 0;
  font-family: "parfumerie-script";
  font-size: 44px;
  line-height: 0.9;
  color: rgba(255,255,255,0.96);
}

.footer-location{
  margin: 6px 0 0;
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.footer-legal{
  justify-self: center;
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.footer-legal p{
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  line-height: 1.25;
}

.footer-legal strong{
  color: rgba(255,255,255,0.95);
}

.footer-copy{
  justify-self: end;
  text-align: right;
}

.footer-copy p{
  margin: 0;
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 860px){
  .footer-shell{
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .footer-legal{
    justify-self: stretch;
  }
  .footer-copy{
    justify-self: center;
    text-align: center;
  }
}

/* BOOKING PAGE */


.booking-page{
  width: min(1100px, calc(100% - 32px));
  margin: 110px auto 80px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 30px 90px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.booking-shell{
  padding: 30px;
  display: grid;
  gap: 22px;
}

.booking-head{
  text-align: center;
  padding-top: 8px;
}

.booking-kicker{
  margin: 0;
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(18,18,18,0.70);
}

.booking-title{
  margin: 10px 0 0;
  font-family: "parfumerie-script";
  font-size: clamp(52px, 7vw, 86px);
  line-height: .9;
  color: rgba(18,18,18,0.92);
}

.booking-form{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(18,18,18,0.10);
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}

.field{
  display: grid;
  gap: 8px;
}

/* Text fields (Nome / Cognome / Email) */
.field--text{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(18,18,18,0.14);
}

.field--text label{
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
}

.field--text input{
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,0.12);
  background: rgba(255,255,255,0.92);
  padding: 0 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: rgba(18,18,18,0.92);
  outline: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.field--text input::placeholder{
  color: rgba(18,18,18,0.45);
  font-weight: 700;
}

.field--text input:focus{
  border-color: rgba(98, 62, 42, 0.40);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 0 0 4px rgba(98, 62, 42, 0.10), 0 12px 26px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.field--calendar{
  grid-column: 1 / -1;
}

.calendar-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.calendar-chip{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(18,18,18,0.14);
  display: grid;
  gap: 4px;
}

.chip-label{
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
}

.chip-value{
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: rgba(18,18,18,0.92);
}

.calendar{
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(18,18,18,0.10);
  box-shadow: 0 16px 45px rgba(0,0,0,0.06);
  padding: 14px;
}

.calendar-header{
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cal-title{
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(18,18,18,0.78);
}

.cal-nav{
  height: 40px;
  width: 42px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,0.12);
  background: rgba(255,255,255,0.80);
  cursor: pointer;
  font-size: 18px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.cal-nav:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,0.08); }

.calendar-months{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.month{
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(18,18,18,0.08);
}

.month-name{
  margin: 0 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.72);
  text-align: center;
}

.dow{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.dow span{
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.45);
  text-align: center;
}

.days{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.day{
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,0.10);
  background: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: rgba(18,18,18,0.90);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.day:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,0.08); }

.day.is-muted{
  opacity: .35;
  cursor: default;
}
.day.is-muted:hover{ transform:none; box-shadow:none; }

.day.is-unavailable{
  opacity: .35;
  cursor: not-allowed;
  position: relative;
}
.day.is-unavailable::after{
  content: "";
  position: absolute;
  inset: 50% 8px auto 8px;
  height: 1px;
  background: rgba(18,18,18,0.55);
  transform: rotate(-12deg);
}
.day.is-unavailable:hover{ transform:none; box-shadow:none; }

.day.is-selected,
.day.is-range{
  border-color: rgba(98, 62, 42, 0.40);
  background: rgba(98, 62, 42, 0.12);
}

.day.is-selected{
  background: rgba(98, 62, 42, 0.22);
}

.calendar-legend{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(18,18,18,0.10);
}

.legend-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,0.18);
  background: rgba(255,255,255,0.80);
}
.dot-available{ background: rgba(255,255,255,0.85); }
.dot-unavailable{ background: rgba(18,18,18,0.15); }
.dot-selected{ background: rgba(98, 62, 42, 0.25); border-color: rgba(98, 62, 42, 0.35); }

.calendar-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.cal-clear{
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,0.12);
  background: rgba(255,255,255,0.80);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.cal-clear:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,0.08); }

@media (max-width: 860px){
  .calendar-months{ grid-template-columns: 1fr; }
  .calendar-top{ grid-template-columns: 1fr; }
}

/* New booking recap styles */
.booking-recap{
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(18,18,18,0.10);
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
}

.recap-head{
  text-align: left;
}

.recap-title{
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(18,18,18,0.78);
}

.recap-sub{
  margin: 6px 0 0;
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(18,18,18,0.60);
}

.recap-grid{
  display: grid;
  gap: 10px;
}

.recap-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(18,18,18,0.10);
}

.recap-label{
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
}

.recap-value{
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: rgba(18,18,18,0.90);
}

.recap-footer{
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* Booking total (price) */
.booking-total{
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(18,18,18,0.10);
}

.booking-total__label{
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
}

.booking-total__value{
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .02em;
  color: rgba(18,18,18,0.92);
}

.recap-footer .booking-note{
  margin: 0;
  max-width: 360px;
  text-align: right;
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(18,18,18,0.60);
}

.guest-field {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(18,18,18,0.14);
  display: grid;
  gap: 4px;
}

/* Guest counter (+ / -) */
.guest-counter{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  width: fit-content;
}

.guest-btn{
  height: 40px;
  width: 42px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,0.12);
  background: rgba(255,255,255,0.80);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: rgba(18,18,18,0.90);
  display: grid;
  place-items: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  user-select: none;
}
.guest-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
}
.guest-btn:active{
  transform: translateY(0px) scale(0.98);
  box-shadow: none;
}

.guest-field input#guests{
  height: 40px;
  width: 70px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,0.12);
  background: rgba(255,255,255,0.92);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: rgba(18,18,18,0.92);
  outline: none;
}

/* Remove native number spinners just in case */
.guest-field input#guests::-webkit-outer-spin-button,
.guest-field input#guests::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.guest-field input#guests{
  -moz-appearance: textfield;
}

.button-confirm {
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 12px;
  border: 1px solid rgba(var(--stroke));
  transition: transform .2s var(--ease), filter .2s var(--ease);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: rgb(0, 0, 0);
  color: white;
}

.booking-status{
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(18,18,18,0.10);
  font-family: 'CocoGothic', 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(18,18,18,0.70);
  letter-spacing: .06em;
}
.booking-status.is-error{
  border-color: rgba(180, 0, 0, 0.18);
  background: rgba(255, 240, 240, 0.85);
  color: rgba(120, 0, 0, 0.80);
}
.booking-status.is-success{
  border-color: rgba(0, 120, 60, 0.18);
  background: rgba(240, 255, 246, 0.85);
  color: rgba(0, 90, 45, 0.80);
}
.booking-status:empty{ display:none; }
/* FINE BOOKING PAGE */

/* ABOUT PAGE */

