/* ============ Barbi Nails — styles ============
   Palette:
   bg           #FBF6F3   plum text     #45272F
   plum muted   #7A565F   plum deep     #55323C
   plum soft    #9A6E7B   plum faint    #C9A3AE
   gold         #BC9255   gold border   #D9BC8B
   pink         #C9748F   pink dark     #B8617E
   pink band    #F7E6EA   pink border   #F2E2E5
   input border #EBD5DA
=============================================== */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: #FBF6F3;
}

body {
  font-family: 'Jost', sans-serif;
  color: #45272F;
  overflow-x: hidden;
}

::selection { background: #F2D7DE; }
input::placeholder { color: #C9A3AE; }

img { max-width: 100%; }

section[id] { scroll-margin-top: 64px; }

/* ---------- shared ---------- */

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.container--booking { max-width: 1060px; }
.container--faq { max-width: 760px; }

.section { padding: 100px 32px; }
.section--band { background: #F7E6EA; }
.section--faq { padding: 60px 32px 100px; }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head--faq { margin-bottom: 50px; }

.kicker {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #BC9255;
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 500;
  color: #45272F;
  margin: 0;
}

.rule {
  width: 56px;
  height: 1px;
  background: #D9BC8B;
  margin: 22px auto 0;
}

.section-lead {
  margin: 18px auto 0;
  font-size: 15px;
  color: #9A6E7B;
  max-width: 460px;
}

.step-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #BC9255;
}

.spark { color: #D9BC8B; }
.spark--gold-strong { color: #BC9255; font-size: 14px; }

.grid {
  display: grid;
  gap: 24px;
}
.grid--prices  { grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); }
.grid--offers  { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid--reviews { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.grid--contact { grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); align-items: stretch; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background .15s;
}

.btn--primary {
  background: #C9748F;
  color: #fff;
  font-weight: 500;
  padding: 11px 24px;
}
.btn--primary:hover { background: #B8617E; }

.btn--outline {
  background: transparent;
  color: #45272F;
  border: 1px solid #D9BC8B;
  padding: 13px 30px;
  letter-spacing: 1px;
}
.btn--outline:hover { background: #F7EEE0; }

.btn--lg {
  font-size: 15px;
  letter-spacing: 1px;
  padding: 17px 38px;
}
.btn--outline.btn--lg { padding: 16px 34px; font-weight: 400; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(251, 246, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #F2E2E5;
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 74px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}
.nav__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 600;
  color: #45272F;
}
.nav__brand-sub {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #BC9255;
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links > a:not(.nav__cta) {
  font-size: 14px;
  color: #7A565F;
  text-decoration: none;
  transition: color .15s;
}
.nav__links > a:not(.nav__cta):hover { color: #C9748F; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #45272F;
  padding: 8px;
  cursor: pointer;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 170px 32px 110px;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  background: #F7E6EA;
}
.hero__blob--left {
  top: 120px; left: -120px;
  width: 380px; height: 380px;
  filter: blur(8px);
}
.hero__blob--right {
  bottom: -80px; right: 30%;
  width: 260px; height: 260px;
  opacity: 0.7;
  filter: blur(6px);
}

.hero__inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9A6E7B;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 66px;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  color: #45272F;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: #C9748F;
}

.hero__copy > p {
  font-size: 17px;
  line-height: 1.7;
  color: #7A565F;
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 4px;
  font-size: 14px;
  color: #9A6E7B;
  flex-wrap: wrap;
}
.hero__meta a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}
.hero__meta a:hover { color: #C9748F; }

/* ---------- árlista ---------- */

.price-card {
  background: #fff;
  border: 1px solid #F2E2E5;
  border-radius: 24px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow .2s;
}
.price-card:hover { box-shadow: 0 16px 40px rgba(201, 116, 143, 0.12); }

.price-card__tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #BC9255;
}

.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #45272F;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
}
.price-row > span:first-child {
  font-size: 15px;
  color: #55323C;
}
.leader {
  flex: 1;
  border-bottom: 1px dotted #DDC09A;
}
.price-row b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.price-note {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #C9A3AE;
}

/* ---------- akciók ---------- */

.offer-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.offer-card__big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 600;
  color: #C9748F;
  line-height: 1;
}
.offer-card__label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #BC9255;
}
.offer-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #7A565F;
}

/* ---------- foglalás ---------- */

.booking-card {
  background: #fff;
  border: 1px solid #F2E2E5;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(201, 116, 143, 0.10);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 52px;
}

.cal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cal__month {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #45272F;
}
.cal__nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #EBD5DA;
  background: #fff;
  color: #9A6E7B;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  padding: 0 0 3px;
}
.cal__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.cal__weekdays, .cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal__weekdays {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: #C9A3AE;
}
.cal__weekdays > div { padding-bottom: 6px; }

.cal__day {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  color: #55323C;
  background: transparent;
  border: 1px solid transparent;
  font-weight: 400;
  transition: background .15s, color .15s;
  user-select: none;
  padding: 0;
}
.cal__day:disabled {
  color: #DDC3CA;
  cursor: default;
}
.cal__day--today { border-color: #D9BC8B; }
.cal__day--selected {
  background: #C9748F;
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.cal__legend {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: #C9A3AE;
}
.cal__legend > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot--selected { background: #C9748F; }
.dot--today { border: 1px solid #D9BC8B; }

.picker__empty[hidden] { display: none; }

.picker__empty {
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.picker__empty-spark { font-size: 26px; color: #D9BC8B; }
.picker__empty-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 23px;
  color: #9A6E7B;
}
.picker__empty-sub {
  font-size: 14px;
  color: #C9A3AE;
}

.picker__steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.picker__steps[hidden] { display: none; }

.picker__block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.picker__block[hidden] { display: none; }

.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.slot {
  padding: 13px 0;
  text-align: center;
  border-radius: 999px;
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  color: #55323C;
  background: #fff;
  border: 1px solid #EBD5DA;
  transition: all .15s;
  user-select: none;
}
.slot:disabled {
  text-decoration: line-through;
  color: #DDC3CA;
  background: #FBF3F5;
  cursor: default;
}
.slot--selected {
  color: #fff;
  background: #C9748F;
  border-color: #C9748F;
}

.picker__hint {
  font-size: 13px;
  color: #C9A3AE;
}

#f-service, #f-name, #f-phone {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #EBD5DA;
  border-radius: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #45272F;
  background: #fff;
  outline: none;
}
#f-service { cursor: pointer; }

.booking-submit {
  margin-top: 4px;
  padding: 16px 36px;
  font-size: 15px;
  letter-spacing: 1px;
  transition: opacity .15s, background .15s;
}
.booking-submit:disabled {
  opacity: 0.45;
  cursor: default;
}
.booking-submit:disabled:hover { background: #C9748F; }

/* visszaigazolás */

.booking-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 30px 0;
}
.booking-confirm[hidden] { display: none; }

.booking-confirm__check {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #F7E6EA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #BC9255;
}
.booking-confirm__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: #45272F;
}
.booking-confirm__summary {
  font-size: 17px;
  color: #7A565F;
}
.booking-confirm__service {
  font-size: 15px;
  color: #9A6E7B;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-confirm__note {
  margin: 6px 0 0;
  font-size: 14px;
  color: #C9A3AE;
  max-width: 380px;
  line-height: 1.6;
}
.booking-confirm__reset {
  margin-top: 10px;
  font-size: 14px;
}

/* ---------- galéria ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gallery__col--offset { padding-top: 44px; }

.gallery__slot {
  position: relative;
  margin: 0;
  height: 240px;
  border-radius: 22px;
  overflow: hidden;
  background: #F7E6EA;
}
.gallery__slot--tall { height: 320px; }

.gallery__slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Placeholder shown when the image file is missing (js/app.js hides the img
   on error). Caption text comes from data-caption. */
.gallery__slot::before {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 34px;
  font-size: 24px;
  color: #D9BC8B;
}
.gallery__slot::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 34px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: #A8717F;
}

/* ---------- rólam ---------- */

.container--about { max-width: 720px; }

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #7A565F;
  text-wrap: pretty;
}
.about__signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: #C9748F;
  text-align: center;
  margin-top: 6px;
}

/* ---------- vélemények ---------- */

.review-card {
  background: #fff;
  border: 1px solid #F2E2E5;
  border-radius: 24px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__stars {
  color: #D9BC8B;
  font-size: 16px;
  letter-spacing: 4px;
}
.review-card p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: #55323C;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #45272F;
}
.review-card__tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #BC9255;
}

/* ---------- GYIK ---------- */

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: #fff;
  border: 1px solid #F2E2E5;
  border-radius: 18px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq__q > span:first-child {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #45272F;
}
.faq__icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: #BC9255;
  line-height: 1;
}
.faq__a {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: #7A565F;
}
.faq__a[hidden] { display: none; }

/* ---------- kapcsolat ---------- */

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-card__block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-card__block--hours { gap: 10px; }
.contact-card__label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #BC9255;
}
.contact-card__value {
  font-size: 17px;
  color: #45272F;
}
.contact-card__value a {
  color: inherit;
  text-decoration: none;
}
.contact-card__value a:hover { color: #C9748F; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #7A565F;
}
.hours-row__closed { color: #C9A3AE; }
.hours-row__open {
  font-weight: 500;
  color: #45272F;
}
.hours-note {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #BC9255;
}

.map {
  border-radius: 24px;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #F2D7DE;
  background: repeating-linear-gradient(45deg, #FDF4F6, #FDF4F6 12px, #F6E3E8 12px, #F6E3E8 24px);
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* ---------- footer ---------- */

.footer {
  background: #45272F;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 600;
  color: #F7E6EA;
}
.footer__brand-sub {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #D9BC8B;
}
.footer__contact {
  font-size: 13px;
  color: #B98AA0;
}
.footer__divider {
  width: 40px;
  height: 1px;
  background: #6E4A55;
}
.footer__copy {
  font-size: 12px;
  color: #8A6270;
}

/* ---------- foglalási hibaüzenet ---------- */

.booking-error {
  font-size: 14px;
  line-height: 1.5;
  color: #A8434F;
  background: #FBF0F2;
  border: 1px solid #F2D7DE;
  border-radius: 12px;
  padding: 12px 16px;
}
.booking-error[hidden] { display: none; }

/* ---------- admin ---------- */

.admin-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.admin-head__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-head__label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9A6E7B;
}
.admin-logout { padding: 10px 22px; font-size: 13px; }

.admin-card {
  background: #fff;
  border: 1px solid #F2E2E5;
  border-radius: 24px;
  padding: 32px 30px;
}

.admin-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: #45272F;
  margin: 0 0 20px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}
.admin-form input,
.admin-block-form input,
.admin-block-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #EBD5DA;
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #45272F;
  background: #fff;
  outline: none;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-hint {
  font-size: 13px;
  line-height: 1.6;
  color: #9A6E7B;
  margin: 4px 0 0;
}

.admin-error {
  font-size: 14px;
  line-height: 1.5;
  color: #A8434F;
  background: #FBF0F2;
  border: 1px solid #F2D7DE;
  border-radius: 12px;
  padding: 12px 16px;
}
.admin-error[hidden] { display: none; }

.admin-block-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr auto;
  gap: 10px;
  align-items: center;
  margin: 16px 0 14px;
}
.admin-block-form .btn { padding: 12px 24px; }

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.admin-empty {
  margin: 0;
  font-size: 14px;
  color: #C9A3AE;
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #F2E2E5;
  border-radius: 14px;
  padding: 14px 18px;
}
.admin-row__when {
  font-size: 15px;
  font-weight: 500;
  color: #45272F;
}
.admin-row__who {
  font-size: 14px;
  color: #7A565F;
  margin-top: 2px;
}
.admin-row__who a {
  color: #C9748F;
  text-decoration: none;
}
.admin-row__btn {
  padding: 9px 20px;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .admin-block-form { grid-template-columns: 1fr; }
  .admin-row { flex-direction: column; align-items: flex-start; }
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .hero h1 { font-size: 52px; }
}

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 246, 243, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #F2E2E5;
    padding: 8px 32px 20px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.nav__cta) {
    padding: 13px 0;
    font-size: 15px;
    border-bottom: 1px solid #F7ECEF;
  }
  .nav__cta {
    margin-top: 16px;
    align-self: flex-start;
  }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__col--offset { padding-top: 0; }
}

@media (max-width: 640px) {
  .section { padding: 70px 20px; }
  .section--faq { padding: 40px 20px 70px; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: 34px; }

  .nav__inner { padding: 0 20px; }
  .nav__links { padding: 8px 20px 20px; }

  .hero { padding: 130px 20px 70px; }
  .hero h1 { font-size: 42px; }
  .hero__meta { gap: 12px; }

  .booking-card { padding: 26px 16px; }
  .booking-grid { gap: 40px; }
  .slots { gap: 8px; }
  .booking-confirm__title { font-size: 30px; }

  .gallery { grid-template-columns: 1fr; }

  .price-card { padding: 28px 24px; }
  .contact-card { padding: 32px 26px; }
  .faq__q { padding: 18px 20px; }
  .faq__a { padding: 0 20px 20px; }
}
