/* =============================================
   Studio Oxygen Chotěboř - Premium CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --white:       #FFFFFF;
  --cream:       #FAF6F1;
  --beige:       #F0E9DF;
  --beige-dark:  #E2D9CD;
  --gold:        #B89A5E;
  --gold-light:  #D4B87A;
  --gold-pale:   #EDD9A8;
  --text-dark:   #1E1E1E;
  --text-mid:    #5A5A5A;
  --text-light:  #8A8A8A;
  --powder:      #F5ECE6;
  --border:      rgba(184,154,94,0.25);
  --shadow:      0 8px 40px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --radius:      2px;
  --transition:  0.4s cubic-bezier(0.25,0.8,0.25,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.text-center { text-align: center; }
.gold { color: var(--gold); }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.divider.center { margin: 20px auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ── Top Bar ── */
.topbar {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.75); transition: color 0.3s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }

/* ── Header / Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text { line-height: 1.15; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-main a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-main a:hover,
.nav-main a.active { color: var(--gold); }

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 10px 20px;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/studio.jpg');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 24px;
  margin-left: calc((100vw - 1200px) / 2 + 24px);
}

@media (max-width: 1248px) { .hero-content { margin-left: 24px; } }

.hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

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

/* ── Services Strip ── */
.services-strip {
  background: var(--cream);
  padding: 80px 0;
}
.services-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--beige-dark);
  border: 1px solid var(--beige-dark);
}
.strip-item {
  background: var(--cream);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition);
  cursor: pointer;
}
.strip-item:hover { background: var(--white); }
.strip-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.strip-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.strip-item p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── About Section ── */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
}
.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 28px;
  text-align: center;
  min-width: 140px;
}
.about-image-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.about-image-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.about-feature-text h5 {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.about-feature-text p { font-size: 0.78rem; line-height: 1.5; }

/* ── Services Grid ── */
.services-section { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-img-wrap { overflow: hidden; }

.service-card-body { padding: 28px; }
.service-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ── Price Section ── */
.price-section { background: var(--white); }
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--beige-dark);
  padding-bottom: 0;
}
.price-tab {
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.price-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.price-tab:hover { color: var(--text-dark); }

.price-panel { display: none; }
.price-panel.active { display: block; }

.price-category { margin-bottom: 48px; }
.price-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-bottom: 12px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--beige-dark);
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--beige);
  transition: background 0.2s;
}
.price-item:last-child { border-bottom: none; }
.price-name { font-size: 0.88rem; color: var(--text-mid); flex: 1; }
.price-dots {
  flex: 1;
  border-bottom: 1px dotted var(--beige-dark);
  min-width: 20px;
  max-width: 200px;
  align-self: center;
  margin-bottom: 4px;
}
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ── Gift Voucher ── */
.voucher-section { background: var(--cream); }
.voucher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.voucher-img { width: 100%; box-shadow: var(--shadow-lg); }
.voucher-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.voucher-chip {
  padding: 10px 20px;
  border: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s;
}
.voucher-chip:hover,
.voucher-chip.featured {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.voucher-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
  padding: 16px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

/* ── Gallery Section ── */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s;
}
.gallery-item:hover::after { background: rgba(0,0,0,0.1); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--text-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,154,94,0.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 500;
  display: block;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.cta-phone a { color: inherit; }

/* ── Contact Section ── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-list { margin-top: 32px; }
.contact-info-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  font-size: 1.2rem;
  width: 40px;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-text h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.contact-info-text a:hover { color: var(--gold); }

/* ── Contact Form ── */
.contact-form { background: var(--white); padding: 48px; box-shadow: var(--shadow); }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-subtitle { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; font-size: 0.82rem; letter-spacing: 0.15em; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(184,154,94,0.08);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.88rem;
}

/* ── Opening Hours ── */
.hours-table { width: 100%; margin-top: 12px; }
.hours-table tr td {
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--beige);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--text-mid); }
.hours-table td:last-child { font-weight: 500; color: var(--text-dark); text-align: right; }

/* ── Footer ── */
.site-footer {
  background: #141414;
  color: rgba(255,255,255,0.6);
}
.footer-main {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.6rem; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; line-height: 1.8; margin-top: 20px; max-width: 280px; }
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.6;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--text-dark);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,154,94,0.12), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Services Detail Page ── */
.service-detail { background: var(--cream); }
.service-detail-card {
  background: var(--white);
  margin-bottom: 24px;
  overflow: hidden;
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 320px;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.service-detail-body { padding: 48px 52px; }
.service-detail-body h2 { font-size: 1.8rem; margin-bottom: 16px; }
.service-detail-body p { margin-bottom: 16px; }
.service-detail-body ul {
  list-style: none;
  margin: 20px 0;
}
.service-detail-body ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.service-detail-body ul li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ── Gallery Page ── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-page-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-page-item:hover img { transform: scale(1.06); }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}

/* ── Booking Widget ── */
.booking-bar {
  background: var(--gold);
  padding: 20px 0;
}
.booking-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-bar p {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
}
.booking-bar strong { color: var(--white); }
.btn-book {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--white);
  padding: 12px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s;
}
.btn-book:hover {
  background: transparent;
  color: var(--white);
}

/* ── Terms Page ── */
.terms-content { max-width: 800px; margin: 0 auto; }
.terms-content h2 { font-size: 1.3rem; margin: 40px 0 16px; color: var(--text-dark); }
.terms-content h2:first-child { margin-top: 0; }
.terms-content p { margin-bottom: 16px; font-size: 0.9rem; }
.terms-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.terms-content ul li { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 6px; }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-badge { bottom: -16px; right: 16px; }
  .about-image-main { height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-detail-inner { grid-template-columns: 300px 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .topbar-contact { display: none; }
  .nav-main, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .voucher-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-inner.reverse { direction: ltr; }
  .service-detail-img { min-height: 240px; max-height: 280px; }
  .service-detail-body { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .about-features { grid-template-columns: 1fr; }
  .booking-bar-inner { justify-content: center; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-content { padding: 40px 20px; }
  .price-tabs { gap: 0; }
  .price-tab { padding: 10px 14px; font-size: 0.68rem; }
}

@media (max-width: 480px) {
  .services-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .about-image-main { height: 300px; }
  .hero-btns { flex-direction: column; }
}
