/* =========================================================
   ESSAR SOLUTIONS — DESIGN SYSTEM v3
   ========================================================= */

:root {
  --paper: #FBF7EF;
  --paper-deep: #F3ECDD;
  --card: #FFFFFF;
  --ink: #221D16;
  --ink-soft: #5C5648;
  --ink-faint: #9A9182;
  --line: #E5DDCB;

  --navy: #16304F;
  --navy-deep: #0D2038;
  --navy-mid: #1E3A5C;

  --gold: #B07C33;
  --gold-deep: #8E5F24;
  --gold-tint: #F3E3C6;
  --gold-bright: #E2B75C;

  --teal: #0E6B5C;
  --teal-tint: #DDEDE7;

  --sky: #2E5A93;
  --sky-tint: #E1E9F3;

  --rose: #9C4A61;
  --rose-tint: #F3E1E5;

  --whatsapp: #25D366;

  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --header-h: 96px;

  --ease: cubic-bezier(.22, .7, .2, 1);
  --dur-1: .7s;
  --dur-2: 1s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16.5px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
dt {
  margin: 0;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

em {
  font-style: italic;
  color: inherit;
}

.kicker {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 0.01em;
}

.kicker--light {
  color: var(--gold-tint);
}

.headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}

.headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.headline--light {
  color: var(--paper);
}

.headline--light em {
  color: var(--gold-tint);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--f-body);
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-arrow {
  width: 17px;
  height: 17px;
  position: relative;
  z-index: 2;
  transition: transform .3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--navy-deep);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--gold-deep);
  box-shadow: 0 14px 30px -14px rgba(142, 95, 36, .55);
  transform: translateY(-1px);
}

.btn--text {
  padding: 1rem .2rem;
  color: var(--navy-deep);
  font-weight: 700;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
}

.btn--text:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.btn--solid-light {
  background: var(--paper);
  color: var(--navy-deep);
}

.btn--solid-light:hover {
  background: var(--gold-tint);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .35);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1fb958;
  box-shadow: 0 14px 28px -10px rgba(37, 211, 102, .5);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-deep);
  margin-top: 1.6rem;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 3px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.link-cta svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease);
}

.link-cta:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.link-cta:hover svg {
  transform: translateX(3px);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 1.1rem;
  max-width: 46ch;
}

.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  background: var(--gold-deep);
  width: 0%;
  z-index: 1000;
  transition: width .1s linear;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled {
  padding: .7rem 0;
  background: rgba(251, 247, 239, .97);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(22, 48, 79, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}

.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: opacity .3s var(--ease), height .35s var(--ease);
}

.brand-logo--white {
  opacity: 1;
}

.brand-logo--navy {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--white {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--navy {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo {
  height: 50px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .95);
  transition: color .3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s var(--ease), background .3s var(--ease);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.site-header.is-scrolled .nav-link {
  color: var(--navy);
}

.site-header.is-scrolled .nav-link::after {
  background: var(--gold-deep);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--gold-deep);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  transition: color .3s var(--ease);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: #fff;
  flex-shrink: 0;
  transition: color .3s var(--ease);
}

.header-phone__text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header-phone__text strong {
  font-size: .86rem;
  font-weight: 700;
}

.header-phone__text small {
  font-size: .68rem;
  color: rgba(255, 255, 255, .65);
}

.site-header.is-scrolled .header-phone {
  color: var(--navy-deep);
}

.site-header.is-scrolled .header-phone svg {
  color: var(--gold-deep);
}

.site-header.is-scrolled .header-phone__text small {
  color: var(--ink-faint);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 6px 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .35s var(--ease);
}

.site-header.is-scrolled .hamburger span {
  background: var(--navy-deep);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7.5rem 2rem 3rem;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--paper);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mobile-nav-link span {
  font-family: var(--f-body);
  font-style: normal;
  font-size: .78rem;
  color: var(--gold-tint);
  font-weight: 700;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  color: var(--gold-tint);
  font-size: .95rem;
}

@media (max-width: 900px) {
  .site-header {
    padding: 1rem 0;
  }

  .site-header.is-scrolled {
    padding: .65rem 0;
  }

  .main-nav,
  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 1.2rem;
  }

  .brand-logo {
    height: 38px;
  }

  .site-header.is-scrolled .brand-logo {
    height: 34px;
  }

  .mobile-menu {
    padding: 7rem 1.5rem 2rem;
  }

  .mobile-nav-link {
    font-size: 1.85rem;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #182c3d;
  color: #fff;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 112%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 25, 40, .9) 0%, rgba(8, 25, 40, .74) 32%, rgba(8, 25, 40, .36) 65%, rgba(8, 25, 40, .14) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 40, .18) 0%, transparent 45%, rgba(8, 25, 40, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) var(--gutter) 5rem;
}

.hero-copy {
  max-width: 720px;
}

.hero .kicker {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.hero .kicker::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold-bright);
}

.hero-headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
}

.reveal-line {
  display: block;
  overflow: hidden;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
}

.reveal-line.is-visible {
  transform: translateY(0);
}

.hero-sub {
  max-width: 580px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero .btn--primary {
  background: #fff;
  color: var(--navy-deep);
  border-color: #fff;
}

.hero .btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #15283a;
}

.hero .btn--text {
  color: #fff;
}

.hero .btn--text::after {
  background: #fff;
}

.hero-facts {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .25);
  max-width: 720px;
}

.hero-facts>div {
  padding-right: 2.2rem;
  margin-right: 2.2rem;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.hero-facts>div:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.hero-facts dt {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: .35rem;
}

.hero-facts__num {
  font-variant-numeric: tabular-nums;
}

.hero-facts dd {
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .62);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .65);
  font-size: .68rem;
  letter-spacing: .08em;
  font-weight: 600;
}

.hero-scroll-cue__line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .7), transparent);
  overflow: hidden;
  position: relative;
}

.hero-scroll-cue__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: scrollcue 2.2s ease-in-out infinite;
}

@keyframes scrollcue {
  0% {
    top: -100%;
  }

  60% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 820px;
  }

  .hero-img {
    object-position: 70% center;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 4rem);
    padding-bottom: 4rem;
  }

  .hero-copy {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-img {
    object-position: 78% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 25, 40, .3) 0%, rgba(8, 25, 40, .58) 38%, rgba(8, 25, 40, .95) 100%);
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 5rem);
    padding-bottom: 2.5rem;
  }

  .hero-headline {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .hero-sub {
    font-size: .98rem;
    margin-bottom: 2rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding-top: 1.4rem;
  }

  .hero-facts>div {
    padding-right: 1rem;
    margin-right: 0;
    border-right: 0;
  }

  .hero-facts>div:last-child {
    grid-column: 1/-1;
    padding-top: .5rem;
  }

  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 400px) {
  .hero-headline {
    font-size: 2.85rem;
  }

  .hero-ctas {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   MARQUEE / TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--navy-deep);
  padding: 1.7rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding-right: 3.2rem;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(251, 247, 239, .68);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
}

.marquee__item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--paper-deep);
  overflow: hidden;
}

.about-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
  min-height: clamp(500px, 48vw, 680px);
}

.about-image {
  position: absolute;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 30px 70px -35px rgba(22, 48, 79, .42);
  isolation: isolate;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}

.about-image:hover img {
  transform: scale(1.045);
}

.about-image--main {
  top: 0;
  left: 0;
  width: 78%;
  height: 86%;
  border-radius: 3px;
  z-index: 1;
}

.about-image--secondary {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 38%;
  border: 8px solid var(--paper-deep);
  border-radius: 3px;
  z-index: 3;
}

.about-year {
  position: absolute;
  top: -10rem;
  left: -1rem;
  z-index: 0;
  font-family: var(--f-display);
  font-size: clamp(5rem, 9vw, 8rem);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: .4;
  pointer-events: none;
  user-select: none;
}

.about-experience {
  position: absolute;
  left: -1.5rem;
  bottom: 8%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.25rem;
  background: var(--navy-deep);
  color: #fff;
  box-shadow: 0 22px 45px -20px rgba(22, 48, 79, .5);
  border-radius: 2px;
}

.about-experience__number {
  font-family: var(--f-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
}

.about-experience__text {
  font-size: .7rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.about-headline {
  margin-top: .9rem;
  margin-bottom: 1.7rem;
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--navy-deep);
}

.about-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

.about-lead {
  max-width: 52ch;
  margin-bottom: 1.3rem;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--navy-deep);
}

.about-body {
  max-width: 56ch;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.about-body+.about-body {
  margin-top: -1.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.about-value {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.about-value svg {
  width: 22px;
  height: 22px;
  color: var(--gold-deep);
}

.about-value strong {
  display: block;
  margin-bottom: .3rem;
  font-size: .85rem;
  color: var(--navy-deep);
}

.about-value p {
  margin: 0;
  font-size: .76rem;
  line-height: 1.55;
  color: var(--ink-faint);
}

.about-stats {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid var(--line);
}

.about-stat:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.about-stat__num {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  line-height: 1;
  color: var(--gold-deep);
}

.about-stat__label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-faint);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--navy-deep);
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy-deep);
  transition: gap .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.about-link svg {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
}

.about-link:hover {
  gap: 1rem;
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.about-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1000px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about-visual {
    min-height: 620px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .about-copy {
    max-width: 720px;
  }

  .about-headline {
    font-size: clamp(2.6rem, 7vw, 4.2rem);
  }
}

@media (max-width: 640px) {
  .about {
    padding: 5rem 0;
  }

  .about-inner {
    padding: 0 1.25rem;
    gap: 3.5rem;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-image--main {
    width: 82%;
    height: 78%;
  }

  .about-image--secondary {
    width: 53%;
    height: 34%;
    border-width: 6px;
  }

  .about-year {
    top: -5rem;
    left: -.3rem;
    font-size: 5rem;
  }

  .about-experience {
    left: -.2rem;
    bottom: 7%;
    padding: .8rem 1rem;
  }

  .about-experience__number {
    font-size: 1.5rem;
  }

  .about-experience__text {
    font-size: .62rem;
  }

  .about-headline {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    line-height: 1.05;
  }

  .about-lead {
    font-size: 1.05rem;
  }

  .about-body {
    font-size: .94rem;
    line-height: 1.75;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-value {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: .7rem;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .about-stat {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }

  .about-stat__num {
    font-size: 1.4rem;
  }

  .about-stat__label {
    font-size: .62rem;
    line-height: 1.35;
  }
}

@media (max-width: 400px) {
  .about-visual {
    min-height: 410px;
  }

  .about-image--main {
    width: 84%;
    height: 76%;
  }

  .about-image--secondary {
    width: 55%;
    height: 34%;
  }

  .about-experience {
    left: 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--line);
  }

  .about-stat:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why {
  padding: var(--section-pad) 0;
  background: var(--paper);
}

.why-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.why-card {
  background: var(--card);
  padding: clamp(1.8rem, 2.6vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .3s var(--ease);
}

.why-card:hover {
  background: var(--paper-deep);
}

.why-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__icon svg {
  width: 22px;
  height: 22px;
}

.why-card h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-deep);
}

.why-card p {
  font-size: .86rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: var(--section-pad) 0 calc(var(--section-pad) * .6);
  background: var(--paper-deep);
}

.services-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.services-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.services-nav {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.services-nav ol {
  display: flex;
  flex-direction: column;
}

.services-nav a {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
}

.services-nav li:last-child a {
  border-bottom: 1px solid var(--line);
}

.services-nav__num {
  font-family: var(--f-display);
  font-size: .92rem;
  color: var(--ink-faint);
  transition: color .25s var(--ease);
}

.services-nav__label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.35;
  transition: color .25s var(--ease);
}

.services-nav a:hover .services-nav__label,
.services-nav a.is-active .services-nav__label {
  color: var(--navy-deep);
}

.services-nav a:hover .services-nav__num,
.services-nav a.is-active .services-nav__num {
  color: var(--gold-deep);
}

.services-panels {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 7vw, 6rem);
}

.panel {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.panel-eyebrow {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.panel-eyebrow__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
}

.panel-eyebrow__text {
  font-size: .8rem;
  letter-spacing: .03em;
  color: var(--ink-faint);
  font-weight: 600;
}

.panel-heading {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1.1rem;
}

.panel-heading em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.panel-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch;
}

.panel--fastag {
  background: var(--navy-deep);
  border-radius: 10px;
  padding: clamp(2rem, 4vw, 3.4rem);
  color: var(--paper);
}

.panel--fastag .panel-eyebrow {
  border-color: rgba(255, 255, 255, .15);
}

.panel--fastag .panel-eyebrow__text {
  color: rgba(251, 247, 239, .55);
}

.panel--fastag .panel-heading {
  color: var(--paper);
}

.panel--fastag .panel-heading em {
  color: var(--gold-tint);
}

.panel--fastag .panel-lead {
  color: rgba(251, 247, 239, .78);
}

.fastag-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.partner-badge {
  margin: 1.8rem 0;
}

.partner-badge__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(251, 247, 239, 0.5);
  margin-bottom: 0.8rem;
}

.partner-badge__logos {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: var(--paper);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  width: fit-content;
}

.partner-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.partner-logo--sbi {
  height: 30px;
}

.partner-logo--federal {
  height: 22px;
}

.fastag-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.8rem;
}

.fastag-highlights li {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.fastag-highlights svg {
  width: 24px;
  height: 24px;
  color: var(--gold-tint);
  flex-shrink: 0;
}

.fastag-highlights strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--paper);
}

.fastag-highlights span {
  font-size: .78rem;
  color: rgba(251, 247, 239, .6);
}

.fastag-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.fastag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fastag-steps {
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  padding-top: clamp(2rem, 3vw, 2.8rem);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.fastag-steps__title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-tint);
  margin-bottom: 1.8rem;
}

.fastag-steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.fastag-steps__list li {
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
}

.fastag-steps__list span {
  display: block;
  font-family: var(--f-display);
  font-size: .8rem;
  color: var(--gold-tint);
  margin-bottom: .6rem;
}

.fastag-steps__list strong {
  display: block;
  font-size: .9rem;
  color: var(--paper);
  margin-bottom: .35rem;
}

.fastag-steps__list p {
  font-size: .78rem;
  color: rgba(251, 247, 239, .62);
  line-height: 1.5;
}

.fastag-manifest {
  margin-top: clamp(2rem, 3vw, 2.6rem);
}

.fastag-manifest__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
  margin-bottom: 2.2rem;
}

.fastag-manifest__list li {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  padding: .85rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .18);
  font-size: .9rem;
  color: rgba(251, 247, 239, .88);
}

.fastag-manifest__list span {
  font-family: var(--f-display);
  font-size: .8rem;
  color: var(--gold-tint);
  min-width: 1.4rem;
}

.panel--accent-teal .panel-eyebrow__num {
  color: var(--teal);
}

.panel--accent-sky .panel-eyebrow__num {
  color: var(--sky);
}

.panel--accent-rose .panel-eyebrow__num {
  color: var(--rose);
}

.panel--accent-gold .panel-eyebrow__num {
  color: var(--gold-deep);
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.panel--reverse .split-grid {
  grid-template-columns: 1.1fr .9fr;
}

.panel--reverse .split-media {
  order: 2;
}

.panel--reverse .split-copy {
  order: 1;
}

.split-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/4;
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.split-media:hover img {
  transform: scale(1.05);
}

.split-media--duo {
  aspect-ratio: 4/5;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.6rem;
}

.tag {
  font-size: .78rem;
  font-weight: 600;
  padding: .45rem .9rem;
  border-radius: 100px;
  color: var(--navy-deep);
  background: var(--paper-deep);
  border: 1px solid var(--line);
}

.panel--accent-teal .tag {
  background: var(--teal-tint);
  border-color: transparent;
  color: #0A4F44;
}

.panel--accent-sky .tag {
  background: var(--sky-tint);
  border-color: transparent;
  color: #1F3F6C;
}

.panel--accent-rose .tag {
  background: var(--rose-tint);
  border-color: transparent;
  color: #723349;
}

.panel--accent-gold .tag {
  background: var(--gold-tint);
  border-color: transparent;
  color: var(--gold-deep);
}

.mini-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
}

.mini-stats div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.mini-stats strong {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--navy-deep);
}

.mini-stats span {
  font-size: .72rem;
  color: var(--ink-faint);
  font-weight: 600;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--card);
  border-radius: 10px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
}

.statement-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1180px) {

  .fastag-manifest__list,
  .fastag-steps__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-nav {
    position: static;
    margin-bottom: 1rem;
  }

  .services-nav ol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .4rem 1.4rem;
  }

  .services-nav a {
    border: none !important;
    padding: .3rem 0;
  }

  .fastag-grid {
    grid-template-columns: 1fr;
  }

  .fastag-media {
    order: -1;
    aspect-ratio: 16/9;
  }

  .split-grid,
  .panel--reverse .split-grid {
    grid-template-columns: 1fr;
  }

  .split-media,
  .panel--reverse .split-media {
    order: -1 !important;
    aspect-ratio: 16/9;
  }

  .panel--reverse .split-copy {
    order: 2 !important;
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .statement-media {
    order: -1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 640px) {
  .panel--fastag {
    padding: 1.6rem;
    border-radius: 8px;
  }

  .partner-badge__logos {
    flex-wrap: wrap;
  }

  .fastag-manifest__list,
  .fastag-steps__list {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    padding: 1.6rem;
  }

  .mini-stats {
    flex-wrap: wrap;
    gap: 1.4rem;
  }
}

/* =========================================================
   PROCESS BAND
   ========================================================= */
.process {
  padding: var(--section-pad) 0;
  background: var(--paper);
}

.process-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-tint);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-deep);
}

.process-step p {
  font-size: .84rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 1.6rem;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.testimonial-nav {
  display: flex;
  gap: .7rem;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.testimonial-nav button svg {
  width: 18px;
  height: 18px;
}

.testimonial-nav button:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.testimonial-track {
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.testimonial-quote-icon {
  width: 52px;
  height: 52px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.testimonial-body p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  color: var(--paper);
  max-width: 62ch;
  margin-bottom: 1.8rem;
}

.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--gold-bright);
}

.testimonial-stars svg {
  width: 15px;
  height: 15px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.05rem;
}

.testimonial-person strong {
  display: block;
  font-size: .92rem;
  color: var(--paper);
}

.testimonial-person span {
  font-size: .76rem;
  color: rgba(251, 247, 239, .55);
}

/* =========================================================
   GOOGLE REVIEW CTA
   ========================================================= */

.testimonials-review {
  margin-top: 3rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;

  padding-top: 1.8rem;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonials-review__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonials-review__label {
  font-size: 0.72rem;
  font-weight: 600;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.48);
}

.testimonials-review__content strong {
  font-family: var(--f-display);

  font-size: 1.15rem;
  font-weight: 400;

  color: #fff;
}

.testimonials-review__button {
  display: inline-flex;
  align-items: center;

  gap: 0.7rem;

  padding: 0.85rem 1.25rem;

  border: 1px solid rgba(255, 255, 255, 0.28);

  color: #fff;

  font-size: 0.82rem;
  font-weight: 700;

  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    gap 0.3s var(--ease);
}

.testimonials-review__button svg {
  width: 17px;
  height: 17px;

  transition: transform 0.3s var(--ease);
}

.testimonials-review__button:hover {
  background: #fff;
  border-color: #fff;

  color: var(--navy-deep);

  gap: 0.95rem;
}

.testimonials-review__button:hover svg {
  transform: translateX(3px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

  .testimonials-review {
    flex-direction: column;
    align-items: flex-start;

    gap: 1.25rem;

    margin-top: 2.5rem;
  }

  .testimonials-review__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .testimonial-slide {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-quote-icon {
    width: 36px;
    height: 36px;
  }
}

/* =========================================================
   LE POSH — full branch section
   ========================================================= */
.salon-full {
  background: var(--paper-deep);
  padding: var(--section-pad) 0;
}

.salon-full__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.salon-full__top {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.salon-full__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 1.3rem 0 2.2rem;
}

.salon-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.salon-gallery__item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.salon-gallery__item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: 1/2.05;
}

.salon-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.salon-gallery__item:hover img {
  transform: scale(1.06);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.branch-card {
  background: var(--card);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: background .3s var(--ease);
}

.branch-card:hover {
  background: var(--paper);
}

.branch-card__marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .4rem;
}

.branch-card__marker svg {
  width: 15px;
  height: 15px;
}

.branch-card strong {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--navy-deep);
}

.branch-card span {
  font-size: .78rem;
  color: var(--ink-faint);
}

@media (max-width: 900px) {
  .salon-full__top {
    grid-template-columns: 1fr;
  }

  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .salon-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .salon-gallery__item:nth-child(1) {
    grid-row: span 1;
    aspect-ratio: 1/1;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: var(--section-pad) 0;
  background: var(--paper);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--navy-deep);
}

.faq-question__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.faq-question__icon svg {
  width: 14px;
  height: 14px;
  color: var(--navy-deep);
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.faq-item.is-open .faq-question__icon svg {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-answer p {
  font-size: .94rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-bottom: 1.6rem;
  max-width: 68ch;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--gold-tint);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-deep);
  max-width: 20ch;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  position: relative;
  background: var(--paper-deep);
  padding: var(--section-pad) 0;
}

.contact-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 1.2rem 0 2.4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--navy-deep);
  font-size: .98rem;
  line-height: 1.5;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-deep);
}

.contact-details a:hover {
  color: var(--gold-deep);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.contact-hours__row {
  display: flex;
  justify-content: space-between;
  font-size: .86rem;
  color: var(--ink-soft);
  max-width: 320px;
}

.contact-hours__row strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.contact-form {
  background: var(--card);
  padding: clamp(2rem, 3.5vw, 2.8rem);
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -44px rgba(22, 48, 79, .3);
}

.contact-form h3 {
  font-family: var(--f-display);
  font-size: 1.55rem;
  color: var(--navy-deep);
  margin-bottom: 1.7rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.2rem;
}

.form-row {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
}

.form-row label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

.form-row input,
.form-row select,
.form-row textarea {
  border: 1.5px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  padding: .75rem .85rem;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-deep);
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-error {
  display: none;
  font-size: .76rem;
  color: #B3261E;
}

.form-row.has-error input,
.form-row.has-error select {
  border-color: #B3261E;
}

.form-row.has-error .form-error {
  display: block;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: .6rem;
  padding: 1.05rem;
}

.wa-icon {
  width: 18px;
  height: 18px;
}

.form-note {
  font-size: .76rem;
  color: var(--ink-faint);
  text-align: center;
  margin-top: .9rem;
}

@media (max-width: 1100px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  padding: 5rem 0 0;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(251, 247, 239, .55);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: rgba(251, 247, 239, .85);
  transition: background .3s var(--ease), border-color .3s;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.footer-col h4 {
  font-size: .76rem;
  letter-spacing: .04em;
  color: rgba(251, 247, 239, .45);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-col a,
.footer-col span {
  color: rgba(251, 247, 239, .82);
  font-size: .88rem;
}

.footer-col a:hover {
  color: var(--gold-tint);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.6rem var(--gutter);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(251, 247, 239, .4);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   FLOATING ACTIONS
   ========================================================= */
.float-whatsapp {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(37, 211, 102, .6);
  transition: transform .3s var(--ease);
}

.float-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  position: relative;
}

.float-whatsapp:hover {
  transform: scale(1.08);
}

.back-to-top {
  position: fixed;
  right: 1.9rem;
  bottom: 6.4rem;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 640px) {
  .float-whatsapp {
    width: 50px;
    height: 50px;
    right: 1.1rem;
    bottom: 1.1rem;
  }

  .float-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top {
    right: 1.3rem;
    bottom: 5.6rem;
  }
}

/* =========================================================
   REVEAL ANIMATION SYSTEM
   ========================================================= */
[data-reveal] {
  opacity: 0;
}

[data-reveal="fade-up"] {
  transform: translateY(24px);
  transition: opacity var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: .08s;
}

[data-delay="2"] {
  transition-delay: .16s;
}

[data-delay="3"] {
  transition-delay: .24s;
}

[data-delay="4"] {
  transition-delay: .32s;
}

[data-delay="5"] {
  transition-delay: .4s;
}

/* =========================================================
   GLOBAL RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  :root {
    --header-h: 78px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 4rem;
  }

  body {
    font-size: 15.5px;
  }

  .hero-facts {
    flex-direction: column;
    gap: 1.1rem;
  }
}