/* ===========================
   IMPORT & RESET
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg:           #ffffff;
  --surface:      #f4f6fb;
  --border:       #dce3f0;

  --accent:       #4274D9;
  --accent-dark:  #2f5bbf;
  --accent-light: rgba(66,116,217,0.10);
  --accent-mid:   rgba(66,116,217,0.20);

  --text-primary: #0f1623;
  --text-body:    #3d4a61;
  --text-muted:   #7a8aaa;

  --font:       'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:     10px;
  --radius-lg:  16px;
  --header-h:   88px;
  --max-w:      1360px;
  --page-px:    56px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   PAGE FRAME + BORDER LINES
   =========================== */
.page-frame {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
  position: relative;
}
.page-frame::before,
.page-frame::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  pointer-events: none;
}
.page-frame::before { left:  var(--page-px); }
.page-frame::after  { right: var(--page-px); }

/* ===========================
   SECTION VISIBILITY
   =========================== */
.hidden { display: none !important; }

/* content-wrap grows to push footer down */
.content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 32px;
  gap: 20px;
}

/* Logo */
.logo-btn {
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.logo-btn:hover  { background: var(--accent-light); }
.logo-btn.active { background: var(--accent-light); outline: 2px solid var(--accent-mid); }

/* Full wordmark — desktop */
.logo-svg--full {
  height: 38px;
  width: auto;
  display: block;
}

/* Icon mark — mobile only, hidden on desktop */
.logo-svg--icon {
  height: 30px;
  width: auto;
  display: none;
}

/* Right side wrapper (nav + lang) */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover  { color: var(--accent); background: var(--accent-light); }
.nav-link.active { color: var(--accent); border-color: var(--accent-mid); background: var(--accent-light); }

/* ===========================
   LANGUAGE SWITCHER (desktop)
   =========================== */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.lang-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-mid);
  color: var(--accent);
}

.lang-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
}

.lang-chevron {
  width: 13px; height: 13px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.22s ease;
}
.lang-dropdown.open ~ * .lang-chevron,
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(66,116,217,0.12);
  overflow: hidden;
  min-width: 150px;
  z-index: 200;
}
.lang-dropdown.open { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.lang-option:hover   { background: var(--accent-light); color: var(--accent); }
.lang-option.active  { color: var(--accent); font-weight: 700; background: var(--accent-light); }

/* ===========================
   HAMBURGER (mobile only)
   =========================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
  z-index: 200;
}
.hamburger:hover { background: var(--accent-light); border-color: var(--accent-mid); }
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   MOBILE DRAWER
   =========================== */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 82vw);
  height: 100dvh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 300;
  transition: right 0.28s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(66,116,217,0.08);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.drawer-close:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent-mid); }

.drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 16px;
}

.drawer-link {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.drawer-link:hover { background: var(--accent-light); color: var(--accent); }
.drawer-link.active { color: var(--accent); background: var(--accent-light); }

/* FAQ link — sits right below the divider, no auto-margin */
.drawer-link--bottom {
  font-weight: 500;
}

.drawer-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 8px 0;
  flex-shrink: 0;
}

/* Language section at bottom of drawer */
.drawer-lang {
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  flex-shrink: 0;
}

.drawer-lang-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.drawer-lang-options {
  display: flex;
  gap: 8px;
}

.drawer-lang-btn {
  flex: 1;
  text-align: center;
  padding: 9px 8px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.drawer-lang-btn:hover { background: var(--accent-light); color: var(--accent); border-color: var(--accent-mid); }
.drawer-lang-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Backdrop */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,22,35,0.35);
  z-index: 149;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-backdrop.visible { opacity: 1; pointer-events: all; }

/* ===========================
   ABOUT PANEL
   =========================== */
.about-panel {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  animation: fadeSlideDown 0.3s ease both;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-inner {
  padding: 64px 24px 72px;
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.about-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.about-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
}

.about-block { width: 100%; }

.about-photo-wrap {
  margin: 48px 0;
  width: 100%;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: block;
  box-shadow: 0 6px 28px rgba(66,116,217,0.09);
}

/* Desktop image — 16:9 */
.about-photo--desktop {
  display: block;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 430px;
}

/* Mobile image — 1:1, hidden on desktop */
.about-photo--mobile {
  display: none;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 400px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 10px;
  width: 100%;
  text-align: left;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-top: 3px;
}

.why-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.why-list li p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===========================
   MAIN (services)
   =========================== */
.site-main {
  flex: 1;
  padding: 72px 0;
}

.main-inner {
  display: grid;
  grid-template-columns: 1fr min(460px, 45%);
  gap: 60px;
  padding: 0 24px;
  align-items: start;
}

.main-description { padding-top: 4px; }

.service-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-primary);
  transition: opacity var(--transition);
}

.divider {
  width: 44px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 28px 0;
}

.service-body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 520px;
  transition: opacity var(--transition);
}

.service-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity var(--transition);
}

.service-features li {
  font-size: 15px;
  color: var(--text-body);
  padding-left: 26px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 2px 16px rgba(37,211,102,0.22);
}
.btn-whatsapp:hover { background: #1dbc5a; box-shadow: 0 6px 24px rgba(37,211,102,0.35); }

.btn-email {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 16px rgba(66,116,217,0.22);
}
.btn-email:hover { background: var(--accent-dark); box-shadow: 0 6px 24px rgba(66,116,217,0.35); }

/* Gallery */
.main-gallery { display: flex; flex-direction: column; gap: 20px; }

.gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4/3;
  box-shadow: 0 2px 12px rgba(66,116,217,0.06);
}

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease, opacity var(--transition);
}
.gallery-frame:hover .gallery-img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(15,22,35,0.55) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-frame:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: #fff;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  animation: fadeSlideDown 0.3s ease both;
}

.faq-inner {
  padding: 72px 24px 72px;
}

.faq-header { margin-bottom: 52px; }

.faq-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-question:hover          { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform 0.32s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.28s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer-inner { padding-bottom: 26px; }

.faq-answer-inner p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
}

/* ===========================
   ABOUT — EXPLORE SERVICES
   =========================== */
.about-explore {
  width: 100%;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.about-explore .about-heading {
  margin-bottom: 28px;
}

.explore-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.explore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.explore-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-mid);
  transform: translateX(4px);
}

.explore-btn-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.explore-btn:hover .explore-btn-name { color: var(--accent); }

.explore-btn-arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--text-muted);
  transition: stroke var(--transition), transform var(--transition);
}
.explore-btn:hover .explore-btn-arrow {
  stroke: var(--accent);
  transform: translateX(3px);
}

/* Service Four — same style as others, just shows the "Soon" badge */
.explore-btn--disabled {
  opacity: 0.55;
}

.explore-soon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 999px;
  padding: 3px 10px;
  flex-shrink: 0;
}

/* S5 FAQ bottom spacer — small visual gap before contact buttons */
.s5-faq-spacer {
  height: 16px;
}

/* Contact buttons sit close to s5-faq accordion */
.s5-faq:not(.hidden) ~ .s4-overlay.hidden ~ .contact-buttons {
  margin-top: 20px;
}

/* S5 — single tall image gallery */
.main-gallery.gallery--tall {
  flex-direction: column;
}
.main-gallery.gallery--tall .gallery-frame {
  aspect-ratio: 3 / 4;
  flex: none;
}
.main-gallery.gallery--tall .gallery-frame:last-child {
  display: none;
}

/* ===========================
   SERVICE 4 — COMING SOON
   =========================== */

/* Small disclaimer shown on Rental Management */
.s4-overlay {
  margin-top: 28px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeSlideDown 0.3s ease both;
}

.s4-badge-icon {
  width: 15px;
  height: 15px;
  min-width: 15px;
  flex-shrink: 0;
  stroke: var(--text-muted);
}

.s4-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   SERVICE 5 INLINE FAQ
   =========================== */
.s5-faq {
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.s5-faq-item {
  border-bottom: 1px solid var(--border);
}

.s5-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}
.s5-faq-question:hover             { color: var(--accent); }
.s5-faq-item.open .s5-faq-question { color: var(--accent); }
.s5-faq-item.open .faq-chevron     { transform: rotate(180deg); }

.s5-faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.28s ease;
}
.s5-faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

/* S5 spacer — small gap between last question and contact buttons */
.s5-faq-spacer {
  height: 16px;
}

/* When S5 is active, give main-description a fixed min-height tall enough
   to contain all 6 questions + one open answer without pushing anything below */
.main-description.s5-active {
  min-height: 800px;
}

/* ===========================
   EMAIL COPY TOAST
   =========================== */
.email-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--text-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  white-space: nowrap;
}
#phoneToast { bottom: 88px; }

.email-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 24px 44px;
}

.footer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
  transition: color var(--transition);
}
.footer-info:hover { color: var(--accent); }

.footer-icon { width: 17px; height: 17px; flex-shrink: 0; stroke: var(--accent); }

.footer-links { display: flex; flex-direction: column; }

.footer-buttons { display: flex; flex-direction: column; gap: 12px; }

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(66,116,217,0.18);
  cursor: pointer;
}
.footer-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66,116,217,0.28);
}
.footer-btn.active { background: var(--accent-dark); }

.footer-btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-mid);
  box-shadow: none;
}
.footer-btn--outline:hover  { background: var(--accent-light); box-shadow: none; }
.footer-btn--outline.active { background: var(--accent-light); }

.footer-btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   RESPONSIVE — tablet (header collapses to hamburger)
   =========================== */
@media (max-width: 1300px) {
  /* Switch to hamburger nav before content gets cramped */
  .header-nav    { display: none; }
  .lang-switcher { display: none; }
  .hamburger     { display: flex; }
  .nav-backdrop  { display: block; pointer-events: none; }

  /* Logo: switch to icon on narrower screens */
  .logo-svg--full { display: none; }
  .logo-svg--icon { display: block; }
}

/* ===========================
   RESPONSIVE — tablet layout
   =========================== */
@media (max-width: 960px) {
  :root { --page-px: 32px; }

  .main-inner { grid-template-columns: 1fr; gap: 44px; }
  .main-gallery { flex-direction: row; gap: 16px; }
  .gallery-frame { flex: 1; }
  .service-body { max-width: 100%; }
  .about-inner { max-width: 100%; }
}

/* ===========================
   RESPONSIVE — mobile
   =========================== */
@media (max-width: 700px) {
  :root { --page-px: 16px; --header-h: 68px; }

  /* Hide border lines */
  .page-frame::before, .page-frame::after { display: none; }

  /* Logo icon bigger on mobile */
  .logo-svg--icon { height: 42px; }
  .logo-btn { padding: 8px 10px; margin-left: -8px; }

  /* Hamburger bigger on mobile */
  .hamburger { width: 52px; height: 52px; }
  .hamburger span { width: 22px; height: 2px; }

  /* Nav backdrop stays interactive */
  .nav-backdrop { pointer-events: none; }

  /* Main */
  .site-main { padding: 44px 0; }
  .main-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .main-gallery { flex-direction: column; gap: 16px; }
  .contact-buttons { flex-direction: column; gap: 12px; }
  .btn { justify-content: center; }

  /* Hide gallery entirely on mobile for Other Services (S5) */
  .main-gallery.gallery--tall { display: none; }

  /* About */
  .about-inner { padding: 44px 20px 56px; }
  .about-photo-wrap { margin: 36px 0; }
  .about-photo--desktop { display: none; }
  .about-photo--mobile  { display: block; }

  /* FAQ */
  .faq-inner { padding: 44px 20px; }
  .faq-question { font-size: 15px; padding: 20px 0; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; padding: 40px 20px 32px; }
  .footer-buttons { flex-direction: row; flex-wrap: wrap; }
  .footer-bottom { padding: 16px 20px; }
}