/* =========================================
   RESET + GLOBAL
========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: #161616;
  background: #f5f5f3;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section {
  scroll-margin-top: 100px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: #747474;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 14px;
  color: #111;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: #666;
  font-size: 1.02rem;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark,
.btn-primary {
  color: #fff;
  background: #111;
  border-color: #111;
}

.btn-dark:hover,
.btn-primary:hover {
  color: #111;
  background: #fff;
  border-color: #111;
}

.btn-light {
  color: #111;
  background: #fff;
  border-color: rgba(17, 17, 17, 0.15);
}

.btn-light:hover {
  color: #fff;
  background: #111;
  border-color: #111;
}

.full-width {
  width: 100%;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #090909;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 32px;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-shrink: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 138px;
  height: auto;
  object-fit: contain;
}

/* =========================================
   HEADER SOCIAL ICONS
========================================= */

.header-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.15rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.header-social-icons a:hover {
  transform: translateY(-3px);
  color: #111;
  background: #fff;
  border-color: #fff;
}

/* =========================================
   NAVIGATION
========================================= */

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}

.nav-menu > a:not(.btn) {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-menu > a:not(.btn):hover {
  color: #fff;
}

.nav-menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.2s ease;
}

.nav-menu > a:not(.btn):hover::after {
  width: 100%;
}

.nav-book-btn {
  min-height: 42px;
  padding: 10px 18px;
  color: #111;
  background: #fff;
  border-color: #fff;
}

.nav-book-btn:hover {
  color: #fff;
  background: transparent;
}

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

.hero {
  padding-top: 84px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 48%),
    linear-gradient(135deg, #efefec 0%, #fafafa 50%, #e9e9e5 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: #0d0d0d;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 680px;
  color: #5c5c5c;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 36px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 0.98rem;
}

.highlight-card span {
  color: #696969;
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-photo-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: #ececea;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

/* =========================================
   FEATURED SERVICE
========================================= */

.feature-split-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.feature-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 70px);
  color: #fff;
}

.feature-info-card .eyebrow {
  color: #a9a9a9;
}

.feature-info-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.feature-info-card > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: #c9c9c9;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 0 0 30px 18px;
  color: #e8e8e8;
}

.feature-image-card {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: #ececea;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* =========================================
   PRICING
========================================= */

#pricing {
  background: #ececea;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.explore-card {
  overflow: hidden;
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.explore-card-media {
  min-height: 0;
}

.explore-card-media.image-card {
  aspect-ratio: 16 / 10;
  background: #ececea;
}

.explore-card-media.image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.explore-card-media.light-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, #fff, #dededb);
}

.package-price {
  color: #111;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.explore-card-body {
  padding: 28px;
}

.explore-card-body h3 {
  margin-bottom: 10px;
  color: #111;
  font-size: 1.45rem;
}

.explore-card-body > p {
  margin-bottom: 20px;
  color: #666;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin-left: 18px;
  color: #4f4f4f;
  font-size: 0.94rem;
}

.addons-panel {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 30px;
  margin-top: 28px;
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background: #111;
}

.addons-panel .eyebrow {
  color: #999;
}

.addons-panel h3 {
  font-size: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.addon-item span {
  color: #cfcfcf;
  white-space: nowrap;
}

/* =========================================
   GALLERY
========================================= */

.gallery-showcase {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
}

.gallery-large,
.gallery-side-item {
  overflow: hidden;
  border-radius: 24px;
  background: #ececea;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.gallery-large {
  aspect-ratio: 4 / 3;
}

.gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-side-grid {
  display: grid;
  gap: 20px;
}

.gallery-side-item {
  aspect-ratio: 4 / 3;
}

.gallery-side-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* =========================================
   BOOKING SECTION
========================================= */

#booking {
  background:
    linear-gradient(135deg, #111 0%, #1a1a1a 55%, #0a0a0a 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
  gap: 58px;
}

.booking-copy {
  position: sticky;
  top: 135px;
  color: #fff;
}

.booking-copy .eyebrow {
  color: #a9a9a9;
}

.booking-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.booking-copy > p {
  color: #c9c9c9;
  font-size: 1rem;
  line-height: 1.75;
}

.booking-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.booking-note span {
  color: #cfcfcf;
}

.form-card {
  padding: clamp(24px, 5vw, 42px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.booking-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 9px;
}

.form-group label {
  color: #1b1b1b;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: 13px;
  color: #111;
  background: #fafafa;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group input,
.form-group select {
  height: 52px;
  padding: 0 15px;
}

.form-group textarea {
  min-height: 140px;
  padding: 15px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9a9a9a;
}

/* =========================================
   BOOKING FIELDSETS + OPTIONS
========================================= */

.booking-fieldset {
  min-width: 0;
  margin: 4px 0;
  padding: 24px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 18px;
  background: #fafafa;
}

.booking-fieldset legend {
  padding: 0 10px;
  color: #111;
  font-size: 1rem;
  font-weight: 800;
}

.field-help {
  margin-bottom: 18px;
  color: #686868;
  font-size: 0.92rem;
}

.booking-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-option-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 94px;
  padding: 17px;
  border: 1px solid rgba(20, 20, 20, 0.13);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.booking-option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 20, 20, 0.36);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.booking-option-card:has(input:checked) {
  border-color: #111;
  background: #f0f0ef;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.08);
}

.booking-option-card input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #111;
}

.booking-option-card span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-option-card strong {
  color: #111;
  line-height: 1.35;
}

.booking-option-card small {
  color: #6f6f6f;
  line-height: 1.45;
}

.booking-question {
  padding: 20px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.booking-question:first-of-type {
  padding-top: 4px;
}

.booking-question:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-question p {
  margin-bottom: 14px;
  color: #171717;
  font-weight: 700;
  line-height: 1.55;
}

.yes-no-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yes-no-options label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100px;
  padding: 11px 18px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.yes-no-options label:has(input:checked) {
  color: #fff;
  background: #111;
  border-color: #111;
}

.yes-no-options input {
  accent-color: #111;
}

.booking-disclaimer {
  padding: 15px 17px;
  border-radius: 12px;
  color: #5b5b5b;
  background: rgba(20, 20, 20, 0.05);
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking-form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
}

.booking-form-message.success {
  display: block;
  color: #145c2f;
  background: #eaf8ef;
  border: 1px solid #b9e5c8;
}

.booking-form-message.error {
  display: block;
  color: #8a1f1f;
  background: #fff0f0;
  border: 1px solid #edbebe;
}

.booking-form button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

/* =========================================
   FAQ
========================================= */

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
  border: 1px solid rgba(20, 20, 20, 0.11);
  border-radius: 17px;
  background: #fff;
}

.faq-item summary {
  position: relative;
  padding: 22px 36px 22px 0;
  color: #111;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.45rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 22px;
  color: #666;
}

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

#contact {
  background: #ededeb;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  color: #111;
  background: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
  background: #111;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 8px;
  min-height: 145px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.contact-card strong {
  color: #111;
}

.contact-card span {
  color: #676767;
}

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

.site-footer {
  padding: 64px 0 24px;
  color: #fff;
  background: #080808;
}

.footer-stack {
  display: grid;
  gap: 40px;
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid p {
  max-width: 430px;
  color: #aaa;
}

.footer-links-column {
  display: grid;
  gap: 10px;
}

.footer-links-column a {
  width: fit-content;
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-column a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #898989;
  font-size: 0.88rem;
}

/* =========================================
   REVEAL ANIMATIONS
========================================= */

.reveal.animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .nav-menu {
    gap: 14px;
  }

  .nav-menu > a:not(.btn) {
    font-size: 0.84rem;
  }

  .brand-area {
    gap: 18px;
  }

  .header-social-icons {
    gap: 7px;
  }

  .header-social-icons a {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

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

  .hero-media {
    max-width: 780px;
  }

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

  .booking-copy {
    position: static;
    max-width: 720px;
  }
}

/* =========================================
   MOBILE / SMALL TABLET
========================================= */

@media (max-width: 860px) {
  .section {
    padding: 78px 0;
  }

  .nav {
    min-height: 82px;
  }

  .nav-menu > a:not(.nav-book-btn) {
    display: none;
  }

  .header-social-icons {
    display: flex;
  }

  .feature-split-card,
  .gallery-showcase,
  .addons-panel {
    grid-template-columns: 1fr;
  }

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

  .gallery-side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

/* =========================================
   PHONE
========================================= */

@media (max-width: 650px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .site-header {
    position: relative;
  }

  .nav {
    align-items: center;
    min-height: 78px;
    gap: 14px;
  }

  .brand-area {
    gap: 12px;
  }

  .brand-logo {
    width: 108px;
  }

  .header-social-icons {
    gap: 5px;
  }

  .header-social-icons a {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .nav-book-btn {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .feature-info-card {
    padding: 30px 24px;
  }

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

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

  .form-card {
    padding: 22px 17px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-options-grid {
    grid-template-columns: 1fr;
  }

  .booking-fieldset {
    padding: 18px 14px;
  }

  .yes-no-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yes-no-options label {
    min-width: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 430px) {
  .brand-logo {
    width: 96px;
  }

  .header-social-icons a {
    width: 31px;
    height: 31px;
    font-size: 0.84rem;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }
}

/* =========================================
   FINAL BALANCED IMAGE SAFETY RULES
========================================= */

.hero-photo-frame,
.feature-image-card,
.explore-card-media.image-card,
.gallery-large,
.gallery-side-item {
  background: #ececea;
}

.hero-photo,
.feature-image,
.explore-card-media.image-card img,
.gallery-large img,
.gallery-side-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


/* =========================================
   POLISHED ADD-ON PRICE LIST
========================================= */

.addons-panel {
  align-items: start;
}

.addons-panel-heading {
  display: grid;
  gap: 8px;
}

.addons-panel-copy {
  max-width: 320px;
  color: #bcbcbc;
  font-size: 0.94rem;
  line-height: 1.6;
}

.addons-price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.addons-price-list .addon-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.addons-price-list .addon-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.085);
}

.addon-name {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.addon-name i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #111;
  background: #fff;
  font-size: 0.72rem;
}

.addon-name strong {
  line-height: 1.35;
}

.addons-price-list .addon-item span {
  flex: 0 0 auto;
  color: #f2f2f2;
  font-weight: 700;
  white-space: nowrap;
}

.addons-price-list .addon-discount {
  border-style: dashed;
}

.addons-price-list .addon-discount .addon-name i {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 650px) {
  .addons-price-list .addon-item {
    align-items: flex-start;
    gap: 16px;
  }

  .addons-price-list .addon-item span {
    max-width: 42%;
    text-align: right;
    white-space: normal;
  }
}


/* =========================================
   ADMIN CALENDAR + SCHEDULING
========================================= */

.dashboard-nav-link:not(:disabled) {
  cursor: pointer;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 20px;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.9rem;
  font-weight: 700;
}

.calendar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.calendar-dot.pending {
  background: #9b9b9b;
}

.calendar-dot.confirmed {
  background: #2f8f55;
}

.calendar-dot.completed {
  background: #3978b8;
}

.calendar-dot.cancelled {
  background: #b84a4a;
}

.calendar-panel {
  overflow: hidden;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.calendar-toolbar h2 {
  margin: 0;
  text-align: center;
}

.calendar-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 20, 20, 0.15);
  border-radius: 50%;
  color: #111;
  background: #fff;
  cursor: pointer;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  background: #f5f5f3;
}

.calendar-weekdays span {
  padding: 12px 8px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  color: #666;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-left: 1px solid #d9d9d9;
}

.calendar-day {
  position: relative;
  display: block;
  min-height: 138px;
  padding: 10px;
  border: 0;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  color: #111;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.calendar-day.blank {
  background: #f4f4f2;
  cursor: default;
}

.calendar-day:hover:not(.blank) {
  background: #fafafa;
}

.calendar-day.selected {
  box-shadow: inset 0 0 0 2px #111;
}

.calendar-day.today .calendar-day-number {
  color: #fff;
  background: #111;
}

.calendar-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
}

.calendar-day-events {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.calendar-event-chip {
  display: block;
  overflow: hidden;
  padding: 5px 7px;
  border-radius: 7px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-event-chip.pending {
  background: #969696;
}

.calendar-event-chip.confirmed {
  background: #2f8f55;
}

.calendar-event-chip.completed {
  background: #3978b8;
}

.calendar-event-chip.cancelled {
  background: #b84a4a;
}

.calendar-more {
  color: #666;
  font-size: 0.72rem;
  font-weight: 700;
}

.day-schedule-panel {
  margin-top: 24px;
}

.day-schedule-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.day-schedule-heading > p {
  color: #777;
  font-size: 0.88rem;
}

.pending-day-requests {
  margin-bottom: 22px;
}

.pending-day-requests h3 {
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}

.pending-request-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pending-request-card {
  display: grid;
  gap: 3px;
  padding: 11px 14px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  color: #222;
  background: #ededed;
  text-align: left;
  cursor: pointer;
}

.pending-request-card span {
  color: #666;
  font-size: 0.8rem;
}

.day-timeline-wrap {
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: #fff;
}

.day-timeline {
  position: relative;
  margin-left: 92px;
}

.timeline-line {
  position: absolute;
  left: -92px;
  right: 0;
  height: 1px;
  border-top: 1px solid #e2e2e2;
}

.timeline-line.hour {
  border-top-color: #bdbdbd;
}

.timeline-line.half-hour {
  border-top-style: dashed;
  border-top-color: #e4e4e4;
}

.timeline-line span {
  position: absolute;
  top: -10px;
  left: 12px;
  width: 68px;
  color: #737373;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.timeline-appointment {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
}

.timeline-appointment.confirmed {
  background: #2f8f55;
}

.timeline-appointment.completed {
  background: #3978b8;
}

.timeline-appointment.cancelled {
  background: #b84a4a;
  opacity: 0.75;
}

.timeline-appointment span,
.timeline-appointment small {
  color: rgba(255, 255, 255, 0.9);
}

.schedule-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
}

.schedule-modal-backdrop[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.schedule-modal {
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.schedule-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.schedule-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.schedule-modal-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.schedule-modal-summary > div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
}

.schedule-modal-summary span {
  color: #777;
  font-size: 0.8rem;
  font-weight: 700;
}

.schedule-time-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 15px;
  border-radius: 12px;
  background: #f0f0ee;
}

.schedule-time-preview span {
  color: #666;
  font-size: 0.88rem;
}

.schedule-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.admin-status-btn:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .calendar-day {
    min-height: 110px;
    padding: 7px;
  }

  .calendar-event-chip {
    font-size: 0.66rem;
  }
}

@media (max-width: 700px) {
  .calendar-panel {
    overflow-x: auto;
  }

  .calendar-weekdays,
  .calendar-month-grid {
    min-width: 760px;
  }

  .day-schedule-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-modal-summary {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FRONTEND PACKAGE + GALLERY FINAL OVERRIDES
   Updated for Lucki Details package photos
========================================= */

/* Keep the hero image exactly as-is */
.hero-photo {
  object-fit: contain;
  object-position: center;
}

/* Featured Basic Detail card: no clipping and no empty image bands */
.feature-split-card {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.45fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 650px;
  border-radius: 28px;
  background: #111;
}

.feature-info-card {
  justify-content: center;
  min-height: 650px;
  height: auto;
  overflow: visible;
  padding: clamp(34px, 5vw, 64px);
}

.feature-info-card h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.feature-list {
  gap: 10px;
}

.feature-image-card {
  position: relative;
  min-height: 650px;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background: #111;
}

.feature-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover !important;
  object-position: center !important;
}

/* Pricing cards */
.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.explore-card-media.image-card {
  position: relative;
  width: 100%;
  height: 350px;
  min-height: 350px;
  aspect-ratio: auto;
  overflow: hidden;
  background: #111;
}

.explore-card-media.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
}

.explore-card-body {
  flex: 1;
}

.package-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 10, 10, 0.88);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.most-popular-card {
  border-color: rgba(17, 17, 17, 0.35);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.11);
}

/* Gallery: photos fill the cards instead of sitting inside white space */
.gallery-large,
.gallery-side-item {
  background: #111;
}

.gallery-large img,
.gallery-side-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
}

.gallery-four {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: stretch;
}

.gallery-four .gallery-large {
  aspect-ratio: auto;
  min-height: 760px;
}

.gallery-four .gallery-side-grid {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  min-height: 760px;
}

.gallery-four .gallery-side-item {
  min-height: 0;
  aspect-ratio: auto;
}

@media (max-width: 860px) {
  .feature-split-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-info-card {
    min-height: 0;
  }

  .feature-image-card,
  .feature-image {
    min-height: 430px;
  }

  .explore-card-media.image-card {
    height: 330px;
    min-height: 330px;
  }

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

  .gallery-four .gallery-large {
    min-height: 520px;
  }

  .gallery-four .gallery-side-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 260px;
    min-height: 0;
  }
}

@media (max-width: 650px) {
  .feature-image-card,
  .feature-image {
    min-height: 330px;
  }

  .explore-card-media.image-card {
    height: 280px;
    min-height: 280px;
  }

  .gallery-four .gallery-large {
    min-height: 380px;
  }

  .gallery-four .gallery-side-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 300px);
  }
}
/* =========================================
   FINAL HERO IMAGE FIX
========================================= */

.hero-photo-frame {
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #111;
  border-radius: 28px;
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 860px) {
  .hero-photo-frame {
    height: 520px;
  }
}

@media (max-width: 650px) {
  .hero-photo-frame {
    height: 430px;
  }
}


/* =========================================
   FINAL HERO LAYOUT BALANCE
========================================= */

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 48px;
}

.hero-media {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.hero-photo-frame {
  width: 100%;
  height: 560px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 700px;
    justify-self: start;
  }
}

@media (max-width: 650px) {
  .hero-media {
    max-width: 100%;
  }

  .hero-photo-frame {
    height: 430px;
  }
}


/* =========================================
   FINAL MOBILE WIDTH / OVERFLOW FIX
========================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

.site-header,
main,
section,
.hero,
.container {
  max-width: 100%;
}

@media (max-width: 650px) {

  .container {
    width: calc(100% - 28px) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 38px !important;
  }

  .hero-copy,
  .hero-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-media {
    justify-self: stretch !important;
  }

  .hero-photo-frame {
    width: 100% !important;
    max-width: 100% !important;
    height: 430px !important;
    margin: 0 !important;
  }

  .hero-photo {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .feature-split-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .feature-info-card,
  .feature-image-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .explore-grid,
  .explore-card,
  .explore-card-media,
  .explore-card-body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .feature-list,
  .mini-list {
    max-width: 100%;
  }

  img {
    max-width: 100%;
  }
}


/* =========================================
   FEATURED BASIC MOBILE VISIBILITY FIX
========================================= */

.feature-info-card {
  background: #111;
  color: #fff;
}

.feature-info-card .eyebrow {
  color: #aaa;
}

.feature-info-card h3 {
  color: #fff;
}

.feature-info-card > p:not(.eyebrow) {
  color: #c9c9c9;
}

.feature-info-card .feature-list {
  color: #eee;
}

@media (max-width: 650px) {
  .feature-info-card {
    padding: 34px 26px !important;
    background: #111 !important;
    color: #fff !important;
  }

  .feature-info-card h3 {
    color: #fff !important;
    font-size: 2rem;
  }

  .feature-info-card .feature-list {
    color: #eee !important;
  }
}


/* =========================================
   FEATURED BASIC MOBILE VISIBILITY FIX
========================================= */

.feature-info-card {
  background: #111;
  color: #fff;
}

.feature-info-card .eyebrow {
  color: #aaa;
}

.feature-info-card h3 {
  color: #fff;
}

.feature-info-card > p:not(.eyebrow) {
  color: #c9c9c9;
}

.feature-info-card .feature-list {
  color: #eee;
}

@media (max-width: 650px) {
  .feature-info-card {
    padding: 34px 26px !important;
    background: #111 !important;
    color: #fff !important;
  }

  .feature-info-card h3 {
    color: #fff !important;
    font-size: 2rem;
  }

  .feature-info-card .feature-list {
    color: #eee !important;
  }
}

