/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --text-primary: #1a1a1a;
  --text-muted: #555555;
  --footer-dark: #2d2d2d;
  --footer-text: #cccccc;
  --max-width: 1100px;
  --font: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

hr {
  border: none;
  border-top: 1px solid #000;
  margin: 0;
}

ul { list-style: none; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  background: #fff;
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 200;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo {
  height: 62px;
  width: 62px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover {
  border-bottom-color: #000;
}

.nav-links a[aria-current="page"] {
  border-bottom: 2px solid #000;
}

/* ── HAMBURGER ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

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

/* ── TAGLINE ────────────────────────────────────────────────── */
.tagline {
  padding: 48px 24px;
  text-align: center;
}

.tagline hr {
  border-top: 2.5px solid #000;
}

.tagline p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  margin: 28px 0;
  letter-spacing: 0.01em;
}

/* ── PACKAGES BUTTON (home) ─────────────────────────────────── */
.packages-cta {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.packages-cta-btn {
  display: block;
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  color: #1a1a1a;
  transition: background 0.25s ease, color 0.25s ease;
}

.packages-cta-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ── CONTACT SECTION (home page) ────────────────────────────── */
.contact-home {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}

.contact-info .biz-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-info a.phone-link {
  color: #1155cc;
  font-size: 15px;
  text-decoration: none;
}

.contact-info a.phone-link:hover {
  text-decoration: underline;
}

/* ── ACCORDION ──────────────────────────────────────────────── */
.accordion {
  margin-top: 18px;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.accordion-trigger .chevron {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: #f5f5f5;
  padding: 0 16px;
}

.accordion-body.open {
  max-height: 300px;
  padding: 14px 16px;
}

.accordion-body ul {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-primary);
}

.closed-holidays {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── MAP ────────────────────────────────────────────────────── */
.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--footer-dark);
  color: var(--footer-text);
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-bottom {
  background: var(--footer-dark);
  border-top: 1px solid #444;
  padding: 12px 32px;
}

/* ── INSTAGRAM BUTTON ───────────────────────────────────────── */
.instagram-btn {
  position: fixed;
  bottom: 72px;
  right: 20px;
  background: #e1306c;
  color: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 500;
  box-shadow: 0 2px 10px rgba(225, 48, 108, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.55);
}

.instagram-btn svg {
  width: 20px;
  height: 20px;
}

/* ── PAGE HEADING (packages / contact pages) ────────────────── */
.page-head {
  padding: 52px 24px 0;
  text-align: center;
}

.page-head h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.page-head hr {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── PACKAGE ROWS ───────────────────────────────────────────── */
.package-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-bottom: 1px solid #e0e0e0;
}

.package-img {
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.package-img:hover img {
  transform: scale(1.03);
}

.package-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.package-name {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.package-duration {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-style: italic;
}

.package-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.package-list {
  list-style: disc !important;
  padding-left: 20px;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.9;
}

.package-price {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.recommended {
  text-decoration: underline;
  font-style: italic;
}

/* ── BOOK BUTTON ────────────────────────────────────────────── */
.btn-book {
  display: inline-block;
  border: 1.5px solid #1a1a1a;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: white;
  cursor: pointer;
  text-decoration: none;
  color: #1a1a1a;
  font-family: var(--font);
  transition: background 0.22s ease, color 0.22s ease;
}

.btn-book:hover {
  background: #1a1a1a;
  color: white;
}

/* ── ADD-ON SERVICES ────────────────────────────────────────── */
.addon-wrap {
  margin-top: 28px;
  width: 100%;
}

/* ── DISCLAIMER ─────────────────────────────────────────────── */
.disclaimer {
  text-align: center;
  padding: 52px 24px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.5;
  border-top: 1px solid #000;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.inquiries-body {
  padding: 52px 24px 80px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.inquiries-body .email-addr {
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.inquiries-body .phone-label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.inquiries-body .call-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.inquiries-body .phone-link {
  color: #1155cc;
  font-size: 16px;
  text-decoration: underline;
}

.inquiries-body .phone-link:hover {
  color: #0b3fa6;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
/* Hidden state is added by JS only — content is visible without JS */
.fade-up.anim-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.anim-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.anim-ready {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.anim-ready.visible {
  opacity: 1;
}

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
  }

  .nav-name {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 22px;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .hero img {
    aspect-ratio: 16 / 7;
  }

  .tagline p {
    font-size: 18px;
  }

  .package-row {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .package-row .package-img {
    height: 280px;
    order: -1;
  }

  .package-content {
    padding: 36px 24px;
  }

  .contact-home {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-main {
    padding: 28px 20px;
  }

  .disclaimer {
    font-size: 15px;
    padding: 36px 20px;
  }
}
