/* ===========================
   GIRONA STUDIO - Premium CSS
   =========================== */

:root {
  --black: #080808;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gold: #c8a96e;
  --gold-light: #e2c98a;
  --gold-dark: #a08040;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --section-pad: 100px;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 169, 110, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
}

.btn-large { padding: 20px 48px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; margin-top: 28px; }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-instagram:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-nav {
  background: var(--gold);
  color: var(--black) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.btn-nav:hover { background: var(--gold-light); }

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.logo-dot { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
}

.nav-links li a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.5s cubic-bezier(0.77,0,0.175,1);
  border-left: 1px solid rgba(200,169,110,0.1);
}

.mobile-menu.open { right: 0; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }

.mobile-link, .btn-mobile {
  display: block;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold); }

.btn-mobile {
  margin-top: 24px;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: var(--radius);
  border-bottom: none;
}

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.9) 0%,
    rgba(8,8,8,0.6) 50%,
    rgba(8,8,8,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title-gold { color: var(--gold); }

.hero-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,0.2);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,169,110,0.2);
}

/* ===========================
   ABOUT
   =========================== */
.section-about {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.about-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 20px 14px 12px;
  text-transform: uppercase;
}

.about-text {
  padding-left: 20px;
}

.about-desc {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-desc strong { color: var(--gold); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ===========================
   SERVICES
   =========================== */
.section-services {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark2);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.service-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.service-img img {
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-overlay { opacity: 1; }

.service-book {
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.service-book:hover { background: var(--gold-light); }

.service-info {
  padding: 24px;
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-info p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===========================
   GALLERY
   =========================== */
.section-gallery {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(8,8,8,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay a {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-item-overlay a:hover { color: var(--gold); }

.gallery-cta { text-align: center; }

/* ===========================
   TEAM
   =========================== */
.section-team {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--dark2);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}

.team-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-img-wrap img {
  transition: transform 0.8s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-social {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(8,8,8,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition);
}

.team-social:hover {
  background: var(--gold);
  color: var(--black);
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.team-tags span {
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

/* ===========================
   BOOKING CTA
   =========================== */
.section-booking {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 100%);
}

.booking-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.booking-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.booking-content h2 em {
  font-style: italic;
  color: var(--gold);
}

.booking-content p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 44px;
}

.booking-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   CONTACT
   =========================== */
.section-contact {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
}

.contact-card {
  background: var(--dark2);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: 2px;
  padding: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.contact-item p em { color: var(--gray); font-style: normal; }

.contact-item a { color: var(--gray-light); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }

.contact-map {
  min-height: 480px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.1);
}

.contact-map iframe { width: 100%; height: 100%; min-height: 480px; filter: grayscale(80%) invert(90%) contrast(85%); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(200,169,110,0.1);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-logo span { color: var(--gold); }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-links h4, .footer-contact-info h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color var(--transition);
}

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

.footer-contact-info p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-contact-info a { color: var(--gray); transition: color var(--transition); }
.footer-contact-info a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===========================
   FLOATING BUTTON
   =========================== */
.floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(200,169,110,0.4);
  transition: all var(--transition);
  animation: float-in 1s ease 2s both;
}

.floating-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(200,169,110,0.5);
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
  .about-img-float { right: -20px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(4rem, 18vw, 7rem); }

  .stats-bar { gap: 0; }
  .stat-item { padding: 8px 20px; }
  .stat-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-float { right: 0; bottom: -30px; }
  .about-text { padding-left: 0; }

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

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--tall { grid-row: span 1; }

  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .floating-btn span { display: none; }
  .floating-btn { padding: 16px; border-radius: 50%; }

  .booking-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 6px 12px; }
  .section-title { font-size: 2rem; }
}
