/* =========================================================
   CUBED GLASS — design tokens
   ========================================================= */
:root{
  /* brand */
  --pink:        #B8326E;
  --pink-dark:   #8E2456;
  --pink-light:  #E372A6;
  --pink-pale:   #F7E1EC;

  /* dark mode surfaces */
  --charcoal:      #16151A;
  --charcoal-soft: #201E26;
  --charcoal-line: #322E38;

  /* light mode surfaces */
  --cream:      #FAF7F6;
  --cream-soft: #F1ECEA;
  --ink:        #201C22;

  /* type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* live theme values — light mode default */
  --bg:        var(--cream);
  --bg-soft:   var(--cream-soft);
  --surface:   #ffffff;
  --text:      var(--ink);
  --text-soft: #5C5560;
  --line:      #E4DEDC;
  --accent:    var(--pink);
  --accent-soft: var(--pink-pale);

  --radius: 4px;
  --container: 1180px;
}

[data-theme="dark"]{
  --bg:        var(--charcoal);
  --bg-soft:   var(--charcoal-soft);
  --surface:   var(--charcoal-soft);
  --text:      #F3F0F1;
  --text-soft: #B6AFB8;
  --line:      var(--charcoal-line);
  --accent:    var(--pink-light);
  --accent-soft: #3A2430;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html{ scroll-behavior: auto; }
}

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff;
  padding: .75rem 1.25rem; z-index: 999;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

.eyebrow{
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.text-accent{ color: var(--accent); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--accent);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover{ background: var(--pink-dark); }
[data-theme="dark"] .btn-primary:hover{ background: var(--pink); }
.btn-outline{
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover{ border-color: var(--accent); color: var(--accent); }
.btn-ghost{
  border-color: var(--line);
  color: var(--text-soft);
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent); }
.btn-lg{ padding: 1rem 2rem; font-size: 1rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.brand-mark{ width: 38px; height: 38px; }
.brand-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
}
.brand-name em{
  font-style: normal;
  color: var(--accent);
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}
.main-nav ul{
  display: flex;
  gap: 1.8rem;
}
.main-nav a{
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a:hover,
.main-nav a.active{ color: var(--text); }
.main-nav a.active::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

.nav-controls{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.theme-toggle{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}
.theme-toggle svg{ fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.theme-toggle .icon-moon{ display: none; }
[data-theme="dark"] .theme-toggle .icon-sun{ display: none; }
[data-theme="dark"] .theme-toggle .icon-moon{ display: block; }

.hamburger{
  display: none;
  width: 38px; height: 38px;
  border: none; background: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span{
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}
.hero-facets{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.facet{
  position: absolute;
  background: var(--accent-soft);
  opacity: .6;
}
.facet-1{
  width: 340px; height: 340px;
  top: -120px; right: 12%;
  clip-path: polygon(50% 0, 100% 30%, 82% 100%, 10% 82%);
}
.facet-2{
  width: 180px; height: 180px;
  bottom: -60px; left: 4%;
  clip-path: polygon(30% 0, 100% 15%, 70% 100%, 0 85%);
  background: var(--accent);
  opacity: .08;
}
.facet-3{
  width: 90px; height: 90px;
  top: 40%; left: 42%;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: var(--accent);
  opacity: .1;
}
.hero-inner{ position: relative; z-index: 1; }
.hero h1{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 1.4rem;
}
.hero-lead{
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-meta{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-meta li{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.hero-meta .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-pane{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pane-mark{
  width: min(320px, 80%);
  filter: drop-shadow(0 30px 60px rgba(184, 50, 110, 0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero{
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.5rem;
  overflow: hidden;
}
.page-hero-facet{
  position: absolute;
  background: var(--accent);
  pointer-events: none;
}
.facet-a{
  width: 260px; height: 260px;
  top: -100px; right: 6%;
  opacity: .08;
  clip-path: polygon(50% 0, 100% 30%, 82% 100%, 10% 82%);
}
.facet-b{
  width: 120px; height: 120px;
  bottom: -30px; left: 2%;
  opacity: .1;
  clip-path: polygon(30% 0, 100% 15%, 70% 100%, 0 85%);
}
.page-hero-inner{ position: relative; z-index: 1; max-width: 640px; }
.page-hero h1{ font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.page-hero-lead{ color: var(--text-soft); font-size: 1.05rem; max-width: 52ch; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.contact-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.contact-form-wrap{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-wrap h2{ font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-form-lead{ color: var(--text-soft); font-size: 0.92rem; margin-bottom: 2rem; }

.contact-form{ display: flex; flex-direction: column; gap: 1.4rem; }
.form-row{ display: flex; flex-direction: column; gap: 0.5rem; }
.form-row-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-row-split > div{ display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form label{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: var(--accent);
  outline: none;
}
.contact-form textarea{ resize: vertical; min-height: 120px; }
.form-note{
  font-size: 0.88rem;
  color: var(--accent);
  min-height: 1.2em;
}

.contact-details{ display: flex; flex-direction: column; gap: 1.25rem; }
.detail-card{
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.detail-card h3{ font-size: 1rem; margin-bottom: 0.6rem; }
.detail-card p{ font-size: 0.9rem; color: var(--text-soft); }
.detail-card a{ color: var(--text); font-weight: 600; }
.detail-card a:hover{ color: var(--accent); }
.detail-note{
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.8;
}

.map-wrap{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}
.map-wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15);
}

/* =========================================================
   SERVICE DETAIL ROWS (services page)
   ========================================================= */
.service-detail-list{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.service-detail{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.service-detail.reverse .service-detail-visual{ order: 2; }
.service-detail.reverse .service-detail-copy{ order: 1; }

.service-detail-visual{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}
.facet-shape{
  position: relative;
  width: 200px;
  height: 200px;
  background: var(--accent-soft);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.facet-shape::before{
  content: '';
  position: absolute;
  inset: 14px;
  background: var(--bg);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.facet-shape span{
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--accent);
}

.service-detail-copy .eyebrow{ margin-bottom: 0.5rem; }
.service-detail-copy h3{ font-size: 1.5rem; margin-bottom: 0.9rem; }
.service-detail-copy > p{ color: var(--text-soft); margin-bottom: 1.3rem; max-width: 52ch; }
.check-list{ display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.check-list li::before{
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

@media (max-width: 720px){
  .service-detail,
  .service-detail.reverse{
    grid-template-columns: 1fr;
  }
  .service-detail.reverse .service-detail-visual,
  .service-detail.reverse .service-detail-copy,
  .service-detail .service-detail-visual,
  .service-detail .service-detail-copy{
    order: initial;
  }
  .service-detail-visual{ min-height: 160px; }
  .facet-shape{ width: 150px; height: 150px; }
  .facet-shape span{ font-size: 1.9rem; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
}
.gallery-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn{
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.filter-btn:hover{ border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.gallery-item{
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.gallery-item:hover{ transform: translateY(-3px); border-color: var(--accent); }
.gallery-item.is-hidden{ display: none; }

.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder tile shown until a real photo is dropped in */
.gallery-placeholder{
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1rem;
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, transparent 55%),
    var(--bg-soft);
}
.gallery-placeholder .facet-mini{
  width: 46px; height: 46px;
  background: var(--accent);
  opacity: .35;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.gallery-placeholder span{
  font-size: 0.8rem;
  color: var(--text-soft);
  max-width: 18ch;
}

.gallery-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-item:hover .gallery-caption{ opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox-content{
  max-width: 900px;
  width: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox-media{
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}
.lightbox-media img{ width: 100%; height: 100%; object-fit: cover; }
.lightbox-caption{
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.lightbox-close{
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}
.lightbox-close:hover{ border-color: var(--pink-light); color: var(--pink-light); }

@media (max-width: 980px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-filters{ gap: 0.5rem; }
  .filter-btn{ padding: 0.5rem 0.9rem; font-size: 0.85rem; }
}

/* =========================================================
   WHATSAPP WIDGET
   ========================================================= */
.wa-widget{
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
}

.wa-fab{
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform .15s ease;
  flex-shrink: 0;
}
.wa-fab:hover{ transform: scale(1.06); }
.wa-fab svg{ width: 30px; height: 30px; fill: #fff; }

.wa-panel{
  width: 300px;
  max-width: calc(100vw - 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .18s ease, opacity .18s ease;
}
.wa-panel.is-open{
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wa-panel-header{
  background: #25D366;
  color: #fff;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.wa-panel-header img{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
.wa-panel-header-text{ flex: 1; }
.wa-panel-header-text strong{ display: block; font-size: 0.92rem; }
.wa-panel-header-text span{ font-size: 0.78rem; opacity: 0.9; }
.wa-panel-close{
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.2rem;
  opacity: 0.85;
}
.wa-panel-close:hover{ opacity: 1; }

.wa-panel-body{
  padding: 1rem;
}
.wa-bubble{
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.wa-panel-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  margin: 0 1rem 1rem;
}
.wa-panel-cta:hover{ background: #1EBE58; }
.wa-panel-cta svg{ width: 18px; height: 18px; fill: #fff; }

@media (max-width: 460px){
  .wa-widget{ right: 1rem; bottom: 1rem; }
  .wa-fab{ width: 52px; height: 52px; }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item{
  font-size: 0.9rem;
  color: var(--text-soft);
}
.trust-item a{ color: var(--text); font-weight: 600; }
.trust-item a:hover{ color: var(--accent); }
.trust-divider{
  width: 1px; height: 16px;
  background: var(--line);
}
.trust-badge img{ display: block; }

/* =========================================================
   SERVICES
   ========================================================= */
.services{
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head h2{ font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.2rem 1.6rem 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover{
  border-color: var(--accent);
  transform: translateY(-4px);
}
.card-facet{
  position: absolute;
  top: 0; right: 0;
  width: 46px; height: 46px;
  background: var(--accent);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.service-card h3{
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.service-card p{
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* =========================================================
   ABOUT / SPLIT
   ========================================================= */
.about-split{
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-copy h2{ font-size: clamp(1.8rem, 3.5vw, 2.3rem); margin-bottom: 1.2rem; }
.about-copy > p{ color: var(--text-soft); margin-bottom: 2rem; max-width: 48ch; }

.about-list{ display: flex; flex-direction: column; gap: 1.6rem; }
.about-list li{ display: flex; gap: 1.1rem; align-items: flex-start; }
.about-list .num{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  padding-top: 0.15rem;
}
.about-list h4{ font-size: 1rem; margin-bottom: 0.25rem; }
.about-list p{ font-size: 0.9rem; color: var(--text-soft); }

.about-visual{ display: flex; justify-content: center; align-items: center; height: 100%; min-height: 280px; }
.glass-stack{ position: relative; width: 260px; height: 260px; }
.pane{
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 2px;
}
.pane-a{ width: 200px; height: 200px; top: 0; left: 0; background: var(--accent-soft); opacity: .9; }
.pane-b{ width: 200px; height: 200px; top: 30px; left: 40px; background: var(--bg); opacity: .95; }
.pane-c{ width: 200px; height: 200px; top: 60px; left: 80px; background: var(--accent); opacity: .12; }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip{
  background: var(--charcoal);
  color: #F3F0F1;
}
.cta-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2{ font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.6rem; max-width: 22ch; }
.cta-text p{ color: #B6AFB8; }
.cta-actions{ display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-strip .btn-outline{ border-color: #4A454E; color: #F3F0F1; }
.cta-strip .btn-outline:hover{ border-color: var(--pink-light); color: var(--pink-light); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand p{ color: var(--text-soft); font-size: 0.9rem; margin-top: 0.8rem; max-width: 30ch; }
.footer-nav h5, .footer-contact h5{
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.footer-nav ul{ display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a{ font-size: 0.92rem; color: var(--text-soft); }
.footer-nav a:hover{ color: var(--accent); }
.footer-contact p{ font-size: 0.92rem; color: var(--text-soft); margin-bottom: 0.6rem; }
.footer-contact a:hover{ color: var(--accent); }
.footer-bottom{
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.2rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; text-align: left; padding-top: 3rem; }
  .hero-pane{ order: -1; margin-bottom: 1rem; }
  .pane-mark{ width: 180px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-split{ grid-template-columns: 1fr; }
  .about-visual{ order: -1; min-height: 200px; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 720px){
  .main-nav{
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .main-nav.is-open{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav ul{
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul li{ border-bottom: 1px solid var(--line); }
  .main-nav ul li:last-child{ border-bottom: none; }
  .main-nav a{ display: block; padding: 0.9rem 0; }
  .main-nav a.active::after{ display: none; }
  .nav-phone{ margin-top: 1rem; align-self: flex-start; }
  .hamburger{ display: flex; }

  .services-grid{ grid-template-columns: 1fr; }
  .cta-inner{ flex-direction: column; align-items: flex-start; }
  .trust-inner{ flex-direction: column; gap: 0.5rem; }
  .trust-divider{ display: none; }

  .contact-grid{ grid-template-columns: 1fr; }
  .contact-form-wrap{ padding: 1.75rem; }
  .form-row-split{ grid-template-columns: 1fr; gap: 1.4rem; }
  .map-wrap{ height: 280px; }
}

@media (max-width: 460px){
  .hero{ padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-actions .btn{ width: 100%; }
  .hero-actions{ flex-direction: column; }
}