/* Ben Omrane Immo — brand: slate blue + brick red */

:root {
  --ink: #1c2a32;
  --surface: #ffffff;
  --surface-2: #f7f9fa;
  --text: #1c2a32;
  --slate: #4f6b78;
  --slate-deep: #3a5260;
  --red: #b82828;
  --red-deep: #961f1f;
  --mist: #eef2f4;
  --paper: #f7f9fa;
  --white: #ffffff;
  --line: rgba(28, 42, 50, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-ar: "Cairo", "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 2.75rem);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 249, 250, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  z-index: 101;
}

.site-header .logo-img,
img.logo-img {
  height: 180px;
  width: auto;
  max-width: 220px;
  max-height: none;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--red);
  color: var(--white);
  padding: 0.65rem 1rem;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.nav {
  display: flex;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}

.nav-panel {
  display: contents;
}

.nav-panel-top,
.nav-eyebrow,
.nav-links,
.nav-cta,
.nav-panel-logo {
  display: none;
}

.nav a,
.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s;
}

.nav a:hover,
.nav-links a:hover {
  color: var(--white);
}

.site-header.is-scrolled .nav a,
.site-header.is-scrolled .nav-links a {
  color: var(--slate-deep);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav-links a:hover {
  color: var(--red);
}

/* Desktop: show only the main links from nav-links */
@media (min-width: 721px) {
  .nav-links {
    display: contents;
  }

  .nav a,
  .nav-links a {
    font-weight: 700;
  }

  .nav-links a > span:first-child {
    display: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-mobile-tools {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.header-assistant-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border: none;
  border-radius: 0.55rem;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 131;
  pointer-events: auto;
  transition: background 0.25s, transform 0.25s;
}

.header-assistant-icon:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-assistant-icon {
  background: var(--red);
  color: var(--white);
}

.site-header.is-menu-open .header-assistant-icon {
  background: var(--red);
  color: var(--white);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.site-header.is-scrolled .lang-switch {
  border-color: var(--line);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.site-header.is-scrolled .lang-btn {
  color: var(--slate-deep);
}

.lang-btn.is-active {
  background: var(--red);
  color: var(--white);
}

.site-header.is-scrolled .lang-btn.is-active {
  background: var(--red);
  color: var(--white);
}

html.is-ar body {
  font-family: var(--font-ar);
}

html.is-ar .hero-brand,
html.is-ar .section-head h2,
html.is-ar .action-card strong,
html.is-ar .ai-agent-title,
html.is-ar .form-title,
html.is-ar .service h3 {
  font-family: var(--font-ar);
}

html.is-ar .side-dock {
  left: auto;
  right: 1rem;
}

html.is-ar .ai-agent {
  right: auto;
  left: 1.1rem;
  align-items: flex-start;
}

html.is-ar .ai-agent-panel {
  transform-origin: bottom left;
}

html.is-ar .ai-msg-bot {
  align-self: flex-start;
}

html.is-ar .ai-msg-user {
  align-self: flex-end;
}

.header-phone {
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.header-phone:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.site-header.is-scrolled .header-phone {
  color: var(--slate-deep);
}

.site-header.is-scrolled .header-phone:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.25s;
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.btn-tayara {
  gap: 0.55rem;
}

.btn-brand {
  gap: 0.55rem;
}

.tayara-logo,
.brand-logo {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  object-fit: cover;
  flex-shrink: 0;
}

.btn-sm .tayara-logo,
.btn-sm .brand-logo {
  width: 1.15rem;
  height: 1.15rem;
}

.wa-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  color: #25d366;
  flex-shrink: 0;
}

.wa-logo svg,
.phone-logo svg {
  width: 100%;
  height: 100%;
}

.btn-red .wa-logo {
  color: #ffffff;
}

.phone-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.92);
}

.btn-light:hover {
  background: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 42, 51, 0.25);
}

.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate-deep);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.25s;
}

.text-link:hover {
  color: var(--red);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.15rem, 4vw, 2.75rem) clamp(5rem, 10vh, 7rem);
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 42, 50, 0.25) 0%, rgba(28, 42, 50, 0.55) 45%, rgba(28, 42, 50, 0.88) 100%),
    linear-gradient(90deg, rgba(28, 42, 50, 0.5) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding-bottom: 1rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin-bottom: 1.15rem;
  color: var(--white);
}

.hero-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin-top: 0.9rem;
  max-width: 28rem;
  opacity: 0.94;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-title strong {
  font-weight: 700;
  color: var(--white);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 400;
  max-width: 26rem;
  opacity: 0.88;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  right: clamp(1.15rem, 4vw, 2.75rem);
  bottom: clamp(2rem, 5vh, 3.5rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s;
}

.hero-scroll:hover {
  color: var(--white);
}

.hero-scroll svg {
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ——— Action bar ——— */
.action-bar {
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
  padding: 0;
}

.action-bar-inner {
  width: min(1120px, calc(100% - 2.25rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(26, 42, 51, 0.09);
}

.action-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 0.85rem;
  padding: 1.35rem 1.5rem;
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  box-shadow: none;
  min-height: 4.75rem;
  transition: background 0.3s var(--ease);
}

.action-card:last-child {
  border-right: none;
}

.action-card:hover {
  background: var(--paper);
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.action-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--red);
  transition: color 0.25s;
}

.action-card:hover .action-icon {
  color: var(--red-deep);
}

.action-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.action-label {
  display: none;
}

.action-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.action-hint {
  display: none;
}

.action-arrow {
  display: none;
}

.action-card:hover strong {
  color: var(--red);
}

/* ——— Sections ——— */
.section-inner {
  width: min(1120px, 100% - 2.25rem);
  margin-inline: auto;
  padding: clamp(4rem, 9vh, 6.5rem) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.section-lead {
  margin-top: 0.7rem;
  color: var(--slate);
  max-width: 32rem;
}

.biens-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ——— Featured gallery ——— */
.featured {
  background: linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s;
}

.bien-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.thumb {
  border: 2px solid transparent;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  opacity: 0.75;
  transition: opacity 0.25s, border-color 0.25s;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb:hover,
.thumb.is-active {
  opacity: 1;
  border-color: var(--red);
}

.price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.price span {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--slate);
}

.specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.specs li {
  font-size: 0.92rem;
  color: var(--slate);
}

.specs strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.featured-desc {
  color: var(--slate-deep);
  margin-bottom: 1.5rem;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.fb-link {
  margin-top: 0.25rem;
}

.featured-fb {
  display: inline-flex;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 700;
  will-change: transform;
}

/* ——— Biens grid ——— */
.biens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bien-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.bien-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 42, 51, 0.1);
}

.bien-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.bien-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.bien-card:hover .bien-visual img {
  transform: scale(1.05);
}

.bien-body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.bien-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.bien-body p {
  font-size: 0.9rem;
  color: var(--slate);
}

/* ——— Services ——— */
.services {
  position: relative;
  perspective: 1400px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 40, 40, 0.06), transparent 55%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 55%, var(--white) 100%);
  border-block: 1px solid var(--line);
}

.services-head {
  max-width: 36rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

.services-head h2 {
  position: relative;
  padding-bottom: 0.85rem;
}

.services-head h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.9rem;
  background: var(--red);
}

.services-head .section-lead {
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.55rem 1.45rem 1.4rem;
  background:
    linear-gradient(165deg, #ffffff 0%, #fbfcfd 55%, #f4f7f9 100%);
  border: 1px solid rgba(28, 42, 50, 0.08);
  border-radius: 1.05rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 24px rgba(28, 42, 50, 0.07),
    0 28px 48px rgba(28, 42, 50, 0.08);
  transform: translateY(0) rotateX(0deg);
  transform-style: preserve-3d;
  transition:
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  scroll-margin-top: calc(var(--header-h) + 1rem);
  overflow: hidden;
  will-change: transform;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(184, 40, 40, 0.15));
  opacity: 0.9;
}

.service::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -35%;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 40, 40, 0.08), transparent 70%);
  pointer-events: none;
}

.service:hover {
  border-color: rgba(184, 40, 40, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 36px rgba(28, 42, 50, 0.12),
    0 40px 64px rgba(28, 42, 50, 0.14);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  color: var(--red);
  background: linear-gradient(160deg, rgba(184, 40, 40, 0.12), rgba(184, 40, 40, 0.04));
  border: 1px solid rgba(184, 40, 40, 0.12);
  box-shadow: 0 8px 16px rgba(184, 40, 40, 0.08);
}

.service-num {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
}

.service h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.65rem;
}

.service p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
  max-width: none;
  flex: 1;
}

.service .text-link {
  align-self: flex-start;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .service,
  .service:hover {
    transform: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
}

/* ——— Contact ——— */
.contact {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 45%, var(--paper) 100%);
}

.contact .section-head {
  margin-bottom: 2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(26, 42, 51, 0.08);
  overflow: hidden;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.contact-aside-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.contact-aside .contact-label {
  color: rgba(255, 255, 255, 0.45);
}

.contact-aside .contact-value {
  color: var(--white);
  font-size: 1.1rem;
}

.contact-aside a.contact-item:hover .contact-value {
  color: #ffb4a8;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.contact-aside .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-aside .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--white);
  border: none;
  box-shadow: none;
  border-top: 3px solid var(--red);
}

.form-head {
  grid-column: 1 / -1;
  margin-bottom: 0.15rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.form-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.form-title {
  grid-column: auto;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  padding: 0;
  border: none;
}

.btn:focus-visible,
.nav a:focus-visible,
.header-phone:focus-visible,
.text-link:focus-visible,
.action-card:focus-visible,
.footer-col a:focus-visible,
.footer-social a:focus-visible,
.side-dock-btn:focus-visible,
.footer-map-link:focus-visible,
.footer-to-top:focus-visible,
.thumb:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(209, 58, 42, 0.45);
  outline-offset: 3px;
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.field input,
.field textarea,
.field select {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23587888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 40, 40, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(26, 42, 51, 0.4);
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--slate);
  text-align: center;
  margin-top: -0.25rem;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
}

.form-status.is-success {
  color: #1e6b45;
  background: #eaf7f0;
  border-color: #b7e0c8;
}

.form-status.is-error {
  color: var(--red-deep);
  background: #fdf1ef;
  border-color: #f0c4bd;
}

.contact-form .btn-block {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding: 1rem 1.45rem;
}

.contact-form .btn-block:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.15rem, 4vw, 2.75rem) 1.5rem;
  border-top: 3px solid var(--red);
}

.footer-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1.3fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-logo {
  height: 110px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  max-width: 16rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.footer-social a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.footer-social a:hover {
  color: var(--white);
  border-bottom-color: var(--red);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s;
  word-break: break-word;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-address {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.footer-map {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.footer-map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 16 / 11;
  background: #0f171c;
}

.footer-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.footer-map-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  align-self: flex-start;
  border-bottom: 1px solid rgba(209, 58, 42, 0.7);
  padding-bottom: 2px;
  transition: color 0.25s;
}

.footer-map-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-size: 0.82rem;
  opacity: 0.55;
  padding-top: 0;
  border-top: none;
}

.footer-to-top {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.85rem;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.footer-to-top:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(209, 58, 42, 0.15);
}

.footer-links {
  display: none;
}

/* ——— Floating side dock ——— */
.side-dock {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.side-dock.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-dock-btn {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0.85rem;
  background: transparent;
  box-shadow: 0 12px 30px rgba(28, 42, 50, 0.28);
  overflow: hidden;
  line-height: 0;
  transition: transform 0.3s var(--ease);
  animation: sideDockFloat 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.35s);
}

.side-dock-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

.side-dock-maps img {
  object-fit: cover;
  background: #000;
}

.side-dock-btn:hover,
.side-dock-btn:focus-visible {
  transform: translateX(4px) scale(1.08);
  background: transparent;
  border: none;
  animation-play-state: paused;
}

@keyframes sideDockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .side-dock-btn {
    animation: none;
  }
}

/* ——— AI agent ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ai-agent {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.ai-agent.is-visible,
.ai-agent.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ai-agent-panel {
  width: min(23rem, calc(100vw - 1.75rem));
  height: min(30rem, calc(100vh - 7rem));
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(28, 42, 50, 0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}

.ai-agent.is-open .ai-agent-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-agent-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.ai-agent-head-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ai-agent-close {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.ai-agent-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.ai-agent-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb4a8;
  margin-bottom: 0.2rem;
}

.ai-agent-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.ai-agent-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8fd6a8;
  white-space: nowrap;
}

.ai-agent-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--paper);
}

.ai-msg {
  max-width: 88%;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  word-wrap: break-word;
}

.ai-msg-bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.ai-msg-user {
  align-self: flex-end;
  background: var(--red);
  color: var(--white);
}

.ai-agent-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem 0.15rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.ai-agent-suggestions button {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ai-agent-suggestions button:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f4;
}

.ai-agent-form {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.ai-agent-form input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  outline: none;
}

.ai-agent-form input:focus {
  border-color: var(--red);
}

.ai-agent-form button {
  width: 2.55rem;
  border: none;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.ai-agent-form button:hover {
  background: var(--red);
}

@media (max-width: 720px) {
  .ai-agent {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .ai-agent-panel {
    height: min(70vh, 28rem);
  }

  html.is-ar .ai-agent {
    left: 0.85rem;
    right: auto;
  }
}

/* ——— Responsive ——— */
@media (max-width: 960px) and (min-width: 641px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .featured-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service:hover {
    transform: translateY(-6px);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-map {
    grid-column: 1 / -1;
  }

  .biens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    width: min(1120px, calc(100% - 2.25rem));
    gap: 0;
    border-radius: 1rem;
    overflow: hidden;
  }

  .action-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.35rem 1rem;
    min-height: 6.5rem;
  }

  .action-card:nth-child(2n) {
    border-right: none;
  }

  .action-card:nth-child(n + 3) {
    border-bottom: none;
  }

  .action-card:last-child {
    border-bottom: none;
  }

  .action-text {
    align-items: center;
  }

  .action-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.7rem;
    background: rgba(209, 58, 42, 0.08);
  }

  .action-card:hover .action-icon {
    background: rgba(209, 58, 42, 0.14);
  }

  .action-card strong {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }

  .action-bar {
    margin-top: -1.5rem;
  }
}

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    font-size: clamp(2.05rem, 8.5vw, 2.55rem);
    line-height: 1.05;
    margin-bottom: 0.85rem;
  }

  .hero-brand-sub {
    font-size: 0.92rem;
    margin-top: 0.65rem;
  }

  .hero-title {
    font-size: 1.02rem;
  }

  .action-bar {
    margin-top: -1.25rem;
    padding: 0 0.15rem;
  }

  .action-bar-inner {
    width: calc(100% - 1.5rem);
    border-radius: 1.05rem;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 14px 36px rgba(28, 42, 50, 0.12);
  }

  .action-card {
    gap: 0.65rem;
    padding: 1.2rem 0.75rem 1.15rem;
    min-height: 6.1rem;
  }

  .action-icon {
    width: 2.85rem;
    height: 2.85rem;
  }

  .action-icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .action-card strong {
    font-size: 0.98rem;
    font-weight: 700;
  }

  .side-dock {
    left: 0.65rem;
    gap: 0.55rem;
  }

  html.is-ar .side-dock {
    right: 0.65rem;
    left: auto;
  }

  .side-dock-btn {
    width: 3.1rem;
    height: 3.1rem;
  }

  .site-header {
    height: 4.5rem;
    padding: 0 0.85rem;
  }

  .site-header .logo-img,
  img.logo-img {
    height: 42px;
    max-width: 130px;
  }

  .header-mobile-tools {
    display: flex;
    z-index: 130;
    margin-inline-start: auto;
  }

  .nav-toggle {
    position: relative;
    display: flex;
    z-index: 130;
    width: 2.6rem;
    height: 2.6rem;
    border: none;
    background: transparent;
  }

  .site-header.is-menu-open {
    backdrop-filter: none;
    justify-content: space-between;
  }

  .site-header.is-scrolled .nav-toggle,
  .nav-toggle[aria-expanded="true"] {
    border: none;
    background: transparent;
  }

  .site-header.is-scrolled .nav-toggle span,
  .nav-toggle[aria-expanded="true"] span {
    background: var(--white);
  }

  .site-header.is-scrolled .nav-toggle span {
    background: var(--ink);
  }

  .nav-toggle[aria-expanded="true"] span,
  .site-header.is-scrolled .nav-toggle[aria-expanded="true"] span,
  .site-header.is-menu-open .nav-toggle span {
    background: #ffffff;
  }

  .header-actions {
    display: none;
  }

  .site-header.is-menu-open .lang-switch-mobile {
    border-color: rgba(255, 255, 255, 0.35);
  }

  .site-header.is-menu-open .lang-btn {
    color: rgba(255, 255, 255, 0.75);
  }

  .site-header.is-menu-open .lang-btn.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
  }

  .site-header.is-menu-open .logo {
    position: relative;
    z-index: 130;
    display: flex;
  }

  .lang-switch-mobile {
    border-color: rgba(255, 255, 255, 0.35);
  }

  .site-header.is-scrolled .lang-switch-mobile {
    border-color: var(--line);
  }

  .site-header.is-menu-open .lang-switch-mobile,
  .site-header.is-scrolled.is-menu-open .lang-switch-mobile {
    border-color: rgba(255, 255, 255, 0.35);
  }

  .nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
    z-index: 120;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 5.5rem 1.5rem 2rem;
    background:
      linear-gradient(180deg, rgba(209, 58, 42, 0.12) 0%, transparent 28%),
      var(--ink);
    transform: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 7vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header.is-scrolled .nav a,
  .site-header.is-scrolled .nav-links a,
  .site-header.is-menu-open .nav a,
  .site-header.is-menu-open .nav-links a,
  .nav.is-open .nav-links a {
    color: #ffffff;
  }

  .site-header.is-scrolled .nav a:hover,
  .site-header.is-scrolled .nav-links a:hover,
  .site-header.is-menu-open .nav a:hover,
  .site-header.is-menu-open .nav-links a:hover,
  .nav.is-open .nav-links a:hover {
    color: #ffffff;
  }

  .nav-links a > span:first-child {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--red);
    min-width: 1.5rem;
  }

  html.is-ar .nav-links a:hover,
  html.is-ar .nav-links a:focus-visible {
    padding-left: 0;
    padding-right: 0.25rem;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav.is-open .nav-links a:hover,
  .nav.is-open .nav-links a:focus-visible {
    color: #ffffff;
    padding-left: 0.25rem;
  }

  .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: auto;
    padding-top: 1.5rem;
  }

  .nav-phone,
  .nav-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
  }

  .nav-phone {
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
  }

  .nav-phone-alt {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .site-header.is-scrolled .nav-phone,
  .site-header.is-scrolled .nav-phone:hover,
  .nav.is-open .nav-phone,
  .nav.is-open .nav-phone:hover {
    color: var(--white);
  }

  .nav-phone:hover {
    background: var(--red-deep);
    border-color: var(--red-deep);
    color: var(--white);
  }

  .nav-phone-alt:hover,
  .site-header.is-scrolled .nav-phone-alt,
  .site-header.is-scrolled .nav-phone-alt:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .nav-wa {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .nav-wa:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .hero-scroll {
    display: none;
  }

  .biens-grid,
  .gallery-thumbs {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .specs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bien-visual img,
  .bien-card,
  .action-card {
    transition: none;
  }
}

/* Service-page styles removed — single-page architecture */
