/* =========================================================
   HBI Interiors – Renovation & Interior Solutions
   Pages: index.html, contact.html, project-modern-villa-dubai-hills.html
   Desktop reference width: 1440px
   ========================================================= */

/* ---------- Fonts (self-hosted, Figtree) ---------- */
@font-face { font-family: 'Figtree'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/figtree-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Figtree'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/figtree-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Figtree'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/figtree-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Figtree'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/figtree-latin-700-normal.woff2') format('woff2'); }

/* ---------- Design tokens ---------- */
:root {
  --color-primary: #b8934f;          /* gold buttons / icons */
  --color-primary-dark: #a07d3e;
  --color-accent: #c29a55;           /* eyebrow text */
  --color-accent-light: #d7b574;     /* eyebrow on dark */
  --color-dark: #0e2322;             /* deep green – CTA / footer */
  --color-dark-2: #11302b;           /* feature bar */
  --color-heading: #131a2a;
  --color-text: #2c313b;
  --color-muted: #5d626b;
  --color-light-muted: #8a8f97;
  --color-background: #fdfdfd;
  --color-panel: #f7f6f3;            /* beige panels (form, details, hero intro) */
  --color-input: #fbfbfa;
  --color-border: #e7e7e4;
  --color-border-soft: #eeeeec;
  --color-white: #ffffff;
  --color-whatsapp: #25d366;
  --color-star: #f2b01e;

  --font-primary: 'Figtree', 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1308px;
  --gutter: 66px;
  --radius-sm: 4px;
  --radius: 6px;
  --shadow-card: 0 4px 18px rgba(20, 24, 35, 0.07);
  --shadow-soft: 0 2px 10px rgba(20, 24, 35, 0.05);
  --transition: 0.25s ease;
}
.page-contact { --container: 1346px; --gutter: 47px; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, dl, dd, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3 { color: var(--color-heading); font-weight: 600; line-height: 1.15; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ---------- Shared: eyebrow, buttons, links ---------- */
.eyebrow {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-accent);
  line-height: 1.2;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn .icon { width: 19px; height: 19px; stroke-width: 2; }
.btn-gold { background: var(--color-primary); color: var(--color-white); }
.btn-gold:hover { background: var(--color-primary-dark); }
.btn-lg { height: 57px; }
.btn-block { display: flex; width: 100%; }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.85); color: var(--color-white); background: rgba(0,0,0,.08); }
.btn-outline-light:hover { background: var(--color-white); color: var(--color-heading); }
.btn-whatsapp {
  border: 1.5px solid var(--color-accent-light);
  color: var(--color-white);
  gap: 12px;
  padding: 0 24px;
}
.btn-whatsapp:hover { background: rgba(255,255,255,.08); }
.icon-whatsapp { width: 26px; height: 26px; flex-shrink: 0; }
.btn-whatsapp-plain { color: var(--color-white); gap: 12px; padding: 0 20px; height: 57px; }
.btn-whatsapp-plain .icon-whatsapp { width: 36px; height: 36px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-heading);
  white-space: nowrap;
}
.link-arrow .icon { width: 20px; height: 20px; stroke-width: 2; transition: transform var(--transition); }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow--sm { font-size: 15px; }

.arrow-dot {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  flex-shrink: 0;
}
.arrow-dot .icon { width: 17px; height: 17px; stroke-width: 2.2; }

.btn-group { display: flex; flex-wrap: wrap; gap: 26px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-head .link-arrow { margin-bottom: 26px; }
.section-title { font-size: 34px; font-weight: 600; letter-spacing: -0.2px; }
.section-sub { margin-top: 10px; font-size: 17px; color: var(--color-muted); }
.section-sub--sm { font-size: 15px; margin-top: 8px; }
.h-sm { font-size: 26px; font-weight: 600; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { width: 54px; height: 46px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #1d1f27;
  line-height: 1.05;
}
.brand-tag {
  margin-top: 5px;
  font-size: 8.4px;
  font-weight: 500;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: #6b6d73;
  line-height: 1;
}

.main-nav { margin-left: auto; margin-right: 88px; }
.nav-list { display: flex; align-items: center; gap: 44px; }
.nav-list > li { position: relative; }
.nav-list > li > a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-size: 15.5px;
  font-weight: 500;
  color: #262a33;
  transition: color var(--transition);
}
.nav-dropdown-toggle .icon { width: 15px; height: 15px; stroke-width: 2.2; }
.nav-list > li > a:hover,
.nav-dropdown-toggle:hover { color: var(--color-primary); }
.nav-list > li > a.is-active { color: var(--color-primary); }
.page-contact .nav-list > li > a.is-active::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: -9px;
  height: 2px;
  background: var(--color-primary);
}
.page-project .nav-list > li > a.is-active { color: #262a33; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 240px;
  padding: 10px 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15,20,30,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--transition);
}
.dropdown a { display: block; padding: 9px 20px; font-size: 15px; }
.dropdown a:hover { background: var(--color-panel); color: var(--color-primary); }
.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown { opacity: 1; visibility: visible; transform: none; }
.has-dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }

.header-actions { display: flex; align-items: center; gap: 32px; }
.header-phone,
.header-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 500;
  color: #262a33;
  white-space: nowrap;
}
.header-phone .icon, .header-email .icon { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.header-email .icon { fill: #1d1f27; stroke: #fff; stroke-width: 1.4; width: 19px; }
.btn-header { height: 49px; width: 192px; padding: 0; font-size: 16px; }
.page-project .btn-header { width: 201px; height: 42px; font-size: 15px; }
.nav-mobile-cta { display: none; }

/* Home header: phone/email above the button */
.site-header--home .header-inner { height: 98px; }
.site-header--home .logo-mark { width: 60px; height: 50px; }
.site-header--home .brand-name { font-size: 25px; }
.site-header--home .main-nav { margin-right: auto; margin-left: 150px; padding-top: 12px; }
.site-header--home .nav-list { gap: 50px; }
.site-header--home .nav-list > li > a,
.site-header--home .nav-dropdown-toggle { font-size: 15.5px; color: #3a3f48; }
.site-header--home .nav-list > li > a.is-active { color: var(--color-primary); }
.header-actions--stacked { flex-direction: column; align-items: flex-end; gap: 10px; }
.header-contacts { display: flex; gap: 36px; }
.header-contacts a { font-size: 14.5px; }
.site-header--home .btn-header { width: 200px; height: 43px; font-size: 15px; }

/* burger */
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: 16px; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--color-heading);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.9); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 96px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.brand--light .brand-name { color: var(--color-white); font-weight: 500; letter-spacing: 1px; }
.brand--light .brand-tag { color: rgba(255,255,255,.55); }
.footer-nav { display: flex; gap: 38px; }
.footer-nav a { display: inline-flex; align-items: center; gap: 4px; font-size: 14.5px; color: rgba(255,255,255,.88); transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-accent-light); }
.footer-nav .caret { width: 12px; height: 12px; }
.socials { display: flex; justify-content: flex-end; gap: 22px; }
.socials a { display: grid; place-items: center; width: 22px; height: 22px; color: var(--color-white); transition: color var(--transition); }
.socials a:hover { color: var(--color-accent-light); }
.socials svg { width: 22px; height: 22px; }
.socials .icon { stroke-width: 2; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 90px;
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a:hover { color: var(--color-accent-light); }
.footer-legal span { color: rgba(255,255,255,.5); }

.page-project .footer-top { height: 94px; }
.page-project .footer-bottom { height: 55px; font-size: 13.5px; padding-bottom: 4px; }
.page-project .footer-nav { gap: 36px; }
.page-project .footer-nav a { font-size: 13.5px; }
.page-project .site-footer .brand-name { font-size: 21px; }
.page-project .site-footer .logo-mark { width: 48px; height: 42px; }
.page-project .socials svg { width: 19px; height: 19px; }
.page-project .header-inner { height: 78px; }
.page-project .nav-list > li > a, .page-project .nav-dropdown-toggle, .page-project .header-phone { font-size: 14.5px; }
.page-home .footer-top { height: 108px; }
.page-home .footer-bottom { height: 82px; font-size: 15px; }
.page-home .site-footer { background: #10201e; }

/* =========================================================
   CTA BANNER (contact + project)
   ========================================================= */
.cta-banner { position: relative; background: var(--color-dark); color: var(--color-white); overflow: hidden; }
.cta-banner__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-dark) 38%, rgba(14,35,34,.55) 55%, rgba(14,35,34,0) 70%);
}
.cta-banner__inner { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.cta-banner .eyebrow { color: var(--color-accent-light); font-size: 13.5px; }
.cta-banner h2 { color: var(--color-white); font-size: 34px; font-weight: 600; margin-top: 14px; }
.cta-banner__content > p:not(.eyebrow) { margin-top: 12px; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.92); }
.cta-banner .btn-group { margin-top: 26px; }

.cta-banner--contact .cta-banner__inner { height: 280px; padding-top: 38px; padding-bottom: 36px; padding-left: 67px; }
.cta-banner--contact .btn { height: 53px; }
.cta-banner--contact .btn-gold { width: 245px; }
.btn-whatsapp--lg { width: 265px; height: 55px !important; font-size: 20px; }
.btn-whatsapp--lg .icon-whatsapp { width: 30px; height: 30px; }
.cta-features { display: flex; align-items: center; margin: 0 0 16px; padding-right: 108px; }
.cta-features li {
  display: flex; align-items: center; gap: 14px;
  padding: 0 30px;
  font-size: 17px; line-height: 1.3; color: var(--color-white);
}
.cta-features li + li { border-left: 1px solid rgba(255,255,255,.22); }
.cta-features .icon { width: 44px; height: 44px; color: var(--color-accent-light); stroke-width: 1.4; }

.cta-banner--project .cta-banner__inner { min-height: 213px; padding-top: 28px; padding-bottom: 26px; }
.cta-banner--project::before { background: linear-gradient(90deg, var(--color-dark) 0%, rgba(14,35,34,.92) 35%, rgba(14,35,34,.4) 52%, rgba(14,35,34,0) 62%); }
.cta-banner--project .eyebrow { font-size: 11px; letter-spacing: 1.4px; }
.cta-banner--project h2 { font-size: 29px; margin-top: 8px; }
.cta-banner--project .cta-banner__content > p:not(.eyebrow) { font-size: 14.5px; margin-top: 10px; }
.cta-banner--project .btn-group { margin-top: 16px; gap: 22px; }
.cta-banner--project .btn { height: 41px; font-size: 13.5px; padding: 0 14px; }
.cta-banner--project .btn-gold { width: 184px; }
.cta-banner--project .btn-whatsapp { width: 170px; gap: 8px; }
.cta-banner--project .icon-whatsapp { width: 22px; height: 22px; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.page-hero { position: relative; height: 376px; color: var(--color-white); overflow: hidden; background: #2b2721; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero__content { position: relative; z-index: 1; padding-top: 74px; padding-left: calc(var(--gutter) + 20px); }
.page-hero .eyebrow { color: var(--color-accent-light); font-size: 14px; }
.page-hero h1 { margin-top: 17px; font-size: 56px; line-height: 1.1; font-weight: 500; color: var(--color-white); letter-spacing: -0.3px; }
.page-hero__text { margin-top: 20px; font-size: 18.5px; line-height: 1.5; color: rgba(255,255,255,.93); }

.info-strip { background: var(--color-white); }
.info-strip__grid { display: grid; grid-template-columns: 1.02fr 1fr 1.07fr 1fr; padding-top: 30px; padding-bottom: 6px; height: 118px; }
.info-item { display: flex; align-items: flex-start; gap: 26px; padding-left: 20px; }
.info-item + .info-item { border-left: 1px solid #d9d9d6; margin-bottom: 14px; padding-left: 50px; }
.info-item:nth-child(4) { padding-left: 54px; }
.info-item__icon { width: 42px; height: 42px; color: var(--color-primary); stroke-width: 1.4; margin-top: 2px; }
.info-item h3 { font-size: 16.5px; font-weight: 600; line-height: 1.3; }
.info-item p { font-size: 15.5px; line-height: 1.7; color: #3b3f47; }
.info-item p:first-of-type { margin-top: 4px; }

.contact-main { padding-top: 30px; }
.contact-main__grid { display: grid; grid-template-columns: 703fr 615fr; gap: 28px; align-items: stretch; }
.form-card { background: var(--color-panel); border-radius: var(--radius-sm); padding: 44px 39px 70px; }
.form-card .eyebrow { font-size: 14px; }
.form-card h2 { margin-top: 10px; font-size: 34px; font-weight: 600; letter-spacing: -0.2px; }
.form-card__intro { margin-top: 8px; font-size: 17.5px; color: #3b3f47; }
.contact-form { margin-top: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.form-field { margin-bottom: 21px; }
.form-field label { display: block; margin-bottom: 11px; font-size: 16.5px; font-weight: 500; color: #262a33; }
.req { color: #d0342c; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  height: 47px;
  padding: 0 16px;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-input);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field textarea { height: 127px; padding: 14px 16px; resize: vertical; }
.form-field ::placeholder { color: #9a9ea6; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(184,147,79,.15); }
.form-field.has-error input, .form-field.has-error textarea { border-color: #d0342c; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer; color: #3b3f47; }
.select-wrap .icon { position: absolute; right: 16px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); pointer-events: none; stroke-width: 2.2; }
.form-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 23px; }
.btn-submit { width: 263px; height: 53px; font-size: 16.5px; }
.form-safe { display: inline-flex; align-items: center; gap: 12px; margin-right: 13px; font-size: 15px; color: #3b3f47; }
.form-safe .icon { width: 19px; height: 19px; stroke-width: 1.8; }
.form-status { margin-top: 14px; font-size: 15px; }
.form-status:empty { display: none; }
.form-status.is-success { color: #1f7a4a; }
.form-status.is-error { color: #d0342c; }

.contact-side { display: grid; grid-template-rows: 393px 1fr; gap: 17px; }
.map-card { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: #e9e5dc; }
.map-card__link, .map-card__link img { display: block; width: 100%; height: 100%; }
.map-card__link img { object-fit: cover; }
.map-card__info {
  position: absolute; top: 15px; left: 15px;
  display: flex; flex-direction: column;
  width: 255px; padding: 17px 17px 16px;
  background: var(--color-white);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  font-size: 13.5px; line-height: 1.5; color: #3c4043;
}
.map-card__info strong { font-size: 16.5px; font-weight: 600; color: #202124; margin-bottom: 6px; }
.map-card__info a { margin-top: 14px; font-size: 14.5px; color: #1a73e8; }
.map-card__zoom {
  position: absolute; right: 12px; bottom: 26px;
  display: flex; flex-direction: column;
  background: var(--color-white);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.map-card__zoom span { display: grid; place-items: center; width: 50px; height: 50px; color: #555; }
.map-card__zoom span + span { border-top: 1px solid #e6e6e6; }
.map-card__zoom .icon { width: 26px; height: 26px; stroke-width: 2.6; }

.office-card { display: grid; grid-template-columns: 317fr 298fr; background: var(--color-panel); border-radius: var(--radius-sm); overflow: hidden; }
.office-card__body { padding: 20px 20px 18px 23px; }
.office-card h2 { font-size: 27px; font-weight: 600; }
.office-list { margin-top: 14px; }
.office-list li { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 13px; font-size: 14.5px; line-height: 1.55; color: #3b3f47; }
.office-list li:last-child { margin-bottom: 0; }
.office-list .icon { width: 24px; height: 24px; color: var(--color-primary); stroke-width: 1.7; margin-top: 1px; }
.office-card__img { width: 100%; height: 100%; object-fit: cover; }

.faq-section { padding-top: 58px; padding-bottom: 39px; }
.faq-section .section-head .link-arrow { margin-bottom: 38px; margin-right: 6px; }
.faq-section .section-title { font-size: 35px; }
.faq-section .section-sub { margin-top: 12px; font-size: 17.5px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 18px; padding-left: 7px; padding-right: 6px; }
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--color-white); border: 1px solid var(--color-border-soft); border-radius: var(--radius-sm); box-shadow: 0 1px 3px rgba(20,24,35,.03); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; min-height: 51px; padding: 0 30px 0 20px;
  text-align: left; font-size: 16.5px; font-weight: 500; color: #1f2430;
}
.faq-q .icon { width: 17px; height: 17px; stroke-width: 2.6; transition: transform var(--transition); }
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a > * { overflow: hidden; }
.faq-a p { padding: 0 20px; font-size: 15px; color: var(--color-muted); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a p { padding-bottom: 16px; }

/* =========================================================
   PROJECT PAGE
   ========================================================= */
.project-hero { display: grid; grid-template-columns: 559fr 881fr; height: 434px; }
.project-hero__intro { background: var(--color-panel); padding: 30px 30px 20px 67px; }
.breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: #1f2430; font-weight: 500; }
.breadcrumb .icon { width: 13px; height: 13px; stroke-width: 2.4; }
.breadcrumb span { color: #5d626b; font-weight: 400; }
.project-hero .eyebrow { margin-top: 32px; font-size: 13px; }
.project-hero h1 { margin-top: 12px; font-size: 50px; font-weight: 600; line-height: 1.1; letter-spacing: -0.3px; }
.project-hero__text { margin-top: 13px; max-width: 415px; font-size: 15.4px; line-height: 1.52; color: #2c313b; }
.project-meta { display: flex; margin-top: 30px; }
.project-meta li { display: flex; align-items: flex-start; gap: 14px; padding-right: 18px; white-space: nowrap; }
.project-meta li + li { padding-left: 18px; border-left: 1px solid #dcdcd8; }
.project-meta .icon { width: 23px; height: 23px; color: var(--color-primary); stroke-width: 1.7; margin-top: 3px; }
.project-meta strong { display: block; font-size: 12.8px; font-weight: 600; color: #1f2430; }
.project-meta span { display: block; margin-top: 7px; font-size: 12.8px; color: #4b5059; }

.project-slider { position: relative; overflow: hidden; background: #d9d1c4; }
.project-slider__img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease; }
.project-slider__img.is-fading { opacity: 0.25; }
.slider-arrow {
  position: absolute; top: 50%;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  top: 54%;
  margin-top: -17px;
  border-radius: 50%;
  background: rgba(20,20,20,.55);
  color: var(--color-white);
  transition: background var(--transition);
}
.slider-arrow:hover { background: rgba(20,20,20,.8); }
.slider-arrow .icon { width: 18px; height: 18px; stroke-width: 2.2; }
.slider-arrow--prev { left: 19px; }
.slider-arrow--next { right: 18px; }
.slider-count {
  position: absolute; right: 23px; bottom: 16px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(25,25,25,.78);
  color: var(--color-white);
  font-size: 15px; font-weight: 500;
}

.thumbs-wrap { padding: 24px 0 0 66px; overflow: hidden; }
.thumbs { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.thumbs::-webkit-scrollbar { display: none; }
.thumb {
  flex: 0 0 auto;
  width: 224px; height: 147px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), opacity var(--transition);
}
.thumb:nth-child(3) { width: 208px; }
.thumb:nth-child(4) { width: 222px; }
.thumb:nth-child(5) { width: 214px; }
.thumb:nth-child(6) { width: 190px; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: #c9a45c; }
.thumb:hover { opacity: .85; }

.project-overview { padding-top: 34px; }
.overview-grid { display: grid; grid-template-columns: 1fr 429px; gap: 60px; align-items: start; }
.overview-text .h-sm { margin-top: 0; font-size: 25px; }
.overview-text p { margin-top: 12px; font-size: 15.4px; line-height: 1.52; color: #2c313b; }

.overview-text h2 + p { margin-top: 12px; }
.overview-text { max-width: 820px; }
.overview-text p { max-width: 510px; }
.highlights { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 24px; max-width: 830px; }
.highlights li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  font-size: 12.8px; font-weight: 500; line-height: 1.55; color: #1f2430;
}
.highlights li + li { border-left: 1px solid #e3e3df; }
.highlights .icon { width: 34px; height: 34px; color: var(--color-primary); stroke-width: 1.4; }

.details-card { background: var(--color-panel); border-radius: var(--radius); padding: 22px 24px 18px; }
.details-card .h-sm { font-size: 22px; }
.details-list { margin-top: 12px; }
.details-list div {
  display: grid; grid-template-columns: 93px 125px 1fr; align-items: center;
  height: 45px; border-bottom: 1px solid #e6e5e0;
  font-size: 13.5px;
}
.details-list div:last-child { border-bottom: 0; }
.details-list .icon { width: 26px; height: 26px; margin-left: 2px; color: var(--color-primary); stroke-width: 1.6; }
.details-list dt { color: #4b5059; }
.details-list dd { color: #1f2430; font-weight: 500; }
.details-card .btn { margin-top: 12px; height: 47px; font-size: 14px; }

.gallery-section { padding-top: 12px; }
.section-head--gallery { align-items: flex-end; }
.round-arrows { display: flex; gap: 10px; margin-bottom: 6px; }
.round-arrow {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #e6e6e3;
  background: var(--color-white);
  color: #1f2430;
  transition: all var(--transition);
}
.round-arrow:hover { border-color: var(--color-primary); color: var(--color-primary); }
.round-arrow .icon { width: 16px; height: 16px; stroke-width: 2.4; }
.gallery-grid {
  display: grid;
  grid-template-columns: 436fr 292fr 260fr 263fr;
  grid-template-rows: 153px 144px;
  gap: 14px 18px;
  margin-top: 15px;
}
.g-item { display: block; border-radius: var(--radius-sm); overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-item--large { grid-row: span 2; }

.related-section { padding-top: 36px; padding-bottom: 28px; }
.related-section .section-head .link-arrow { margin-bottom: 30px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 23px; }
.related-card { position: relative; display: block; height: 172px; border-radius: var(--radius-sm); overflow: hidden; color: var(--color-white); }
.related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.related-card:hover img { transform: scale(1.05); }
.related-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.55) 100%); }
.related-card__body { position: absolute; left: 13px; bottom: 12px; z-index: 1; }
.related-card h3 { font-size: 15.5px; font-weight: 600; color: var(--color-white); }
.related-card__body span { display: flex; align-items: center; gap: 6px; margin-top: 7px; font-size: 13px; }
.related-card__body .icon { width: 14px; height: 14px; fill: currentColor; stroke: rgba(0,0,0,.4); }
.related-card .arrow-dot { position: absolute; right: 13px; bottom: 16px; z-index: 1; width: 28px; height: 28px; background: #c09a52; }
.related-card .arrow-dot .icon { width: 15px; height: 15px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; background: rgba(10,14,16,.92); padding: 40px 80px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 86vh; max-width: 100%; border-radius: var(--radius-sm); }
.lightbox__close, .lightbox__nav { position: absolute; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox .icon { width: 24px; height: 24px; stroke-width: 2; }
body.no-scroll { overflow: hidden; }

/* =========================================================
   HOME PAGE
   ========================================================= */
.page-home { --container: 1300px; --gutter: 70px; }

.home-hero { position: relative; height: 485px; overflow: hidden; background: #2a2622; color: var(--color-white); }
.home-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(20,18,15,.35) 0%, rgba(20,18,15,.15) 35%, rgba(20,18,15,0) 50%); }
.home-hero__content { position: relative; z-index: 2; padding-top: 90px; padding-left: 83px; }
.hero-tagline { font-size: 15px; font-weight: 500; letter-spacing: 4.4px; text-transform: uppercase; color: rgba(255,255,255,.95); }
.hero-tagline span { margin: 0 10px; }
.home-hero h1 { margin-top: 18px; font-size: 55px; font-weight: 500; line-height: 1.13; color: var(--color-white); letter-spacing: -0.2px; }
.home-hero__text { margin-top: 20px; font-size: 18.5px; line-height: 1.5; color: rgba(255,255,255,.92); }
.home-hero .btn-group { margin-top: 28px; gap: 29px; }
.home-hero .btn-gold { width: 241px; }
.home-hero .btn-outline-light { width: 192px; }

.feature-bar { background: var(--color-dark-2); color: var(--color-white); }
.feature-bar__list { display: flex; align-items: center; justify-content: space-between; height: 98px; padding-left: 92px; padding-right: 108px; }
.feature-bar li { display: flex; align-items: center; gap: 26px; font-size: 15.5px; line-height: 1.4; }
.feature-bar .icon { width: 44px; height: 44px; color: var(--color-accent-light); stroke-width: 1.3; }

.home-section { padding-top: 52px; }
.page-home .section-head .link-arrow { margin-bottom: 47px; font-weight: 600; font-size: 15.5px; }
.page-home .section-title { margin-top: 12px; font-size: 32px; }
.page-home .section-sub { margin-top: 12px; font-size: 15.5px; }
.page-home .eyebrow { font-size: 13px; letter-spacing: 2.6px; color: var(--color-accent-light); }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 30px; }
.service-card { display: flex; flex-direction: column; background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px 22px; }
.service-card__icon { width: 36px; height: 36px; color: var(--color-primary); stroke-width: 1.4; }
.service-card h3 { margin-top: 12px; font-size: 16.5px; font-weight: 700; line-height: 1.35; color: #1f2430; }
.service-card p { margin-top: 10px; font-size: 15px; line-height: 1.45; color: #6c7079; }
.learn-more { display: inline-flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; font-size: 15px; font-weight: 600; color: #1f2430; }
.learn-more .icon { width: 17px; height: 17px; stroke-width: 2.2; transition: transform var(--transition); }
.learn-more:hover .icon { transform: translateX(4px); }

.about { padding-top: 38px; }
.about-grid { display: grid; grid-template-columns: 640px 1fr; gap: 60px; align-items: start; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-media img { width: 100%; height: 464px; object-fit: cover; }
.exp-badge {
  position: absolute; left: 8px; bottom: 11px;
  display: flex; flex-direction: column; justify-content: center;
  width: 206px; height: 133px; padding: 0 27px;
  background: #16312c; color: var(--color-white);
  border-radius: var(--radius-sm);
}
.exp-badge strong { font-size: 46px; font-weight: 600; line-height: 1; }
.exp-badge span { margin-top: 14px; font-size: 15px; }
.about-text { padding-left: 0; padding-top: 4px; }
.section-title--lg { font-size: 37px !important; line-height: 1.12; }
.about-text > p:not(.eyebrow) { margin-top: 14px; max-width: 500px; font-size: 17.5px; line-height: 1.68; color: #5a5f68; }
.about-features { display: grid; grid-template-columns: 333px 1fr; row-gap: 24px; margin-top: 22px; max-width: 620px; }
.about-features li { display: flex; align-items: center; gap: 22px; font-size: 16.5px; font-weight: 600; line-height: 1.45; color: #1f2430; }
.about-features .icon { width: 42px; height: 42px; color: var(--color-primary); stroke-width: 1.3; }
.about-text .btn { margin-top: 26px; width: 244px; height: 55px; font-size: 15px; }

.projects { padding-top: 28px; }
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
.project-card { display: block; background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
.project-card img { width: 100%; height: 196px; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 90px; padding: 0 22px 0 21px; background: var(--color-white); }
.project-card h3 { font-size: 16.5px; font-weight: 600; color: #1f2430; }
.project-card__body span:not(.arrow-dot) { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 14.5px; color: #7a7e86; }
.project-card__body span:not(.arrow-dot) .icon { width: 16px; height: 16px; color: var(--color-primary); stroke-width: 1.8; }
.project-card .arrow-dot { width: 34px; height: 34px; }

.why { position: relative; margin-top: 32px; height: 352px; background: var(--color-dark-2); color: var(--color-white); overflow: hidden; }
.why__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.why::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #16302a 0%, #16302a 32%, rgba(22,48,42,.75) 40%, rgba(22,48,42,0) 48%); }
.why__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.why__text { padding-left: 2px; padding-top: 4px; }
.why h2 { font-size: 34px; font-weight: 600; color: var(--color-white); }
.why__text > p { margin-top: 12px; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.92); }
.check-list { margin-top: 20px; }
.check-list li { display: flex; align-items: center; gap: 18px; height: 36px; font-size: 16.5px; color: rgba(255,255,255,.95); }
.check-dot { width: 26px !important; height: 26px !important; padding: 5px; border-radius: 50%; background: #c9a45c; color: #16302a; stroke-width: 3.2 !important; }
.stats-card {
  display: grid; grid-template-columns: repeat(3, 1fr);
  width: 613px; height: 220px; margin-right: 12px; margin-top: -26px;
  padding: 36px 0;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  color: var(--color-heading);
}
.stat { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.stat + .stat { border-left: 1px solid #e6e6e3; }
.stat .icon { width: 40px; height: 40px; color: var(--color-primary); stroke-width: 1.4; }
.stat strong { margin-top: 14px; font-size: 38px; font-weight: 600; line-height: 1; }
.stat span { margin-top: 12px; font-size: 15.5px; color: #7a7e86; }

.testimonials { padding-top: 28px; }
.section-head--tight .link-arrow { margin-bottom: 6px !important; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 16px; }
.testimonial { display: flex; gap: 20px; padding: 24px 24px 22px 18px; background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-card); min-height: 209px; }
.avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.stars { font-size: 19px; letter-spacing: 3px; line-height: 1; color: var(--color-star); }
.testimonial blockquote { margin-top: 10px; font-size: 15.5px; line-height: 1.6; color: #5a5f68; }
.testimonial figcaption { margin-top: 12px; }
.testimonial figcaption strong { display: block; font-size: 16px; font-weight: 700; color: #1f2430; }
.testimonial figcaption span { display: block; margin-top: 4px; font-size: 15px; color: #8a8f97; }

.home-faq-cta { padding-top: 35px; padding-bottom: 16px; }
.faq-cta-grid { display: grid; grid-template-columns: 632px 1fr; gap: 35px; align-items: start; }
.home-faq .eyebrow { font-size: 12px; letter-spacing: 1.8px; }
.section-title--sm { font-size: 30px !important; margin-top: 8px !important; }
.faq-list { margin-top: 14px; }
.faq-item--line { border: 0; border-radius: 0; box-shadow: none; border-bottom: 1px solid #ececea; background: transparent; }
.faq-item--line:last-child { border-bottom: 0; }
.faq-item--line .faq-q { min-height: 43px; padding: 0 12px 0 12px; font-size: 15.5px; font-weight: 600; color: #1f2430; }
.faq-item--line .faq-q .icon { width: 16px; height: 16px; stroke-width: 3; }
.faq-item--line .faq-a p { padding: 0 12px; }

.dream-cta {
  position: relative;
  height: 282px;
  margin-right: calc((100vw - 100%) / -2 - 0px);
  margin-right: calc(-1 * max(var(--gutter), (100vw - var(--container)) / 2));
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
  background: #2a2520;
  color: var(--color-white);
}
.dream-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.dream-cta::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(28,25,21,.97) 0%, rgba(28,25,21,.85) 40%, rgba(28,25,21,.35) 72%, rgba(28,25,21,.2) 100%); }
.dream-cta__content { position: relative; z-index: 2; padding: 40px 42px; }
.eyebrow--wide { letter-spacing: 3.6px !important; font-size: 13px !important; }
.dream-cta h2 { margin-top: 16px; font-size: 33px; font-weight: 600; color: var(--color-white); }
.dream-cta__content > p:not(.eyebrow) { margin-top: 12px; font-size: 17px; line-height: 1.5; color: rgba(255,255,255,.9); }
.dream-cta .btn-group { margin-top: 24px; gap: 26px; align-items: center; }
.dream-cta .btn-gold { width: 238px; height: 53px; font-size: 15px; }
.dream-cta .btn-whatsapp-plain { font-size: 15.5px; font-weight: 600; padding: 0 12px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1360px) {
  .main-nav { margin-right: 40px; }
  .nav-list { gap: 30px; }
  .site-header--home .main-nav { margin-left: 60px; }
  .site-header--home .nav-list { gap: 32px; }
  .header-actions { gap: 22px; }
  .cta-features { padding-right: 0; }
  .feature-bar__list { padding-left: var(--gutter); padding-right: var(--gutter); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .stats-card { width: 52%; margin-right: 0; }
}

@media (max-width: 1200px) {
  :root { --gutter: 32px; }
  .page-contact, .page-home { --gutter: 32px; }
  .header-phone { display: none; }
  .header-contacts .header-phone { display: inline-flex; }
  .site-header--home .header-email { display: none; }
  .main-nav { margin-right: 28px; }
  .site-header--home .main-nav { margin-left: 32px; }
  .nav-list, .site-header--home .nav-list { gap: 24px; }
  .page-hero__content, .home-hero__content { padding-left: var(--gutter); }
  .info-item + .info-item, .info-item:nth-child(4) { padding-left: 26px; }
  .info-item { gap: 16px; padding-left: 0; }
  .info-item__icon { width: 34px; height: 34px; }
  .cta-banner--contact .cta-banner__inner { padding-left: var(--gutter); flex-direction: column; align-items: flex-start; height: auto; gap: 30px; }
  .cta-features li:first-child { padding-left: 0; }
  .project-hero { grid-template-columns: 1fr 1.2fr; height: auto; min-height: 434px; }
  .project-hero__intro { padding-left: var(--gutter); }
  .thumbs-wrap { padding-left: var(--gutter); }
  .overview-grid { grid-template-columns: 1fr 380px; gap: 36px; }
  .highlights { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .highlights li:nth-child(4) { border-left: 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-bar__list { flex-wrap: wrap; justify-content: center; gap: 18px 36px; height: auto; padding-top: 22px; padding-bottom: 22px; }
  .why { height: auto; }
  .why__inner { flex-direction: column; align-items: flex-start; gap: 36px; padding-top: 50px; padding-bottom: 50px; }
  .why::before { background: linear-gradient(90deg, rgba(22,48,42,.96) 0%, rgba(22,48,42,.85) 60%, rgba(22,48,42,.6) 100%); }
  .stats-card { width: 100%; margin: 0; }
  .faq-cta-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav { gap: 22px; }
}

@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .header-actions, .header-actions--stacked { margin-left: auto; }
  .btn-header { display: none; }
  .site-header--home .header-contacts { display: none; }
  .header-inner, .site-header--home .header-inner { height: 72px; }
  .main-nav, .site-header--home .main-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    margin: 0; padding: 20px var(--gutter) 40px;
    background: var(--color-white);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s;
  }
  .nav-open .main-nav { transform: none; visibility: visible; }
  .nav-list, .site-header--home .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--color-border-soft); }
  .nav-list > li > a, .nav-dropdown-toggle { display: flex; width: 100%; justify-content: space-between; padding: 16px 0; font-size: 17px; }
  .page-contact .nav-list > li > a.is-active::after { display: none; }
  .dropdown { position: static; min-width: 0; padding: 0 0 10px; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .has-dropdown::after { display: none; }
  .nav-mobile-cta { display: flex; margin-top: 24px; }
  .logo-mark, .site-header--home .logo-mark { width: 46px; height: 40px; }
  .brand-name, .site-header--home .brand-name { font-size: 20px; }
  .brand-tag { font-size: 7.4px; }

  .page-hero { height: auto; }
  .page-hero__content { padding-top: 64px; padding-bottom: 64px; }
  .page-hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(20,18,15,.45); }
  .page-hero h1 { font-size: 46px; }
  .info-strip__grid { grid-template-columns: 1fr 1fr; height: auto; gap: 26px 0; padding-top: 30px; padding-bottom: 30px; }
  .info-item + .info-item { border-left: 0; margin-bottom: 0; }
  .info-item, .info-item + .info-item, .info-item:nth-child(4) { padding-left: 0; }
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-side { grid-template-rows: 393px auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 12px; padding: 0; }
  .cta-banner::before { background: linear-gradient(90deg, rgba(14,35,34,.97) 0%, rgba(14,35,34,.85) 100%); }

  .project-hero { grid-template-columns: 1fr; }
  .project-slider { height: 420px; order: -1; }
  .project-hero__intro { padding-top: 26px; padding-bottom: 32px; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-text, .overview-text p { max-width: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item { aspect-ratio: 16 / 10; }
  .g-item--large { grid-column: span 2; grid-row: auto; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  .home-hero { height: auto; }
  .home-hero__content { padding-top: 70px; padding-bottom: 70px; }
  .home-hero::before { background: rgba(20,18,15,.5); }
  .about-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-cta-grid { grid-template-columns: 1fr; }
  .dream-cta { margin-right: 0; border-radius: var(--radius); }

  .footer-top { grid-template-columns: 1fr; justify-items: center; gap: 22px; height: auto; padding: 36px 0 28px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
  .socials { justify-content: center; }
  .footer-bottom, .page-home .footer-bottom, .page-project .footer-bottom { flex-direction: column; justify-content: center; height: auto; padding: 20px 0 24px; text-align: center; }
  .page-home .footer-top, .page-project .footer-top { height: auto; }
}

@media (max-width: 767px) {
  :root { --gutter: 16px; }
  .page-contact, .page-home { --gutter: 16px; }
  .header-actions { display: none; }
  .nav-toggle { margin-left: auto; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section-head .link-arrow, .page-home .section-head .link-arrow { margin-bottom: 0; }
  .section-title, .faq-section .section-title, .page-home .section-title { font-size: 28px; }
  .section-title--lg { font-size: 30px !important; }
  .btn-group { gap: 14px; }
  .btn-group .btn { flex: 1 1 100%; width: 100% !important; min-width: 0 !important; }
  .cta-banner h2, .dream-cta h2, .why h2 { font-size: 28px; }
  .cta-banner__content > p br, .home-hero__text br, .page-hero__text br, .why__text br, .dream-cta p br { display: none; }

  .page-hero h1 { font-size: 38px; }
  .page-hero__text { font-size: 16.5px; }
  .info-strip__grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 20px 36px; }
  .form-card h2 { font-size: 27px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-submit { width: 100%; }
  .form-safe { margin: 0; justify-content: center; }
  .contact-side { grid-template-rows: 320px auto; }
  .map-card__info { width: auto; right: 70px; }
  .office-card { grid-template-columns: 1fr; }
  .office-card__img { height: 220px; order: -1; }
  .faq-q { padding: 12px 16px; font-size: 15.5px; }
  .cta-features { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-features li { padding: 0; }
  .cta-features li + li { border-left: 0; }
  .btn-whatsapp--lg { font-size: 17px; }

  .project-slider { height: 260px; }
  .project-hero h1 { font-size: 36px; }
  .project-hero .eyebrow { margin-top: 26px; }
  .project-meta { flex-direction: column; gap: 16px; }
  .project-meta li + li { border-left: 0; padding-left: 0; }
  .thumb, .thumb:nth-child(n) { width: 150px; height: 100px; }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .highlights li:nth-child(odd) { border-left: 0; }
  .highlights li:nth-child(4) { border-left: 1px solid #e3e3df; }
  .details-card { padding: 22px 20px; }
  .details-list div { grid-template-columns: 40px 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .g-item--large { grid-column: auto; }
  .round-arrows { display: none; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { height: 200px; }

  .home-hero h1 { font-size: 38px; }
  .hero-tagline { font-size: 11.5px; letter-spacing: 2.4px; }
  .hero-tagline span { margin: 0 4px; }
  .home-hero__text { font-size: 16.5px; }
  .feature-bar__list { flex-direction: column; align-items: flex-start; }
  .feature-bar li { gap: 16px; }
  .feature-bar .icon { width: 34px; height: 34px; }
  .services-grid, .projects-grid { grid-template-columns: 1fr; }
  .about-media img { height: 300px; }
  .about-features { grid-template-columns: 1fr; row-gap: 20px; }
  .stats-card { grid-template-columns: 1fr; height: auto; padding: 0; }
  .stat { padding: 24px 0; }
  .stat + .stat { border-left: 0; border-top: 1px solid #e6e6e3; }
  .why::before { background: rgba(22,48,42,.94); }
  .testimonial { padding: 20px 16px; }
  .avatar { width: 56px; height: 56px; }
  .dream-cta { height: auto; }
  .dream-cta__content { padding: 32px 20px; }
  .dream-cta::before { background: rgba(28,25,21,.88); }
  .footer-legal { justify-content: center; }
}

@media (max-width: 400px) {
  .brand-name, .site-header--home .brand-name { font-size: 17px; }
  .brand-tag { font-size: 6.5px; }
  .page-hero h1, .home-hero h1, .project-hero h1 { font-size: 32px; }
  .details-list div { grid-template-columns: 36px 1fr; height: auto; padding: 10px 0; }
  .details-list dd { grid-column: 2; }
  .form-safe { font-size: 14px; }
}

/* ---------- Inner / service pages ---------- */
.page-inner, .page-service { --container: 1308px; --gutter: 66px; }
.service-intro { padding-top: 72px; padding-bottom: 20px; }
.service-intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.service-intro-media img { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.service-intro-text p { margin-top: 16px; font-size: 16.5px; line-height: 1.7; color: var(--color-muted); }
.service-intro-text .about-features { margin-top: 28px; }
.service-intro-text .btn { margin-top: 32px; }
.service-scope { padding-top: 40px; padding-bottom: 20px; }
.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.scope-card { background: var(--color-white); border: 1px solid var(--color-border-soft); border-radius: var(--radius); padding: 28px 24px 26px; box-shadow: var(--shadow-soft); }
.scope-card__icon { width: 34px; height: 34px; color: var(--color-primary); }
.scope-card h3 { margin-top: 14px; font-size: 18px; }
.scope-card p { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--color-muted); }
.service-process { padding-top: 40px; padding-bottom: 48px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.process-step { background: var(--color-panel); border-radius: var(--radius); padding: 28px 24px 30px; min-height: 220px; }
.process-num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--color-primary); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 0.4px; }
.process-step h3 { margin-top: 18px; font-size: 18px; }
.process-step p { margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--color-muted); }
.rich-text-wrap { max-width: 860px; padding-bottom: 60px; }
.rich-text { margin-top: 22px; font-size: 16.5px; line-height: 1.75; color: var(--color-text); }
.rich-text p + p { margin-top: 16px; }
.rich-text h3 { margin: 28px 0 10px; font-size: 22px; }
.rich-text ul { margin: 12px 0 12px 18px; list-style: disc; }
.rich-text li { margin: 6px 0; }

@media (max-width: 1100px) {
  .service-intro-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .service-intro-media img { height: 420px; }
}
@media (max-width: 767px) {
  .service-intro-grid, .scope-grid, .process-grid { grid-template-columns: 1fr; }
  .service-intro-media img { height: 280px; }
  .process-step { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
