/* Global styles */
:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0d0d0d;
  line-height: 1.65;
  font-size: 16px;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f5f5f5;
  --color-text-primary: #0d0d0d;
  --color-text-secondary: #555555;
  --color-accent: #c8a96e;
  --color-border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--color-text-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.portfolio-card {
  touch-action: manipulation;
}

img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.home-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  color: #ffffff;
  backdrop-filter: none;
}

.home-header .header-inner {
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.home-header .nav a {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.home-header .nav a:hover,
.home-header .nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.home-header .nav .button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
}

.home-header .nav-toggle {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-logo {
  width: auto;
  max-width: min(280px, 48vw);
  max-height: 76px;
  object-fit: contain;
}

.brand-text {
  display: inline-block;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #e8e8e8;
}

.nav-toggle:active {
  transform: translateY(-1px) scale(1.04);
}

.hamburger {
  position: relative;
  width: 1.3rem;
  height: 2px;
  background: currentColor;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav.open {
  max-height: 300px;
}

.nav a {
  color: var(--color-text-primary);
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--color-bg-secondary);
}

.nav a:active {
  transform: translateY(-1px) scale(1.01);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.button:active {
  transform: translateY(-2px) scale(1.02);
}

.button-primary {
  background: var(--color-accent);
  color: #ffffff;
  border-color: transparent;
}

.button-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  background-color: #111111;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.hero-slide.active img {
  transform: scale(1);
}


.hero-content {
  position: relative;
  max-width: 900px;
  width: min(100%, 900px);
  text-align: center;
  z-index: 2;
  padding: 2rem;
  color: #ffffff;
  background: transparent;
  border: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.6);
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.28em;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.6rem, 6.5vw, 7.4rem);
  margin: 0;
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 1.35rem auto 2rem;
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  font-weight: 600;
}

.hero .button-primary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.82);
  color: #ffffff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: #ffffff;
  color: #111111;
}

.hero-slider-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-slider-control:hover,
.hero-slider-control:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero-slider-control:active {
  transform: translateY(-50%) scale(1.08);
}

.hero-slider-control span {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-2px);
}

.hero-slider-prev {
  left: clamp(1rem, 4vw, 4rem);
}

.hero-slider-next {
  right: clamp(1rem, 4vw, 4rem);
}

/* Show desktop slider on desktop, hide on mobile */
.hero-slider-desktop {
  display: block;
}

.hero-slider-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-slider-desktop {
    display: none;
  }

  .hero-slider-mobile {
    display: block;
  }
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: transparent;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-slider-dots button:active {
  transform: scale(1.22);
}

.hero-slider-dots button.active {
  background: #ffffff;
  transform: scale(1.12);
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  margin: 0.5rem 0 0;
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.portfolio-card {
  display: block;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 1.75rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.portfolio-card:active {
  transform: translateY(-4px) scale(1.01);
}

.portfolio-card:focus-visible {
  outline: 3px solid rgba(200, 169, 110, 0.45);
  outline-offset: 4px;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-card img.focus-face-top {
  object-position: center 22%;
}

.portfolio-copy {
  padding: 1.5rem;
}

.portfolio-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.portfolio-copy p {
  margin: 0;
  color: var(--color-text-secondary);
}

.gallery-hero {
  padding: 3rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(245, 245, 245, 0.96), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at top right, rgba(200, 169, 110, 0.18), transparent 34%);
  border-bottom: 1px solid var(--color-border);
}

.gallery-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.gallery-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.gallery-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 1.5rem 0 2rem;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.gallery-hero-grid > img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  border-radius: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.gallery-section {
  background: #ffffff;
}

.gallery-header {
  margin-bottom: 2rem;
}

.gallery-header h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: visible;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.16));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: initial;
  border-radius: 1.25rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: none;
}

.gallery-item:active img {
  transform: translateY(-2px) scale(1.01);
}

.about-section .about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.about-section h2 {
  font-size: clamp(2.3rem, 3vw, 2.9rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
}

.about-details {
  display: grid;
  gap: 1rem;
}

.detail-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.detail-card h3 {
  margin-top: 0;
}

.detail-card p {
  color: var(--color-text-secondary);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}

.copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 1.5rem;
}

.copyright p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-primary);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-accent);
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ad-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.62);
}

.ad-modal[hidden] {
  display: none;
}

.ad-modal-content {
  position: relative;
  width: fit-content;
  max-width: min(92vw, 560px);
  max-height: min(86vh, 720px);
  overflow: hidden;
  border-radius: 1rem;
  background: transparent;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.ad-modal-content img {
  width: auto;
  max-width: min(92vw, 560px);
  max-height: min(86vh, 720px);
  height: auto;
  object-fit: contain;
  background: transparent;
}

.ad-link {
  display: inline-block;
  cursor: pointer;
}

.ad-link img {
  display: block;
}

.ad-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ad-close:active {
  transform: scale(1.08);
}

.page-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.booking-page {
  display: grid;
  gap: 2rem;
}

.booking-intro h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 1rem;
}

.booking-intro p {
  max-width: 560px;
  color: var(--color-text-secondary);
}

.booking-form {
  display: grid;
  gap: 1rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2rem;
}

.booking-form label {
  font-weight: 600;
  color: var(--color-text-primary);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1rem;
  background: #ffffff;
  color: var(--color-text-primary);
}

.booking-form select {
  appearance: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.booking-form button {
  width: min(100%, 260px);
}

.form-status {
  margin-top: 0.5rem;
  color: var(--color-text-secondary);
  min-height: 1.3rem;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.status-card {
  max-width: 520px;
  text-align: center;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 3rem;
}

.status-card h1 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.status-card p {
  color: var(--color-text-secondary);
  margin: 1.5rem 0 2rem;
}

/* Graduation Packages Section */
.graduation-packages-section {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.08), rgba(200, 169, 110, 0.04));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.packages-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.package-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 1.75rem;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.package-card-premium {
  border: 2px solid var(--color-accent);
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.06), rgba(245, 245, 245, 0.5));
  position: relative;
}

.package-card-premium:hover {
  box-shadow: 0 28px 60px rgba(200, 169, 110, 0.2);
}



.package-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.package-description {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.package-features li {
  color: var(--color-text-primary);
  padding-left: 0;
  font-size: 0.95rem;
}

.package-small-text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.package-card .button-primary {
  width: 100%;
}

/* Referral Section */
.referral-section {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.12), rgba(200, 169, 110, 0.08));
  border-bottom: 1px solid var(--color-border);
}

.referral-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.referral-content h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  margin: 0.5rem 0 1.5rem;
}

.referral-description { 
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.referral-explanation {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Graduation Campaign Banner */
.graduation-banner {
  background: linear-gradient(135deg, var(--color-accent), rgba(200, 169, 110, 0.85));
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}

.graduation-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.graduation-banner-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.graduation-banner .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.graduation-banner .button-secondary:hover,
.graduation-banner .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

@media (min-width: 640px) {
  .hero {
    padding: 5rem 0;
  }

  .section {
    padding: 5rem 0;
  }

  .nav {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .nav {
    max-height: none;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    width: auto;
  }

  .nav-toggle {
    display: none;
  }

  .about-section .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .booking-page {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid-compact .gallery-item-large,
  .gallery-grid-compact .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid-single .gallery-item-large {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: 720px;
    justify-self: center;
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .container {
    width: min(1120px, calc(100% - 3rem));
  }
}

@media (min-width: 1200px) {
  .about-section .about-grid {
    gap: 3rem;
  }
}

@media (min-width: 1440px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section-header {
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 1.75rem;
  }
}

@media (max-width: 650px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.55rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-left {
    flex: 1 1 auto;
    gap: 0.55rem;
  }

  .brand-logo {
    max-width: min(220px, 62vw);
    max-height: 52px;
  }

  .nav-toggle {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.8rem;
    flex: 0 0 auto;
  }

  .hamburger {
    width: 1.05rem;
  }

  .nav a {
    padding: 0.7rem 0.85rem;
    border-radius: 0.85rem;
  }

  .nav {
    width: 100%;
    flex: 1 0 100%;
  }

  .nav.open {
    max-height: 260px;
  }

  .home-header .nav.open {
    padding: 0.55rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
  }

  .hero-content {
    text-align: left;
  }

  .hero {
    min-height: 92vh;
    padding: 6.5rem 0 5rem;
  }

  .hero-slide.focus-left img {
    object-position: 25% center;
  }

  .hero-slide.focus-center img {
    object-position: center;
  }

  .hero-slide.focus-center-right img {
    object-position: 56% center;
  }

  .hero-slide.focus-right img {
    object-position: 88% center;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 12vw, 4.8rem);
    line-height: 0.96;
  }

  .button {
    width: 100%;
  }

  .hero .button-primary {
    width: auto;
    min-width: 220px;
  }

  .portfolio-grid,
  .about-section .about-grid,
  .booking-page,
  .gallery-hero-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero {
    padding: 2rem 0 3rem;
  }

  .gallery-hero-grid > img {
    border-radius: 1.25rem;
  }

  .gallery-item {
    border-radius: 1rem;
  }

  .footer-contact {
    gap: 0.85rem 1.1rem;
  }

  .ad-modal-content {
    max-width: min(94vw, 420px);
    border-radius: 0.85rem;
  }

  .ad-modal-content img {
    max-width: min(94vw, 420px);
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .graduation-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .graduation-banner-text {
    flex: 1 1 auto;
  }

  .graduation-banner .button-secondary {
    width: 100%;
  }
}
