/* =======================================
   ARTE WEBSITE - ADDITIONAL STYLES
   Add this to your base.css or create a separate stylesheet
======================================= */

/* =======================================
   NAVBAR STYLES
======================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-hot);
  padding: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.navbar-container {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-logo-image {
  height: 100px;
  width: auto;
  max-height: 100%;
  display: block;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.navbar-link {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  /* letter-spacing: 0.06em; */
  text-transform: uppercase;
  transition: var(--transition-fast);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
}

.navbar-link:hover {
  border-bottom-color: var(--color-blush);
}

.navbar-link.active {
  color: white;
  border-bottom-color: white;
  font-weight: 700;
}

.navbar-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
}

.btn-book {
  background: white;
  color: var(--color-hot);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  /* letter-spacing: 0.06; */
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book:hover {
  background: var(--color-blush);
  transform: translateY(-2px);
}

/* Split book button */
.btn-book-group {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: visible;
}

.btn-book-main {
  background: white;
  color: var(--color-hot);
  padding: 10px 20px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: background var(--transition-fast);
}

.btn-book-main:hover {
  background: var(--color-blush);
}

.btn-book-sep {
  width: 1px;
  background: rgba(236, 3, 124, 0.3);
  flex-shrink: 0;
  align-self: stretch;
}

.btn-book-caret {
  background: white;
  color: var(--color-hot);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background var(--transition-fast);
}

.btn-book-caret:hover {
  background: var(--color-blush);
}

.btn-book-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
  overflow: hidden;
}

.btn-book-dropdown.open {
  display: block;
}

.btn-book-dropdown-item {
  display: block;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-hot);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition-fast);
}

.btn-book-dropdown-item:hover {
  background: #fdf0f5;
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px;
  margin-right: -8px;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition-fast);
  display: block;
}

/* Mobile menu active state */
.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.navbar-book-btn {
  display: none;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--color-hot);
    flex-direction: column;
    list-style: none;
    padding: 24px;
    gap: 16px;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Hidden by default */
    display: none;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-link {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: none;
    border-left: 3px solid transparent;
    padding-left: 12px;
  }

  .navbar-link:hover {
    border-bottom-color: transparent;
    border-left-color: var(--color-blush);
    color: var(--color-blush);
  }

  .navbar-link.active {
    border-left-color: white;
    color: white;
    font-weight: 700;
  }

  .navbar-link.active::after {
    display: none;
  }

  .btn-book,
  .btn-book-group {
    display: none;
  }

  .navbar-book-btn {
    display: block;
    margin-top: 12px;
    padding-top: 20px !important;
    padding-bottom: 4px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    color: white;
    font-weight: 700;
    text-decoration: underline;
  }

  .navbar-book-btn + .navbar-book-btn {
    margin-top: -16px;
    padding-top: 8px !important;
    padding-bottom: 12px !important;
    border-top: none;
  }

  .navbar-book-btn:hover {
    color: var(--color-blush);
    border-left-color: transparent;
  }
}

/* =======================================
   HERO SECTION
======================================= */

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: scaleIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(250,249,243,0.82) 0%, rgba(250,249,243,0.38) 38%, transparent 62%),
    linear-gradient(to right, rgba(250,249,243,0.45) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 88px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-accent {
  width: 48px;
  height: 2px;
  background: var(--color-hot);
  margin-bottom: 28px;
  flex-shrink: 0;
}

.hero-title {
  font-size: 68px;
  font-weight: 700;
  color: var(--color-hot);
  margin-bottom: 20px;
  line-height: 1.0;
  /* letter-spacing: 0.06em; */
  max-width: 700px;
}

.hero-subtitle {
  /* font-size: 17px; */
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.8;
  max-width: 450px;
  font-weight: 400;
}

.hero-divider {
  width: 36px;
  height: 1px;
  background: var(--color-wine);
  margin: 28px 0;
  flex-shrink: 0;
}

.btn-hero,
.btn-book-outline {
  display: inline-block;
  padding: 13px 36px;
  border: 1.5px solid var(--color-wine);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  /* letter-spacing: 2px; */
  text-transform: uppercase;
  color: var(--color-wine);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-hero:hover,
.btn-book-outline:hover {
  background: var(--color-hot);
  border-color: var(--color-hot);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 3, 124, 0.25);
}

.btn-hero:hover {
  box-shadow: 0 12px 32px rgba(236, 3, 124, 0.35);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--color-wine), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.55; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(0.45); transform-origin: top; }
}

/* =======================================
   SPACE SECTION
======================================= */

.space-section {
  background: var(--color-blush);
  padding: 100px 48px;
  text-align: center;
}

.space-inner {
  /* max-width: 760px; */
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-hot);
  margin-bottom: 32px;
  /* letter-spacing: 0.5px; */
  text-transform: uppercase;
  text-align: center;
}

.space-section .section-title {
  color: var(--color-wine);
  font-size: 40px;
  /* letter-spacing: 1px; */
  margin-top: 0;
  margin-bottom: 28px;
}

.section-subtitle {
  color: var(--color-text);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  padding: 0 48px;
}

.space-section .section-subtitle {
  color: var(--color-wine);
  opacity: 0.75;
  padding: 0;
  max-width: 700px;
  line-height: 1.9;
  text-wrap: balance;
}

/* =======================================
   SERVICES GRID
======================================= */

.services-section {
  background: var(--color-bg);
  padding: 100px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-label {
  /* letter-spacing: 5px; */
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.services-label::before,
.services-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: var(--color-grey);
}

.services-label::before { right: 100%; }
.services-label::after  { left: 100%; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}


.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 24px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-title {
  font-weight: 700;
  color: var(--color-hot);
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  margin: 0 0 12px;
}

.service-description {
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--color-grey);
}

/* Services — text-only variant (no photos) */
.services-grid-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  border-top: 1px solid var(--color-grey);
}

.service-card-text {
  padding: 56px 40px;
  border-right: 1px solid var(--color-grey);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  transition: background 0.3s ease;
}

.service-card-text:last-child {
  border-right: none;
}

.service-card-text:hover {
  background: rgba(230, 231, 232, 0.25);
}

.service-num {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--color-grey);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 8px;
}

/* =======================================
   RATES SECTION
======================================= */

.rates-section {
  background: var(--color-blush);
  padding: 100px 0;
}

.rates-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.rates-image {
  width: 100%;
  height: 420px;
  border-radius: 0;
  overflow: hidden;
  order: 1;
}

.rates-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rates-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 2;
}

.rates-content::before {
  content: none;
}

.rates-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.rates-label-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--color-hot);
  flex-shrink: 0;
}

.rates-label-text {
  font-size: 17px;
  /* letter-spacing: 5px; */
  color: var(--color-wine);
  text-transform: uppercase;
  font-weight: 600;
}

.rates-text {
  font-size: 17px;
  color: var(--color-wine);
  line-height: 1.9;
  margin: 0;
}

.rates-price-block {
  border-left: 2px solid var(--color-hot);
  padding: 18px 22px;
  /* background: var(--color-bg); */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rates-intro-badge {
  display: inline-block;
  background: var(--color-hot);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  align-self: flex-start;
}

.rates-starts-at {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-wine);
  opacity: 0.5;
  margin: 0;
  font-weight: 500;
}

.rates-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.rates-old-price {
  text-decoration: line-through;
  color: var(--color-wine);
  opacity: 0.4;
  font-size: 15px;
  font-weight: 400;
}

.rates-new-price {
  color: var(--color-hot);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.rates-price-unit {
  font-size: 13px;
  color: var(--color-wine);
  opacity: 0.6;
  font-weight: 400;
}

.rates-intro-note {
  font-size: 13px;
  color: var(--color-wine);
  opacity: 0.6;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* =======================================
   LOCATION SECTION
======================================= */

.location-section {
  background: var(--color-bg);
  padding: 100px 0;
}

.location-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-accent {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--color-wine));
  margin: 0 auto 28px;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  padding: 0 48px;
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 0;
  overflow: hidden;
  display: block;
  position: relative;
  background: #f0f0f0;
  order: 1;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  order: 2;
  justify-content: space-between;
}

.location-images {
  width: 100%;
}

.location-images img {
  width: 100%;
  height: auto;
  display: block;
}

.location-rule {
  width: 36px;
  height: 1px;
  background: var(--color-wine);
  margin-bottom: 20px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-address {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.location-text {
  font-size: 15px;
  color: var(--color-muted);
  margin: 0 0 -5px;
  /* letter-spacing: 0.2px; */
}

.btn-book-outline {
  align-self: flex-start;
}

/* =======================================
   FOOTER SECTION
======================================= */

.footer-section {
  background: var(--color-hot);
  padding: 60px 0;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 100%;
  padding: 0 48px;
  margin: 0 auto;
  align-items: stretch;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

.footer-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: -20px 0 0;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 12px;
  background: white;
  color: var(--color-text);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: #aaa;
  font-size: 10px;
  /* letter-spacing: 0.5px; */
}

.btn-newsletter {
  padding: 12px 16px;
  background: var(--color-bg);
  color: var(--color-pink);
  border: none;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
}

.btn-newsletter:hover {
  background: var(--color-pink);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.newsletter-thanks {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.social-icon-link:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  text-align: right;
  justify-content: space-between;
  height: 100%;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-blush);
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  /* letter-spacing: 0.5px; */
}

/* =======================================
   STUDIO PAGE SPECIFIC STYLES
======================================= */

.section-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: center;
  text-align: center;
}

.studio-image {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.studio-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.studio-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.studio-highlights p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
  font-weight: 600;
  /* letter-spacing: 0.5px; */
}

/* =======================================
   FEATURES SECTION
======================================= */

.features-section {
  background: var(--color-bg);
  padding: 80px 0;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.features-image {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  order: 1;
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 2;
}

.features-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  /* letter-spacing: 0.5px; */
  margin: 0;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-list li {
  font-size: 14px;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
}

.features-list li::before {
  content: '•';
  margin-right: 8px;
  color: var(--color-hot);
  font-weight: 700;
}

/* =======================================
   RESPONSIVE - TABLET
======================================= */

@media (max-width: 768px) {
  .section-content {
    padding: 0 24px;
    gap: 32px;
  }

  .studio-image {
    max-width: 100%;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .features-image {
    height: 350px;
    order: -1;
  }

  .features-content h2 {
    font-size: 24px;
  }
}

/* =======================================
   RESPONSIVE - MOBILE
======================================= */

@media (max-width: 480px) {
  .section-content {
    padding: 0 16px;
    gap: 24px;
  }

  .studio-highlights p {
    font-size: 13px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .features-image {
    height: 280px;
  }

  .features-content h2 {
    font-size: 20px;
  }

  .features-list h3 {
    font-size: 12px;
  }

  .features-list li {
    font-size: 13px;
  }
}

/* Fade In Animation */
@keyframes heroReveal {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    clip-path: inset(0% 0 0 0);
    transform: translateY(0);
  }
}

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

/* Slide Up Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide Left Animation */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide Right Animation */
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes - Default (before scroll) */
.animate-fade-in,
.animate-slide-up,
.animate-slide-left,
.animate-slide-right,
.animate-scale-in,
.service-card,
.section-title,
.section-subtitle,
.rates-image,
.location-images {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* When visible - trigger animations */
.animate-fade-in.visible {
  animation-name: fadeIn;
}

.animate-slide-up.visible {
  animation-name: slideUp;
}

.animate-slide-left.visible {
  animation-name: slideLeft;
}

.animate-slide-right.visible {
  animation-name: slideRight;
}

.animate-scale-in.visible {
  animation-name: scaleIn;
}

/* Hero Section Animations — auto-play on load, staggered */
.hero-accent {
  opacity: 0;
  animation: slideLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}

.hero-title {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards 0.35s;
}

.hero-subtitle {
  opacity: 0;
  animation: slideUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.62s;
}

.hero-divider {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.85s;
}

.hero-content .btn-hero {
  opacity: 0;
  animation: slideUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1s;
}

/* Service Cards Staggered Animation */
.service-card.visible {
  animation-name: slideUp;
}

.service-card:nth-child(1).visible {
  animation-delay: 0.1s;
}

.service-card:nth-child(2).visible {
  animation-delay: 0.2s;
}

.service-card:nth-child(3).visible {
  animation-delay: 0.3s;
}

/* Section Headings Animation */
.section-title.visible {
  animation-name: slideUp;
  animation-delay: 0.1s;
}

.section-subtitle.visible {
  animation-name: slideUp;
  animation-delay: 0.2s;
}

/* Image Animations */
.hero-image {
  overflow: hidden;
}

.hero-image img {
  animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rates-image.visible {
  animation-name: slideLeft;
  animation-delay: 0.1s;
}

.location-images.visible {
  animation-name: slideRight;
  animation-delay: 0.1s;
}

/* Button Animations */
.btn-glow {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-pink);
  font-size: 14px;
  font-weight: 500;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  color: var(--color-hot);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin: 0 auto;
  display: block;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 
      inset 0 0 20px rgba(255, 140, 228, 0.2),
      0 0 50px currentColor,
      0 20px 30px rgba(0, 0, 0, 0.3);
}

.btn-glow:active {
  transform: translateY(0);
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  width: fit-content;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  /* letter-spacing: 1px; */
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  background: var(--color-hot);
  color: white;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--color-wine);
  transform: translateY(-3px);
}

.btn-primary,
.btn-secondary,
.btn-book {
  transition: all var(--transition-smooth);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-book:hover {
  transform: translateY(-3px);
}

/* Newsletter Form Input Animation */
.newsletter-form input {
  transition: all var(--transition-smooth);
}

.newsletter-form input:focus {
  transform: scale(1.02);
}

/* =======================================
   PARALLAX EFFECT
======================================= */


@media (max-width: 1024px) {
  .hero-content {
    padding: 0 40px 72px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 48px;
    /* letter-spacing: -0.5px; */
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-scroll-indicator {
    right: 28px;
  }

  .rates-container,
  .location-container,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .rates-image {
    height: 300px;
    order: -1;
  }

  .rates-content {
    order: 1;
  }

  .location-map {
    height: 400px;
    order: -1;
  }

  .location-details {
    order: 1;
    height: auto;
  }

  .location-images {
    height: auto;
  }

  .location-images img {
    width: 100%;
    height: auto;
  }

  .btn-book-outline {
    align-self: stretch;
    text-align: center;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
  }

  .navbar-menu {
    gap: 16px;
  }
}

/* =======================================
   RESPONSIVE - MEDIUM SCREENS (769px–1024px)
======================================= */

@media (min-width: 769px) and (max-width: 1024px) {
  /* Navbar */
  .navbar-container {
    padding: 0 32px;
    gap: 20px;
  }

  .navbar-menu {
    gap: 20px;
  }

  .navbar-link {
    font-size: 10px;
  }

  /* Hero */
  .hero-content {
    padding: 0 40px 72px;
  }

  .hero-title {
    font-size: 52px;
  }

  /* Sections */
  .space-section {
    padding: 80px 32px;
  }

  .services-section,
  .location-section {
    padding: 80px 0;
  }

  .rates-section {
    padding: 80px 0;
  }

  .footer-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    padding: 0 32px;
  }

  .space-section .section-subtitle {
    padding: 0;
  }

  .services-header {
    margin-bottom: 40px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 0 32px;
  }

  .services-grid-text {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 32px;
  }

  .service-card-text {
    padding: 40px 28px;
  }

  .service-num {
    font-size: 3.5rem;
  }

  /* Rates — keep 2 columns with tighter gap */
  .rates-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  .rates-image {
    height: 280px;
  }

  /* Location — keep 2 columns with tighter gap */
  .location-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  /* Footer — keep 2 columns */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  .footer-right {
    align-items: flex-end;
    text-align: right;
  }

  /* Studio / Features */
  .section-content {
    padding: 0 32px;
  }

  .features-container {
    gap: 40px;
    padding: 0 32px;
  }

  .features-image {
    height: 400px;
  }

  /* FAQs */
  .faqs-container {
    padding: 0 40px;
  }

  .faqs-header {
    margin-bottom: 48px;
  }

  .faqs-page-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 16px;
    gap: 16px;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
    /* letter-spacing: -0.5px; */
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 24px 64px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .section-title {
    font-size: 28px;
    padding: 0 24px;
  }

  .space-section {
    padding: 64px 24px;
  }

  .services-section,
  .location-section {
    padding: 64px 0;
  }

  .rates-section {
    padding: 64px 0;
  }

  .footer-section {
    padding: 48px 0;
  }

  .space-section .section-title {
    font-size: 28px;
    padding: 0;
  }

  .section-subtitle {
    padding: 0 24px;
  }

  .space-section .section-subtitle {
    padding: 0;
  }

  .services-grid,
  .rates-container,
  .location-container {
    padding: 0 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid-text {
    grid-template-columns: 1fr;
    padding: 0;
    border-top: none;
  }

  .service-card-text {
    padding: 36px 24px;
    border-right: none;
    border-top: 1px solid var(--color-grey);
  }

  .service-card-text:last-child {
    border-bottom: 1px solid var(--color-grey);
  }

  .service-num {
    font-size: 3rem;
  }

  .service-card-text .service-description {
    border-top: none;
    padding-top: 0;
  }

  .services-header {
    margin-bottom: 32px;
    padding: 0 24px;
  }

  .rates-container {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .rates-image {
    height: 260px;
    order: -1;
  }

  .rates-content {
    order: 1;
  }

  .location-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-map {
    height: 400px;
    order: -1;
  }

  .location-details {
    order: 1;
    height: auto;
  }

  .footer-content {
    padding: 0 24px;
  }

  .section-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar-logo-text {
    font-size: 16px;
  }

  .btn-book {
    padding: 8px 12px;
    font-size: 10px;
  }

  .hero-title {
    font-size: 28px;
    /* letter-spacing: -0.5px; */
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 13px;
    max-width: 100%;
  }

  .hero-content {
    padding: 0 20px 56px;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .space-section,
  .services-section,
  .rates-section,
  .location-section,
  .footer-section {
    padding: 32px 0;
  }

  .space-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .location-map {
    height: 300px;
    order: -1;
  }

  .location-details {
    height: auto;
  }

  .location-images {
    height: auto;
  }

  .location-images img {
    width: 100%;
    height: auto;
  }

  .rates-image {
    height: 200px;
    order: -1;
  }

  .rates-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-subtitle,
  .services-grid,
  .rates-container,
  .location-container {
    padding: 0 16px;
  }

  .footer-content {
    padding: 0 16px;
  }
}

/* =======================================
   STUDIO PAGE
======================================= */

.studio-page {
  margin-top: var(--header-height);
  background: var(--color-bg);
}

/* Hero title */
.studio-hero {
  padding: 64px 24px 40px;
  text-align: center;
}

.studio-hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.studio-hero-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-hot);
  flex-shrink: 0;
}

.studio-hero-label-text {
  font-size: 11px;
  /* letter-spacing: 5px; */
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.studio-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-hot);
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  line-height: 1.3;
  margin: 0;
}

/* Carousel */
.studio-carousel-section {
  padding: 0 48px 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.studio-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-hot);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
  line-height: 1;
}

.carousel-btn:hover {
  opacity: 0.6;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot { 
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-blush);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-hot);
  transform: scale(1.3);
}

/* Overview text */
.studio-overview {
  padding: 5px 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Staggered animation delays for overview paragraphs */
.studio-overview-desc.visible {
  animation-name: slideUp;
  animation-delay: 0s;
}

.studio-overview .studio-overview-note:nth-of-type(2).visible {
  animation-name: slideUp;
  animation-delay: 0.15s;
}

.studio-overview .studio-overview-note:nth-of-type(3).visible {
  animation-name: slideUp;
  animation-delay: 0.3s;
}

.studio-overview-highlight.visible {
  animation-name: slideUp;
  animation-delay: 0.45s;
}

.studio-overview-desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}

.studio-overview-note {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
}

.studio-overview-highlight {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-wine);
  line-height: 1.8;
  margin: 0;
  /* letter-spacing: 0.3px; */
}

/* Features */
.studio-features {
  padding: 48px 0 80px;
}

.studio-features-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

.studio-features-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.studio-features-label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: center;
}

.studio-features-label-line {
  display: block;
  flex: 1;
  height: 1.5px;
  background: var(--color-blush);
  flex-shrink: 0;
}

.studio-features-label-text {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.studio-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-blush);
  border: 1.5px solid var(--color-blush);
  border-radius: 14px;
  overflow: hidden;
}

.studio-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  background: var(--color-bg);
  padding: 14px 18px;
}

.studio-features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-hot);
  flex-shrink: 0;
}

.studio-features-list li:last-child:nth-child(odd) {
  grid-column: span 2;
  justify-content: center;
}

/* Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .studio-carousel-section {
    padding: 0 32px 40px;
  }

  .studio-features-inner {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .studio-hero {
    padding: 48px 24px 32px;
  }

  .studio-hero-title {
    font-size: 28px;
  }

  .studio-carousel-section {
    padding: 0 16px 32px;
  }

  .carousel-btn {
    display: none;
  }

  .studio-carousel {
    gap: 8px;
  }

  .studio-features-inner {
    padding: 0 24px;
  }

  .studio-features-list {
    grid-template-columns: 1fr;
  }

  .studio-features-list li:last-child:nth-child(odd) {
    grid-column: span 1;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .studio-hero-title {
    font-size: 22px;
    /* letter-spacing: 1px; */
  }

  .studio-overview {
    padding: 32px 16px;
  }

  .studio-features-inner {
    padding: 0 16px;
  }

  .studio-features {
    padding: 32px 0 60px;
  }
}

/* =======================================
   CONTACT PAGE
======================================= */

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  background: var(--color-bg);
  overflow: hidden;
}

.contact-map {
  padding: 48px 40px 48px 48px;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 60px 64px;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.contact-label-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--color-hot);
  flex-shrink: 0;
}

.contact-label-text {
  font-size: 10px;
  /* letter-spacing: 5px; */
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-hot);
  text-transform: uppercase;
  /* letter-spacing: 0.5px; */
  margin: 0;
  line-height: 1.15;
}

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-body p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}

.contact-divider {
  width: 36px;
  height: 1px;
  background: var(--color-grey);
}

.contact-link {
  color: var(--color-hot);
  text-decoration: underline;
  transition: opacity var(--transition-fast);
}

.contact-link:hover {
  opacity: 0.7;
}

.contact-email {
  font-weight: 600;
  display: inline-block;
  margin-top: 2px;
}

.contact-social {
  display: flex;
  gap: 16px;
}

.contact-social .social-icon-link {
  background: var(--color-hot);
  color: white;
}

.contact-social .social-icon-link:hover {
  background: var(--color-wine);
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-hot);
  transition: opacity var(--transition-fast);
}

.contact-social-link:hover {
  opacity: 0.7;
}

.contact-social-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-map {
    padding: 40px 32px 40px 40px;
  }

  .contact-content {
    padding: 48px 40px;
    gap: 24px;
  }

  .contact-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-map {
    order: 2;
    padding: 0 24px 24px;
    height: 56vw;
    min-height: 260px;
  }

  .contact-content {
    order: 1;
    padding: 32px 24px 24px;
    gap: 20px;
  }

  .contact-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .contact-map {
    padding: 0 16px 16px;
    height: 64vw;
  }

  .contact-content {
    padding: 24px 16px 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-body p {
    font-size: 14px;
  }
}

/* =======================================
   RATES PAGE
======================================= */

.rates-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  background: var(--color-bg);
  overflow: hidden;
}

.rates-page-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 48px 48px;
}

.rates-page-image img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--header-height) - 96px);
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-md);
}

.rates-page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 60px 64px;
  max-width: 784px;
  width: 100%;
}

.rates-page-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.rates-page-label-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--color-hot);
  flex-shrink: 0;
}

.rates-page-label-text {
  font-size: 10px;
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.rates-page-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-hot);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.rates-pricing {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.rate-single-block {
  border-left: 2px solid var(--color-hot);
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rate-single-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.rate-single-old {
  text-decoration: line-through;
  color: var(--color-wine);
  opacity: 0.4;
  font-size: 18px;
  font-weight: 400;
}

.rate-single-new {
  color: var(--color-hot);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
}

.rate-single-unit {
  font-size: 14px;
  color: var(--color-wine);
  opacity: 0.6;
  font-weight: 400;
}

/* kept for any legacy reference */
.rate-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-hot);
}

.rate-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.rates-page-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rates-page-list li {
  color: var(--color-text);
  line-height: 1.6;
}


@media (min-width: 769px) and (max-width: 1024px) {
  .rates-page-content {
    padding: 48px 40px;
    gap: 24px;
  }

  .rates-page-title {
    font-size: 44px;
  }

  .rate-price {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .rates-page-content {
    padding: 32px 24px 40px;
    gap: 20px;
  }

  .rates-page-title {
    font-size: 40px;
  }

  .rate-price {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .rates-page-content {
    padding: 24px 16px 32px;
  }

  .rates-page-title {
    font-size: 32px;
  }

  .rate-price {
    font-size: 16px;
  }
}

/* =======================================
   FAQS PAGE
======================================= */

.faqs-page {
  margin-top: var(--header-height);
  background: var(--color-bg);
  padding: 72px 0 80px;
}

.faqs-header {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 24px;
}

.faqs-header-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.faqs-header-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-hot);
  flex-shrink: 0;
}

.faqs-header-label-text {
  font-size: 11px;
  /* letter-spacing: 5px; */
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.faqs-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

.faqs-page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-hot);
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  text-align: center;
  margin: 0;
}

/* Category block */

.faqs-category {
  margin-bottom: 48px;
}

.faqs-category-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-hot);
  text-transform: uppercase;
  /* letter-spacing: 1.5px; */
  margin-bottom: 20px;
}

/* Individual Q&A — Accordion */

.faq-item {
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

/* Remove native arrow */
.faq-item summary {
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  /* letter-spacing: 0.3px; */
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--color-hot);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  line-height: 1;
}

.faq-item[open] .faq-question {
  color: var(--color-hot);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  color: var(--color-hot);
}

/* Category-level toggles (Booking Policy, House Rules) */
.faq-item--category {
  border-bottom: none;
}

.faq-category-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 16px;
  transition: opacity var(--transition-fast);
}

.faq-category-summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  line-height: 1;
}

.faq-item--category[open] .faq-category-summary::after {
  transform: rotate(45deg);
}

.faq-category-summary:hover {
  opacity: 0.75;
}

/* Answer body */
.faq-body {
  padding-bottom: 16px;
}

.faq-answer {
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-list li {
  color: var(--color-text);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.faq-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-text);
}

/* Location embed inside FAQ answer */

.faq-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-location-map {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.faq-location-image {
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-location-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--color-bg);
}

/* Responsive */

@media (max-width: 768px) {
  .faqs-page {
    padding: 48px 0 60px;
  }

  .faqs-header {
    margin-bottom: 40px;
  }

  .faqs-container {
    padding: 0 24px;
  }

  .faqs-page-title {
    font-size: 22px;
  }

  .faq-location {
    grid-template-columns: 1fr;
  }

  .faq-location-map,
  .faq-location-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .faqs-header {
    margin-bottom: 32px;
  }

  .faqs-container {
    padding: 0 16px;
  }

  .faqs-page-title {
    font-size: 18px;
  }

  .faq-location-map,
  .faq-location-image {
    height: 180px;
  }
}
