/* King's Court — Royal Luxury Theme */
:root {
  --royal-blue: #002147;
  --royal-blue-light: #003366;
  --royal-blue-dark: #001530;
  --gold: #D4AF37;
  --gold-light: #E8C547;
  --gold-dark: #B8960C;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cinzel', 'Georgia', serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 40px rgba(0, 33, 71, 0.15);
  --header-height: 90px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--royal-blue);
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--royal-blue-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--royal-blue);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--royal-blue-dark);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(0, 21, 48, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(0, 21, 48, 0.98);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img {
  height: 70px;
  width: auto;
}

.main-nav { display: flex; align-items: center; gap: 32px; }

.main-nav a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold); }

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-cta {
  /* display: flex;*/
  display: contents;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 0.85rem;
  color: var(--gold);
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 21, 48, 0.7) 0%,
    rgba(0, 33, 71, 0.5) 50%,
    rgba(0, 21, 48, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 40px) 24px 60px;
  max-width: 900px;
}

.hero-pre {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-pre span { display: block; font-style: italic; letter-spacing: 0.15em; opacity: 0.8; }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Services Grid */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  padding: 40px 30px;
  background: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card .read-more {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.service-card .read-more:hover { color: var(--royal-blue); }

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--royal-blue);
  color: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.about-images img:first-child {
  grid-row: span 2;
  height: 100%;
  min-height: 400px;
}

.about-content .section-label { color: var(--gold-light); }
.about-content .section-title { color: var(--white); }

.about-content p {
  margin-bottom: 16px;
  opacity: 0.9;
}

.about-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.about-features li::before {
  content: '♛';
  color: var(--gold);
  flex-shrink: 0;
}

/* Gallery Preview */
.gallery-section {
  padding-bottom: 100px;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 21, 48, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h5 {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  margin-top: 50px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--royal-blue);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
}

.slider-dot.active { background: var(--gold); }

/* Instagram Section */
.instagram-section {
  padding: 100px 0;
  background: var(--royal-blue-dark);
  color: var(--cream);
  text-align: center;
}

.instagram-section .section-title { color: var(--white); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.insta-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.insta-card:hover img { transform: scale(1.1); }

.insta-card .insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 21, 48, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--gold);
  font-size: 2rem;
}

.insta-card:hover .insta-hover { opacity: 1; }

.instagram-cta { margin-top: 40px; }

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 33, 71, 0.2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-checkbox input { margin-top: 4px; }

.contact-info-card {
  background: var(--royal-blue);
  color: var(--cream);
  padding: 40px;
}

.contact-info-card h3 {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail a:hover { color: var(--gold); }

.map-container {
  margin-top: 30px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* =========================
   Contact Section
========================= */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    margin-top: 50px;
}

/* IMPORTANT - prevents grid overflow */
.contact-grid > * {
    min-width: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--royal-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,33,71,.2);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .85rem;
}

.form-checkbox input {
    margin-top: 4px;
    flex-shrink: 0;
}

/* =========================
   Tablet
========================= */
@media (max-width: 992px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-info-card {
        padding: 30px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    /* Gallery Preview */
    .gallery-section {
      padding-top: 0;
      padding-bottom: 100px;
      margin-top: -50px;
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .container {
        padding: 0 12px;
    }

    .contact-section {
        padding: 45px 0;
    }

    .contact-info-card {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }

    .form-group label {
        font-size: .7rem;
    }
    /* Gallery Preview */
    .gallery-section {
      padding-top: 0;
      padding-bottom: 100px;
      margin-top: -50px;
    }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 21, 48, 0.75);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero p { opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) { background: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-block h2 {
  font-size: 2rem;
  color: var(--royal-blue);
  margin-bottom: 20px;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.content-image img {
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  padding: 36px 30px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition);
}

.feature-box:hover { transform: translateX(8px); }

.feature-box h4 {
  color: var(--royal-blue);
  margin-bottom: 10px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.feature-box p { color: var(--text-muted); font-size: 0.95rem; }

/* Venues Sub-pages */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.venue-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.venue-card:hover { transform: translateY(-6px); }

.venue-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.venue-card-body {
  padding: 30px;
}

.venue-card-body h3 {
  color: var(--royal-blue);
  margin-bottom: 12px;
}

.venue-card-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Decor Showcase */
.decor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.decor-item {
  position: relative;
  overflow: hidden;
}

.decor-item.large { grid-column: span 2; }

.decor-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.decor-item.large img { height: 500px; }

.decor-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 21, 48, 0.9));
  color: var(--white);
}

.decor-caption h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--royal-blue-dark);
  color: var(--cream);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 65px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-col a:hover { opacity: 1; color: var(--gold); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.footer-contact-list li a {
  opacity: 1;
}

.footer-contact-list li a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--royal-blue-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover { transform: scale(1.1); }

.whatsapp-tooltip {
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.section-header .section-subtitle { margin: 0 auto; }

/* Responsive */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid,
  .two-col { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .decor-grid { grid-template-columns: 1fr; }
  .decor-item.large { grid-column: span 1; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--royal-blue-dark);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .header-phone { display: block; }

  .gallery-grid { grid-template-columns: 1fr; }

  .about-images { grid-template-columns: 1fr; }
  .about-images img:first-child { grid-row: auto; min-height: 280px; }

  .footer-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2.2rem; }
}
