:root {
  --navy: #25282c;
  --navy-deep: #17191c;
  --navy-soft: #3b3f44;
  --gold: #bf171d;
  --gold-bright: #ef3038;
  --cream: #ece9e4;
  --cream-deep: #dedbd5;
  --paper: #f8f7f4;
  --white: #ffffff;
  --ink: #202225;
  --muted: #676b70;
  --line: rgba(32, 34, 37, 0.14);
  --whatsapp: #168b54;
  --shadow: 0 20px 55px rgba(31, 35, 43, 0.12);
  --shell: 1200px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.9;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding: 72px 0;
}

.section-pad-sm {
  padding: 54px 0;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2,
.about-copy h2,
.areas-copy h2,
.faq-heading h2,
.showroom h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.18;
  font-weight: 800;
}

.section-heading p,
.about-copy > p,
.areas-copy > p,
.faq-heading > p,
.showroom p,
.contact-copy > p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-kicker {
  margin: 0 0 10px !important;
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  letter-spacing: 0.14em !important;
}

.centered {
  text-align: center;
}

.centered p {
  margin-inline: auto;
}

.compact {
  margin-bottom: 24px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.text-link,
.underlined-link,
.portfolio-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link {
  border-bottom: 1px solid var(--navy);
}

.text-link svg,
.underlined-link svg,
.portfolio-links svg {
  transition: transform 180ms ease;
}

.text-link:hover svg,
.underlined-link:hover svg,
.portfolio-links a:hover svg {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 8px 22px rgba(191, 23, 29, 0.25);
}

.button-primary:hover {
  background: #9e1016;
}

.whatsapp-button {
  background: var(--whatsapp);
  box-shadow: 0 8px 22px rgba(22, 139, 84, 0.28);
}

.whatsapp-button:hover {
  background: #107445;
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-dark:hover {
  background: var(--navy-soft);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 26px;
  padding: 0 max(24px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(22, 34, 56, 0.07);
  background: rgba(248, 245, 240, 0.96);
  box-shadow: 0 3px 15px rgba(20, 25, 35, 0.05);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(32, 34, 37, 0.1);
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-style: normal;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand-copy em {
  color: var(--navy);
  font-style: normal;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.45vw, 25px);
}

.desktop-nav a {
  position: relative;
  color: #2f3c51;
  font-size: 0.71rem;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-whatsapp,
.menu-button {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(20, 30, 50, 0.06);
  cursor: pointer;
  font-size: 0.68rem;
}

.header-whatsapp {
  color: var(--white);
  border-color: var(--whatsapp);
  background: var(--whatsapp);
  font-weight: 800;
}

.header-whatsapp:hover {
  background: #107445;
}

.menu-button {
  display: none;
  width: 40px;
  padding: 0;
  font-size: 1.2rem;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(696px, calc(100vh - var(--header-height)));
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-bright);
  background: #252a30;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: linear-gradient(90deg, rgba(5, 10, 17, 0.86) 0%, rgba(5, 10, 17, 0.62) 46%, rgba(5, 10, 17, 0.32) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transition: opacity 750ms ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide .hero-copy {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - var(--shell)) / 2));
  width: min(660px, calc(100% - 48px));
  transform: translateY(-60%);
}

.hero-slide .eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-slide h1,
.hero-slide h2 {
  margin: 0;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.55rem, 4.25vw, 4rem);
  line-height: 1.16;
  font-weight: 800;
  text-wrap: balance;
}

.hero-slide p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: stretch;
  pointer-events: none;
}

.hero-copy-placeholder {
  height: 72%;
}

.hero-actions,
.hero-proof,
.hero-dots {
  pointer-events: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 600;
}

.hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hero-proof svg {
  color: var(--gold-bright);
  font-size: 1rem;
}

.hero-proof .rating {
  color: var(--gold-bright);
}

.hero-proof .rating b {
  display: none;
}

.hero-proof .rating small {
  color: rgba(255, 255, 255, 0.88);
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.hero-dots button {
  width: 8px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--gold-bright);
}

.intro {
  padding-top: 44px;
  background: var(--cream);
}

.raised-panel {
  padding: 38px 44px 34px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 7px;
  background: rgba(248, 245, 240, 0.72);
  box-shadow: 0 8px 25px rgba(53, 47, 41, 0.13);
}

.raised-panel .section-heading {
  margin-bottom: 24px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.service-pills a {
  padding: 8px 13px;
  color: var(--navy);
  border: 1px solid rgba(27, 54, 93, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.service-pills a:hover {
  color: var(--white);
  background: var(--navy);
}

.portfolio {
  background: var(--cream-deep);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 315px 315px;
  gap: 14px;
}

.project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #8d8d8d;
}

.project-large {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(7, 14, 23, 0.86));
  content: "";
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-overlay {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.project-overlay small {
  margin-bottom: 5px;
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-overlay strong {
  font-size: 1rem;
  line-height: 1.35;
}

.project-large .project-overlay strong {
  font-size: 1.3rem;
}

.project-overlay em {
  display: flex;
  max-height: 0;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  overflow: hidden;
  font-size: 0.72rem;
  font-style: normal;
  opacity: 0;
  transition: max-height 200ms ease, margin 200ms ease, opacity 200ms ease;
}

.project-card:hover .project-overlay em {
  max-height: 30px;
  margin-top: 8px;
  opacity: 1;
}

.portfolio-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  margin-top: 20px;
}

.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(27, 54, 93, 0.11);
  border-radius: 5px;
  background: rgba(248, 245, 240, 0.7);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(191, 134, 16, 0.35);
  border-radius: 4px;
  background: rgba(191, 134, 16, 0.07);
  font-size: 1.45rem;
}

.service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.service-card p {
  min-height: 82px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.underlined-link {
  margin-top: 28px;
  border-bottom: 1px solid rgba(27, 54, 93, 0.5);
}

.reviews {
  overflow: hidden;
  background: var(--paper);
}

.review-score {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 9px;
  color: var(--navy);
}

.review-score strong {
  font-size: 1.7rem;
}

.review-score span,
.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.review-score small {
  grid-column: 1 / -1;
  font-size: 0.66rem;
  text-decoration: underline;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.review-card > p {
  flex: 1;
  margin: 17px 0 24px;
  color: #4d586a;
  font-size: 0.82rem;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.review-card footer > svg {
  margin-left: auto;
  color: rgba(27, 54, 93, 0.16);
  font-size: 2rem;
  fill: rgba(27, 54, 93, 0.08);
}

.review-card footer span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.review-card footer strong {
  font-size: 0.8rem;
}

.review-card footer small {
  color: var(--muted);
  font-size: 0.66rem;
}

.promise-card {
  min-height: 245px;
}

.promise-card .icon-box {
  margin-bottom: 22px;
}

.promise-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
}

.promise-card > p {
  flex: 0 0 auto;
  margin: 12px 0 0;
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
}

.stats {
  padding: 48px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-grid > div:last-child {
  border-right: 0;
}

.stats-grid strong {
  color: var(--gold-bright);
  font-size: 2.1rem;
  line-height: 1;
}

.stats-grid strong svg {
  font-size: 2.2rem;
}

.stats-grid span {
  max-width: 110px;
  font-size: 0.72rem;
  line-height: 1.35;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 74px;
}

.about-media {
  position: relative;
  min-height: 540px;
}

.about-media::before {
  position: absolute;
  top: -15px;
  right: 34px;
  bottom: 28px;
  left: -15px;
  border: 2px solid rgba(191, 134, 16, 0.52);
  content: "";
}

.about-media img {
  position: relative;
  width: calc(100% - 20px);
  height: 540px;
  margin-left: auto;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: -28px;
  bottom: 36px;
  display: flex;
  width: 190px;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.experience-badge strong {
  color: var(--gold-bright);
  font-size: 2rem;
}

.experience-badge span {
  font-size: 0.68rem;
  line-height: 1.4;
}

.about-copy > p {
  font-size: 0.92rem;
}

.about-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 32px;
}

.about-list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--gold);
  font-size: 1.2rem;
}

.about-list span {
  display: flex;
  flex-direction: column;
}

.about-list strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.about-list small {
  color: var(--muted);
  font-size: 0.75rem;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.process::after {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.light-heading h2,
.light-heading p {
  color: var(--white) !important;
}

.light-heading p {
  opacity: 0.68;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 0;
}

.process-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.process-grid article > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 3rem;
  font-weight: 800;
}

.process-grid article > svg {
  margin: 18px 0 35px;
  color: var(--gold-bright);
  font-size: 2rem;
}

.process-grid h3 {
  margin: 0;
  font-size: 1rem;
}

.process-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.partners {
  background: var(--paper);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 22px;
}

.logo-strip span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  color: #737b84;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.logo-strip svg {
  color: var(--gold);
  font-size: 1.65rem;
}

.areas {
  background: var(--cream-deep);
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.area-links a {
  padding: 7px 11px;
  color: var(--navy);
  border: 1px solid rgba(27, 54, 93, 0.17);
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 700;
}

.map-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(27, 54, 93, 0.12);
  background-color: #d5dbd7;
  background-image: linear-gradient(35deg, transparent 45%, rgba(255,255,255,.5) 46%, rgba(255,255,255,.5) 48%, transparent 49%), linear-gradient(-22deg, transparent 46%, rgba(27,54,93,.09) 47%, rgba(27,54,93,.09) 48%, transparent 49%);
  background-size: 72px 72px, 115px 115px;
}

.map-card::before,
.map-card::after {
  position: absolute;
  border: 22px solid rgba(27, 54, 93, 0.12);
  border-radius: 45% 55% 42% 58%;
  content: "";
  transform: rotate(-18deg);
}

.map-card::before {
  top: 70px;
  left: 80px;
  width: 230px;
  height: 100px;
}

.map-card::after {
  right: 50px;
  bottom: 50px;
  width: 190px;
  height: 90px;
}

.map-card span {
  position: absolute;
  z-index: 2;
  top: var(--y);
  left: var(--x);
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 0.64rem;
  font-weight: 800;
}

.map-card span::before {
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border: 3px solid var(--gold-bright);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(191, 134, 16, 0.16);
  content: "";
}

.map-card .map-home {
  font-size: 0.8rem;
}

.guides {
  background: var(--paper);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.guide-grid a {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.guide-grid a:hover {
  box-shadow: 0 12px 30px rgba(20, 30, 45, 0.1);
  transform: translateY(-3px);
}

.guide-grid a > svg:first-child {
  color: var(--gold);
  font-size: 1.7rem;
}

.guide-grid a > svg:last-child {
  margin-left: auto;
  color: var(--navy);
}

.guide-grid span {
  display: flex;
  flex-direction: column;
}

.guide-grid strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.guide-grid small {
  color: var(--muted);
  font-size: 0.7rem;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 84px;
}

.faq-heading .button {
  margin-top: 28px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  color: var(--navy);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 800;
}

.faq-item button svg {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform 180ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 40px 23px 0;
}

.journal {
  background: var(--cream-deep);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(27, 54, 93, 0.1);
  background: var(--paper);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card > span {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 21px;
}

.article-card small {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.article-card strong {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.45;
}

.article-card em {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
}

.showroom {
  color: var(--white);
  background: var(--navy);
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 64px;
}

.showroom h2,
.showroom p {
  color: var(--white);
}

.showroom p {
  opacity: 0.72;
}

.showroom-details {
  display: grid;
  gap: 8px;
  margin: 23px 0 28px;
  font-size: 0.75rem;
}

.showroom-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showroom-details svg {
  color: var(--gold-bright);
}

.showroom img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 33px;
}

.contact-list > a,
.contact-list > span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list > a > svg,
.contact-list > span > svg {
  display: block;
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-list .contact-whatsapp > svg {
  color: var(--whatsapp);
}

.contact-list span span,
.contact-list a span {
  display: flex;
  flex-direction: column;
}

.contact-list small {
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.contact-list strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label span {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid rgba(27, 54, 93, 0.19);
  border-radius: 3px;
  outline: none;
  background: #fcfbf9;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191, 134, 16, 0.12);
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.form-note.is-success {
  color: #267047;
  font-weight: 700;
}

.site-footer {
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.68);
  background: #0a182c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 58px;
  padding-bottom: 52px;
}

.brand-inverse .brand-copy em,
.brand-inverse .brand-copy small {
  color: var(--white);
}

.footer-brand > p {
  max-width: 310px;
  margin: 23px 0;
  font-size: 0.75rem;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #70d9a4;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-whatsapp:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  font-size: 0.9rem;
}

.socials a:hover {
  color: var(--white);
  border-color: var(--gold);
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.8rem;
}

.footer-grid > div:not(:first-child) a {
  font-size: 0.7rem;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.62rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 22px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 0.64rem;
  }

  .portfolio-grid {
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: repeat(3, 285px);
  }

  .project-large {
    grid-row: span 2;
  }

  .project-card:last-child {
    grid-column: 1 / -1;
  }

  .about-grid,
  .areas-grid {
    gap: 48px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    justify-content: space-between;
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .language-button span {
    display: inline;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(20, 25, 35, 0.14);
    opacity: 0;
    transition: max-height 250ms ease, opacity 180ms ease;
  }

  .site-header.menu-active .mobile-menu {
    max-height: calc(100vh - var(--header-height));
    padding: 10px 18px 20px;
    opacity: 1;
  }

  .mobile-menu a {
    padding: 13px 6px;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
    font-weight: 700;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }

  .services-grid,
  .review-track,
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:last-child,
  .review-track .review-card:last-child,
  .journal-grid .article-card:last-child {
    grid-column: 1 / -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid > div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-grid,
  .areas-grid,
  .faq-grid,
  .showroom-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .areas-grid,
  .faq-grid,
  .contact-grid {
    gap: 50px;
  }

  .about-media {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .logo-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .showroom-grid img {
    order: -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 76px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-pad {
    padding: 54px 0;
  }

  .section-pad-sm {
    padding: 44px 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy strong {
    font-size: 1.14rem;
  }

  .brand-copy small {
    font-size: 0.43rem;
  }

  .header-whatsapp {
    width: 42px;
    padding: 0;
    font-size: 1rem;
  }

  .header-whatsapp span {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-slide {
    background-image: linear-gradient(90deg, rgba(5, 10, 17, 0.78) 0%, rgba(5, 10, 17, 0.5) 100%), var(--hero-image);
    background-position: 58% center;
  }

  .hero-slide .hero-copy {
    top: auto;
    right: 16px;
    bottom: 285px;
    left: 16px;
    width: auto;
    transform: none;
  }

  .hero-slide .eyebrow {
    display: none;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 1.58rem;
    line-height: 1.28;
  }

  .hero-slide p:last-child {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .hero-copy-placeholder {
    height: 63%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1;
    padding: 0 14px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 8px;
    margin-top: 22px;
    font-size: 0.68rem;
  }

  .hero-proof > span {
    white-space: normal;
  }

  .hero-proof .rating {
    grid-column: 1 / -1;
  }

  .hero-dots {
    margin-top: 10px;
  }

  .raised-panel {
    padding: 31px 22px 27px;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card,
  .project-large,
  .project-card:last-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .project-large {
    min-height: 390px;
  }

  .portfolio-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .services-grid,
  .review-track,
  .journal-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child,
  .review-track .review-card:last-child,
  .journal-grid .article-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 0;
  }

  .service-card p {
    min-height: 0;
  }

  .review-track {
    display: flex;
    width: calc(100vw - 16px);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: calc(100vw - 56px);
    scroll-snap-align: start;
  }

  .stats {
    padding: 35px 0;
  }

  .stats-grid > div {
    min-height: 90px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .stats-grid strong {
    font-size: 1.7rem;
  }

  .stats-grid span {
    font-size: 0.66rem;
  }

  .about-media,
  .about-media img {
    min-height: 390px;
    height: 390px;
  }

  .about-media::before {
    left: -7px;
  }

  .experience-badge {
    right: -5px;
    bottom: 20px;
    width: 168px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article:nth-child(2),
  .process-grid article:last-child {
    min-height: 200px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .process-grid article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-card {
    min-height: 340px;
  }

  .faq-item button {
    min-height: 68px;
    font-size: 0.82rem;
  }

  .showroom img {
    height: 260px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 17px 0;
  }

  .mobile-cta {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 78px;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid rgba(27, 54, 93, 0.13);
    background: rgba(248, 245, 240, 0.97);
    box-shadow: 0 -8px 24px rgba(20, 25, 35, 0.12);
    backdrop-filter: blur(10px);
  }

  .mobile-cta .button {
    min-height: 50px;
  }

  .call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
