/* =========================================================
   Confort İnn Hotel Marmaris — Public Site Stylesheet
   Design language: Aegean coast — deep marine navy, teal sea,
   warm terracotta-gold tile accent, stone-arch signature motif.
   ========================================================= */

:root {
  --navy: #0E3B4D;
  --navy-deep: #092833;
  --teal: #1F8A8C;
  --teal-dark: #166669;
  --gold: #C98A34;
  --gold-light: #E0AC5F;
  --cream: #FBF6EC;
  --white: #FFFFFF;
  --ink: #1E2A2E;
  --ink-soft: #52646A;
  --border-soft: #E7E1D3;
  --shadow-soft: 0 18px 40px -14px rgba(14, 59, 77, 0.28);
  --shadow-card: 0 8px 24px -10px rgba(14, 59, 77, 0.18);
  --radius-md: 14px;
  --radius-lg: 26px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Eyebrow / section label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* =========================
   Header / Navigation
   ========================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header.is-scrolled,
.site-header.is-inner {
  background: rgba(251, 246, 236, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(14, 59, 77, .08);
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--white);
  transition: color .3s ease;
}
.site-header.is-scrolled .brand,
.site-header.is-inner .brand { color: var(--navy); }
.brand .brand-mark {
  width: 40px; height: 40px;
  border-radius: 50% 50% 6px 6px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}
.site-header.is-scrolled .brand small,
.site-header.is-inner .brand small { color: var(--teal-dark); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  padding: 6px 2px;
  position: relative;
  transition: color .3s ease;
}
.site-header.is-scrolled .main-nav a,
.site-header.is-inner .main-nav a { color: var(--navy); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: background .3s ease;
}
.site-header.is-scrolled .nav-toggle span,
.site-header.is-scrolled .nav-toggle::before,
.site-header.is-scrolled .nav-toggle::after,
.site-header.is-inner .nav-toggle span,
.site-header.is-inner .nav-toggle::before,
.site-header.is-inner .nav-toggle::after { background: var(--navy); }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 24px -8px rgba(201,138,52,.55); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-light { border-color: rgba(255,255,255,.65); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-whatsapp {
  background: #25D366; color: #06341c;
  box-shadow: 0 10px 24px -8px rgba(37,211,102,.55);
}
.btn-whatsapp:hover { background: #2fe378; }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,40,51,.55) 0%, rgba(9,40,51,.45) 40%, rgba(9,40,51,.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding-top: 90px;
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  margin-bottom: .35em;
}
.hero p.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-content { animation: hero-rise .9s cubic-bezier(.22,.9,.3,1) both; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 86px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue svg { width: 16px; height: 16px; animation: cue-bounce 1.8s ease-in-out infinite; }
@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Arch scallop divider under hero — signature motif echoing Marmaris stone archways */
.arch-divider {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: -2px;
}
.arch-divider svg { display: block; width: 100%; height: auto; }

/* =========================
   Generic sections
   ========================= */
.section { padding: 112px 0; }
.section-alt {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 6px 6px, rgba(14,59,77,.05) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
}
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

/* Editorial statement band — signature "look through the arch" moment */
.statement-band {
  position: relative;
  padding: 90px 0;
  background: var(--navy-deep);
  overflow: hidden;
  text-align: center;
}
.statement-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='140' viewBox='0 0 240 140'%3E%3Cpath d='M20,140 L20,80 Q20,40 60,40 Q100,40 100,80 L100,140 M140,140 L140,80 Q140,40 180,40 Q220,40 220,80 L220,140' fill='none' stroke='%23E0AC5F' stroke-width='2' opacity='0.18'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 240px 140px;
  opacity: 0.5;
}
.statement-band .container { position: relative; z-index: 1; }
.statement-band p.statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.4;
}
.statement-band .rule {
  width: 60px; height: 3px; background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.statement-band .attribution {
  margin-top: 22px;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* =========================
   About (home short section)
   ========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-text p { color: var(--ink-soft); font-size: 1.06rem; }
.about-image-wrap { position: relative; }
/* Arch-frame: signature shape recalling Marmaris' old-town stone gateways */
.arch-frame {
  border-radius: 220px 220px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
  border: 8px solid var(--white);
  outline: 1px solid var(--border-soft);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  min-width: 150px;
}
.about-badge strong { display: block; font-size: 1.7rem; color: var(--gold-light); }
.about-badge span { font-family: var(--font-body); font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.85); }

/* =========================
   Features
   ========================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 34px 28px 30px;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.feature-card:nth-child(2n)::before { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50% 50% 12px 12px;
  background: linear-gradient(155deg, var(--teal), var(--teal-dark));
  box-shadow: 0 10px 22px -8px rgba(31,138,140,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  transition: transform .3s ease;
}
.feature-card:nth-child(2n) .feature-icon {
  background: linear-gradient(155deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 22px -8px rgba(201,138,52,.55);
}
.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.05); }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: .4em; }
.feature-card p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* =========================
   Gallery + Lightbox
   ========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: var(--cream);
  display: block;
  width: 100%;
  transition: border-color .3s ease, transform .3s ease;
}
.gallery-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.gallery-item .gallery-caption {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  color: #fff; font-size: .84rem; font-weight: 600;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 1;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,40,51,0) 55%, rgba(9,40,51,.55) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-zoom {
  position: absolute; right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }
.gallery-item .gallery-zoom svg { width: 16px; height: 16px; }
.gallery-empty {
  padding: 40px; text-align: center; color: var(--ink-soft);
  border: 1px dashed var(--border-soft); border-radius: var(--radius-md);
  grid-column: 1 / -1;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(9, 40, 51, .96);
  display: none;
  align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-stage {
  position: relative;
  width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-stage img {
  max-width: 100%; max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  object-fit: contain;
  user-select: none;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.24); }
.lightbox-close { top: -60px; right: 0; }
.lightbox-prev { left: -64px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -64px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: absolute; bottom: -42px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); font-size: .85rem; letter-spacing: .04em;
}
@media (max-width: 780px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-counter { bottom: -34px; }
}

/* =========================
   Map section
   ========================= */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 450px; border: 0; display: block; }
.map-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: .95rem;
}
.map-note svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* =========================
   CTA band
   ========================= */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-deep));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,138,52,.28), transparent 70%);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='140' viewBox='0 0 240 140'%3E%3Cpath d='M20,140 L20,80 Q20,40 60,40 Q100,40 100,80 L100,140 M140,140 L140,80 Q140,40 180,40 Q220,40 220,80 L220,140' fill='none' stroke='%231F8A8C' stroke-width='2' opacity='0.16'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 240px 140px;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-inner h2 { color: var(--white); margin-bottom: .25em; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.cta-inner p { color: rgba(255,255,255,.8); margin: 0; font-size: 1.02rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================
   Page header (About / Contact inner pages)
   ========================= */
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-deep));
  padding: 170px 0 90px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; left: -80px; bottom: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,138,140,.35), transparent 70%);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .3em; position: relative; z-index: 1;}
.page-hero p { color: rgba(255,255,255,.82); max-width: 560px; position: relative; z-index: 1; margin:0; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .85rem; color: var(--gold-light);
  margin-bottom: 18px; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }

/* =========================
   Contact cards
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
}
.contact-card .feature-icon { margin-bottom: 16px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .3em; }
.contact-card p, .contact-card a { color: var(--ink-soft); font-size: .95rem; }
.contact-card a.value { color: var(--navy); font-weight: 700; display:inline-block; margin-top:4px; }
.contact-card a.value:hover { color: var(--teal-dark); }

/* Rich text content (about page) */
.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1.2em; }
.prose h2, .prose h3 { margin-top: 1.4em; }

/* =========================
   Footer
   ========================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 16px; }
.footer-about p { color: rgba(255,255,255,.65); font-size: .93rem; max-width: 340px; }
.footer-col h4 { color: var(--white); font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: .93rem; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.social-btn:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.social-btn svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding-top: 26px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* =========================
   Floating WhatsApp button
   ========================= */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.5);
  animation: float-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
.whatsapp-float:hover { transform: scale(1.06); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.5); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,.85), 0 0 0 10px rgba(37,211,102,.12); }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .arch-frame { max-width: 420px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 100px 30px 30px; gap: 22px;
    transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { color: var(--navy) !important; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn-whatsapp span.btn-label { display: none; }
  .hero-content { padding-top: 70px; }
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-badge { left: 0; bottom: -18px; padding: 12px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
