:root {
  --black: #030606;
  --ink: #070909;
  --panel: #0c0d0c;
  --panel-soft: #111312;
  --gold: #c9a45c;
  --gold-light: #d9b46a;
  --cream: #f6f1e8;
  --muted: #c9c2b8;
  --line: rgba(201, 164, 92, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --serif: "Cinzel", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

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

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

button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 10000;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus { top: 1rem; }

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 76px);
  background: linear-gradient(180deg, rgba(3, 6, 6, 0.94), rgba(3, 6, 6, 0.68) 62%, rgba(3, 6, 6, 0));
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 6, 6, 0.95);
  border-color: rgba(201, 164, 92, 0.18);
  padding-block: 11px;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(150px, 15vw, 238px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 34px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(246, 241, 232, 0.88);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.primary-nav .nav-cta {
  border: 1px solid var(--gold);
  padding: 12px 20px;
  color: var(--gold-light);
}

.primary-nav .nav-cta::after { display: none; }

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  background: var(--gold);
  color: #111;
}

.menu-toggle {
  display: flex;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(8, 9, 9, 0.78);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

@media (min-width: 993px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle::before {
  content: "";
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-toggle {
  display: none;
  position: fixed;
  left: 178px;
  top: 15px;
  z-index: 120;
  min-width: 64px;
  height: 42px;
  border: 1px solid var(--gold);
  background: rgba(3, 6, 6, 0.94);
  color: var(--gold-light);
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.menu-open .mobile-menu-toggle span { font-size: 0; }
.menu-open .mobile-menu-toggle span::before { content: "KAPAT"; font-size: 11px; }

.hero {
  min-height: clamp(720px, 100vh, 920px);
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 140px 0 74px;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 62%, rgba(217, 180, 106, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(3, 6, 6, 0.94) 0%, rgba(3, 6, 6, 0.75) 34%, rgba(3, 6, 6, 0.28) 70%, rgba(3, 6, 6, 0.44) 100%),
    linear-gradient(180deg, rgba(3, 6, 6, 0.38), rgba(3, 6, 6, 0.36) 52%, rgba(3, 6, 6, 0.82));
}

.hero-content {
  max-width: 1180px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 { font-family: var(--serif); }

.hero h1 {
  font-size: clamp(42px, 5.7vw, 78px);
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0;
  max-width: 760px;
  text-shadow: 0 16px 52px rgba(0, 0, 0, 0.78);
}

.hero-subtitle {
  max-width: 560px;
  margin: 22px 0 22px;
  font-size: clamp(19px, 2vw, 30px);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-location {
  margin: 0 0 28px;
  color: var(--cream);
  font-weight: 700;
}

.hero-location::before {
  content: "⌖";
  color: var(--gold-light);
  margin-right: 10px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
}

.btn-ghost,
.btn-outline {
  background: rgba(3, 6, 6, 0.48);
  color: var(--cream);
}

.btn-instagram {
  gap: 10px;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.btn-outline {
  margin: 32px auto 0;
  display: flex;
  width: fit-content;
}

.split-section,
.experience,
.features,
.gallery-section,
.trust,
.location,
.contact {
  padding: clamp(64px, 8vw, 104px) 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.18);
}

.split-section {
  background: linear-gradient(90deg, #060808 0%, #060808 39%, #11130f 100%);
  padding-block: 0;
}

.split-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.25fr);
  align-items: stretch;
}

.section-copy {
  padding: clamp(58px, 8vw, 118px) clamp(24px, 5vw, 80px);
  align-self: center;
}

.section-copy h2,
.section-center h2,
.location h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 500;
  color: var(--cream);
}

.section-copy p,
.location p,
.contact p {
  color: var(--muted);
  max-width: 560px;
}

.about-media {
  margin: 0;
  min-height: 460px;
  position: relative;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #060808 0%, rgba(6, 8, 8, 0.18) 32%, rgba(6, 8, 8, 0));
  z-index: 1;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.mini-stats span {
  border-left: 2px solid var(--gold);
  padding: 8px 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.03);
}

.experience,
.gallery-section {
  background:
    linear-gradient(180deg, rgba(201, 164, 92, 0.04), transparent 28%),
    var(--black);
}

.section-center {
  text-align: center;
  margin: 0 auto 38px;
  max-width: 760px;
}

.section-center h2::after,
.location h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--gold);
}

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

.experience-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.25);
  background: var(--panel);
}

.experience-card.large { grid-column: span 2; grid-row: span 2; min-height: 738px; }
.experience-card.wide { grid-column: span 2; }

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 6, 0.02), rgba(3, 6, 6, 0.9));
}

.experience-card div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
}

.experience-card h3 {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 24px;
}

.experience-card p {
  margin: 8px 0 0;
  color: var(--cream);
  font-size: 14px;
}

.experience-card:hover img { transform: scale(1.055); }

.features {
  background: linear-gradient(180deg, #0a0b0b, #050707);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.feature-item {
  min-height: 158px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  padding: 20px 14px;
}

.feature-icon {
  font-size: 36px;
  line-height: 1;
  color: var(--gold-light);
  filter: drop-shadow(0 8px 18px rgba(201, 164, 92, 0.18));
}

.feature-item h3 {
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 0.9px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 8px;
}

.gallery-item {
  appearance: none;
  border: 0;
  padding: 0;
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  background: var(--panel);
  cursor: zoom-in;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease, filter 0.36s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: brightness(1.08);
}

.gallery-item.is-extra { display: none; }
.gallery-grid.is-expanded .gallery-item.is-extra { display: block; }

.trust {
  background: radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.08), transparent 36%), #050707;
}

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

.trust-grid blockquote {
  min-height: 160px;
  margin: 0;
  padding: 30px;
  color: var(--cream);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  font-size: 17px;
  position: relative;
}

.trust-grid blockquote::before {
  content: "“";
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 0.7;
}

.location {
  background: #060808;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
}

.location h2::after { margin-left: 0; }

.map-panel {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(201, 164, 92, 0.18) 1px, transparent 1px) 0 0 / 128px 96px,
    linear-gradient(28deg, rgba(246, 241, 232, 0.08) 1px, transparent 1px) 0 0 / 170px 82px,
    radial-gradient(circle at 65% 48%, rgba(217, 180, 106, 0.24), transparent 18%),
    linear-gradient(135deg, #0f1516, #030606);
  box-shadow: var(--shadow);
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 84%;
  left: 6%;
  background: rgba(201, 164, 92, 0.26);
  transform: rotate(-8deg);
}

.map-panel::before { top: 44%; }
.map-panel::after { top: 58%; transform: rotate(11deg); }

.map-pin {
  position: absolute;
  left: 58%;
  top: 43%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(3, 6, 6, 0.82);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 800;
  white-space: nowrap;
  z-index: 1;
}

.map-pin::before {
  content: "●";
  font-size: 18px;
}

.contact {
  background:
    linear-gradient(90deg, rgba(3, 6, 6, 0.9), rgba(3, 6, 6, 0.66)),
    url("../photos/web/10-night-terrace-pool.webp") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: rgba(3, 6, 6, 0.66);
  backdrop-filter: blur(8px);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font-weight: 700;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px;
  background: #0f7b2f;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-align: center;
  box-shadow: 0 18px 38px rgba(15, 123, 47, 0.28);
}

.whatsapp-btn img { width: 32px; height: 32px; flex: 0 0 auto; }

.site-footer {
  background: #050606;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px;
  padding: 46px 0 34px;
}

.footer-logo {
  width: min(230px, 100%);
  margin-bottom: 18px;
}

.site-footer p,
.footer-contact span {
  color: var(--muted);
  margin: 0;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav a,
.footer-contact a {
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-top: 1px solid rgba(201, 164, 92, 0.14);
  color: rgba(246, 241, 232, 0.68);
  font-size: 13px;
  text-align: center;
}

.floating-dock {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: grid;
  gap: 10px;
}

.dock-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  transform: skew(-5deg);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.dock-btn:hover,
.dock-btn:focus-visible {
  transform: skew(-5deg) translateY(-2px);
  filter: brightness(1.08);
}

.dock-btn > * { transform: skew(5deg); }
.dock-phone { background: #1677d2; color: #fff; }
.dock-whatsapp { background: #11b957; }
.dock-whatsapp img { width: 32px; height: 32px; }
.dock-phone img { width: 27px; height: 27px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 70px 74px;
}

.lightbox.is-open { display: flex; }

.lightbox figure {
  margin: 0;
  max-width: min(1120px, 100%);
  max-height: 100%;
}

.lightbox img {
  max-height: calc(100vh - 170px);
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  padding-top: 14px;
  color: var(--cream);
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(3, 6, 6, 0.78);
  color: var(--cream);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  font-size: 50px;
  line-height: 1;
}

.lightbox-arrow.prev { left: 22px; }
.lightbox-arrow.next { right: 22px; }

@media (max-width: 1200px) {
  .primary-nav { gap: 16px; font-size: 11px; }
  .primary-nav .nav-cta { padding-inline: 14px; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
  .menu-toggle { display: flex; }
  .mobile-menu-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(3, 6, 6, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    white-space: normal;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(201, 164, 92, 0.12);
  }

  .primary-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero { min-height: 780px; }

  .split-grid,
  .location-grid,
  .contact-panel,
  .footer-grid { grid-template-columns: 1fr; }

  .split-section { padding-top: 42px; }
  .section-copy { padding: 28px 22px 42px; }
  .about-media { min-height: 390px; }
  .about-media::before { background: linear-gradient(180deg, #060808 0%, rgba(6, 8, 8, 0) 32%); }

  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-card.large { grid-column: span 2; min-height: 480px; }
  .experience-card.wide { grid-column: span 2; }

  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .gallery-item.gallery-tall { grid-row: span 1; aspect-ratio: 1.32 / 1; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 30px, 1180px); }
  .site-header { padding: 12px 15px; }
  .brand { width: 152px; }
  .menu-toggle {
    position: fixed;
    right: 15px;
    top: 16px;
    z-index: 120;
    transform: none;
    background: rgba(3, 6, 6, 0.94);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  }

  .menu-toggle::before {
    content: "☰";
    color: var(--gold-light);
    font-size: 25px;
    line-height: 1;
  }

  .menu-toggle span { display: none; }

  .menu-open .menu-toggle::before { content: "×"; font-size: 30px; }
  .primary-nav { inset: 68px 14px auto; }

  .hero {
    min-height: 720px;
    padding-top: 108px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 6, 6, 0.55), rgba(3, 6, 6, 0.28) 35%, rgba(3, 6, 6, 0.94)),
      linear-gradient(90deg, rgba(3, 6, 6, 0.88), rgba(3, 6, 6, 0.25));
  }

  .hero h1 { font-size: clamp(54px, 18vw, 92px); }
  .hero-subtitle { font-size: 18px; }

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

  .experience-grid,
  .feature-grid,
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .gallery-item.gallery-wide { grid-column: span 2; }

  .experience-card,
  .experience-card.large,
  .experience-card.wide {
    grid-column: auto;
    min-height: 310px;
  }

  .feature-item { min-height: 138px; }
  .map-panel { min-height: 300px; }
  .map-pin { left: 38%; }
  .lightbox { padding: 68px 18px; }
  .lightbox-arrow { top: auto; bottom: 22px; transform: none; width: 48px; height: 48px; font-size: 38px; }
  .lightbox-arrow.prev { left: 22px; }
  .lightbox-arrow.next { right: 22px; }
  .lightbox img { max-height: calc(100vh - 210px); }
}

@media (max-width: 520px) {
  .eyebrow,
  .section-kicker { font-size: 11px; }

  .hero { min-height: 670px; }
  .hero h1 { font-size: clamp(32px, 10vw, 39px); }
  .hero-subtitle { font-size: 15px; letter-spacing: 0.4px; }
  .section-copy h2,
  .section-center h2,
  .location h2,
  .contact h2 { font-size: 26px; }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  .experience-grid,
  .feature-grid,
  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-item.gallery-wide { grid-column: auto; }

  .gallery-item { aspect-ratio: 1.24 / 1; }
  .contact-panel { padding: 24px 16px; }
  .whatsapp-btn { font-size: 13px; padding-inline: 12px; }
  .floating-dock {
    right: 12px;
    top: auto;
    bottom: 14px;
    transform: none;
    gap: 7px;
  }

  .dock-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .footer-bottom { padding-bottom: 86px; }
}
