/* ============================================
   ADESSO STUDIO — Design & Build
   Warm minimal palette drawn from brand profile
   ============================================ */

:root {
  --cream: #E6E6E6;        /* faint accents / big numbers  */
  --cream-light: #F4F4F4;  /* alternate section background */
  --paper: #FFFFFF;        /* main background              */
  --white: #FFFFFF;
  --ink: #1E1E1E;          /* primary                      */
  --brown: #1E1E1E;        /* primary / headings           */
  --brown-soft: #1E1E1E;   /* body text                    */
  --tan: #8C8C8C;          /* accent (mid grey)            */
  --tan-dark: #5F5F5F;
  --line: #E3E3E3;
  --shadow: 0 18px 45px rgba(30, 30, 30, .10);
  --serif: "New Baskerville ITC Pro", "ITC New Baskerville", "Libre Baskerville", Baskerville, Georgia, serif;
  --sans: "Century Gothic", "CenturyGothic", "Questrial", "Didact Gothic", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--brown-soft);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s ease; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 14px;
}
h1, h2, h3, h4 { color: var(--brown); font-weight: 600; line-height: 1.2; font-family: var(--serif); }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head p.lead { margin-top: 18px; }
.serif { font-family: var(--serif); }

section { padding: 90px 0; }
.bg-cream { background: var(--cream-light); }
.bg-dark  { background: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-dark  { background: var(--brown); color: #fff; }
.btn-dark:hover { background: var(--tan); color: #fff; }
.btn-tan   { background: #fff; color: var(--ink); }
.btn-tan:hover { background: var(--ink); color: #fff; border-color: #fff; }
.btn-light { background: #fff; color: var(--brown); }
.btn-light:hover { background: var(--tan); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--brown); }

/* ---------- top bar ---------- */
.topbar { background: var(--brown); color: rgba(255,255,255,.85); font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; }
.topbar-info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.topbar-social a:hover { background: var(--tan); }

/* ---------- header / nav ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 86px; }
.brand img { height: 52px; width: auto; }
nav.main-nav ul { display: flex; gap: 34px; }
nav.main-nav a {
  font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--brown);
  padding: 8px 0; position: relative;
}
nav.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--tan); transition: width .3s ease;
}
nav.main-nav a:hover::after, nav.main-nav a.active::after { width: 100%; }
nav.main-nav a.active { color: var(--tan-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--brown); cursor: pointer; }

/* ---------- hero (home) ---------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-size: cover; background-position: center;
  padding: 120px 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,25,20,.55), rgba(30,25,20,.45));
}
.hero .container { position: relative; z-index: 2; }
.hero .ghost {
  position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%);
  font-size: clamp(70px, 14vw, 190px);
  letter-spacing: .08em; font-weight: 700; color: rgba(255,255,255,.08);
  text-transform: uppercase; white-space: nowrap; pointer-events: none;
}
.hero h1 {
  color: #fff; font-size: clamp(34px, 5.5vw, 62px);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 700;
  position: relative;
}
.hero p.sub {
  color: rgba(255,255,255,.85); max-width: 620px; margin: 24px auto 38px;
}
.hero-actions { display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ---------- hero carousel ---------- */
.carousel { position: relative; height: 86vh; min-height: 540px; overflow: hidden; background: var(--ink); }
.carousel .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; z-index: 1;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.carousel .slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,.45), rgba(20,20,20,.5));
}
.carousel .slide.on { opacity: 1; z-index: 2; }
.carousel .slide-inner { position: relative; z-index: 3; width: min(1180px, 92%); }
.carousel .style-eyebrow {
  font-size: 12px; letter-spacing: .38em; text-transform: uppercase;
  color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 16px;
}
.carousel h2.style-title {
  color: #fff; font-size: clamp(38px, 6vw, 72px);
  letter-spacing: .04em; line-height: 1.1; font-weight: 700;
}
.carousel .style-sub { color: rgba(255,255,255,.85); max-width: 560px; margin: 20px auto 32px; }
.carousel .slide-inner .btn { margin: 0 8px; }
.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease;
}
.car-arrow:hover { background: #fff; color: var(--ink); }
.car-arrow.prev { left: 26px; }
.car-arrow.next { right: 26px; }
.car-dots { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 5; display: flex; gap: 10px; justify-content: center; }
.car-dots button {
  width: 34px; height: 4px; border: none; cursor: pointer;
  background: rgba(255,255,255,.35); transition: background .3s ease;
}
.car-dots button.on { background: #fff; }

/* ---------- home photo gallery ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.photo-grid .p-item { position: relative; overflow: hidden; display: block; aspect-ratio: 1/1; }
.photo-grid .p-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid .p-item:nth-child(1), .photo-grid .p-item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }

/* ---------- two-line tagline ---------- */
.tl2 { font-size: clamp(20px, 3.1vw, 42px); }
.tl2 span { white-space: nowrap; }

/* ---------- consult chooser ---------- */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.choice-card {
  background: #fff; box-shadow: 0 8px 30px rgba(30,30,30,.07);
  border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.choice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.choice-card .ph { overflow: hidden; aspect-ratio: 16/9; }
.choice-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.choice-card:hover .ph img { transform: scale(1.05); }
.choice-card .body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.choice-card h3 { font-size: 22px; margin-bottom: 12px; }
.choice-card p { font-size: 14.5px; margin-bottom: 22px; flex: 1; }
.btn-wa {
  background: #25D366; color: #fff; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-wa i { font-size: 17px; }
.btn-wa:hover { background: #1DA851; color: #fff; }

/* ---------- project work cards ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.work-grid.cols-all { grid-template-columns: repeat(2, 1fr); gap: 30px; }
.work-card {
  display: block; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(30,30,30,.06); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work-card .ph { aspect-ratio: 4/3; overflow: hidden; }
.work-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work-card:hover .ph img { transform: scale(1.05); }
.work-card .info { padding: 20px 22px 24px; }
.work-card .info .cat { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--tan-dark); font-weight: 700; }
.work-card .info h3 { font-size: 18px; margin: 6px 0 8px; line-height: 1.35; }
.work-card .meta { font-size: 13px; color: var(--tan-dark); display: flex; flex-wrap: wrap; gap: 6px 14px; }
.work-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.proj-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.proj-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 8px 26px rgba(30,30,30,.1); }
@media (max-width: 980px) {
  .work-grid, .work-grid.cols-all { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- accreditation strip ---------- */
.accred { border-top: 1px solid var(--line); }
.accred-row { display: flex; align-items: stretch; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 46px; }
.accred-badge {
  border: 1px solid var(--line); background: #fff;
  padding: 26px 38px; text-align: center; min-width: 230px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.accred-badge .acr { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--ink); letter-spacing: .12em; }
.accred-badge .full { font-size: 12px; color: var(--tan-dark); letter-spacing: .04em; }
.accred-badge img { height: 64px; width: auto; margin: 0 auto; object-fit: contain; }

/* ---------- floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 22px 14px 16px; border-radius: 50px;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float i { font-size: 24px; }
.wa-float:hover { transform: scale(1.07); box-shadow: 0 14px 34px rgba(37, 211, 102, .6); animation: none; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px 16px; }
}

/* ---------- feature cards over hero ---------- */
.feature-cards { margin-top: -80px; position: relative; z-index: 5; padding: 0 0 90px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.f-card {
  background: #fff; text-align: center; padding: 56px 30px 42px;
  box-shadow: var(--shadow); position: relative;
}
.f-card .icon {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--brown); color: var(--tan);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: -93px auto 26px; border: 6px solid var(--paper);
}
.f-card h3 { font-size: 19px; margin-bottom: 12px; }
.f-card p { font-size: 14.5px; }

/* ---------- split section (text + image) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split .img-stack { position: relative; }
.split .img-stack img { box-shadow: var(--shadow); }
.quote-card {
  position: absolute; left: -60px; bottom: -40px;
  background: #fff; padding: 24px 28px; max-width: 300px;
  box-shadow: var(--shadow); border-left: 3px solid var(--tan);
  font-size: 14px; font-style: italic; color: var(--brown-soft);
}
.quote-card strong { display: block; margin-top: 10px; font-style: normal; color: var(--brown); }
.signature { font-family: "Segoe Script", "Brush Script MT", cursive; font-size: 26px; color: var(--brown); margin: 22px 0 4px; }
.sig-role { font-size: 13px; letter-spacing: .1em; margin-bottom: 24px; color: var(--brown); font-weight: 600; }

/* ---------- services cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.s-card {
  background: #fff; padding: 40px 34px; box-shadow: 0 8px 30px rgba(43,33,24,.06);
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.s-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--ink); border-color: var(--ink); }
.s-card .icon { font-size: 30px; color: var(--tan); margin-bottom: 18px; }
.s-card h3 { font-size: 18px; margin-bottom: 12px; transition: color .3s ease; }
.s-card p { font-size: 14.5px; margin-bottom: 16px; transition: color .3s ease; }
.s-card .more { font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--brown); transition: color .3s ease; }
.s-card:hover h3 { color: #fff; }
.s-card:hover p { color: rgba(255,255,255,.8); }
.s-card:hover .more { color: var(--tan); }

/* ---------- projects ---------- */
.filter-bar { display: flex; gap: 8px; justify-content: center; margin: 34px 0 40px; flex-wrap: wrap; }
.filter-bar button {
  border: none; background: transparent; padding: 9px 20px;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 600; color: var(--brown-soft); cursor: pointer;
  transition: all .25s ease;
}
.filter-bar button.active, .filter-bar button:hover { background: var(--brown); color: #fff; }

.masonry { columns: 3; column-gap: 22px; }
.masonry .p-item { margin-bottom: 22px; break-inside: avoid; position: relative; overflow: hidden; }
.p-item img { transition: transform .6s ease; }
.p-item:hover img { transform: scale(1.06); }
.p-item .p-label {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,30,30,0) 35%, rgba(30,30,30,.88));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; opacity: 0; transition: opacity .6s ease, transform .6s ease;
}
.p-item:hover .p-label { opacity: 1; transform: scale(1.06); }
.p-label .cat { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.95); font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,.55); margin-bottom: 2px; }
.p-label .name { color: #fff; font-size: 19px; font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,.5); }

.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid .p-item { margin: 0; height: 520px; position: relative; overflow: hidden; display: block; }
.strip-grid .p-item img { width: 100%; height: 100%; object-fit: cover; }
.strip-grid .p-label { opacity: 1; background: linear-gradient(180deg, rgba(30,25,20,.45), rgba(30,25,20,.15) 45%, rgba(30,25,20,.55)); justify-content: flex-start; padding-top: 34px; text-align: center; align-items: center; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; background-size: cover; background-position: center;
  padding: 90px 0;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(35,28,22,.78); }
.cta-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); text-transform: uppercase; letter-spacing: .05em; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 520px; margin-top: 12px; }

/* ---------- stats ---------- */
.stats-card {
  background: #fff; box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 48px 20px; text-align: center; gap: 20px;
  position: relative; z-index: 5; margin-top: -70px;
}
.stat .icon { font-size: 28px; color: var(--tan); margin-bottom: 10px; }
.stat .num { font-size: 34px; font-weight: 700; color: var(--brown); }
.stat .num span { color: var(--tan); }
.stat .label { font-size: 13px; letter-spacing: .04em; }

/* ---------- process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 34px; margin-top: 56px; }
.step { text-align: center; position: relative; padding-top: 54px; }
.step .big-num {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 92px; font-weight: 700; color: var(--cream);
  line-height: 1; z-index: 0;
}
.step h3 { position: relative; z-index: 1; font-size: 19px; margin-bottom: 10px; }
.step p { position: relative; z-index: 1; font-size: 14.5px; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.t-card { background: #fff; border: 1px solid var(--line); padding: 36px 32px; box-shadow: 0 8px 30px rgba(43,33,24,.05); }
.t-card p.quote { font-style: italic; font-size: 14.5px; }
.t-card .who { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.t-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); color: var(--brown); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.t-card .who strong { display: block; color: var(--brown); font-size: 15px; }
.t-card .who span { font-size: 12.5px; }
.t-card .mark { margin-left: auto; font-size: 34px; color: var(--cream); font-family: var(--serif); }

/* ---------- page banner ---------- */
.page-banner {
  position: relative; min-height: 320px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  padding: 70px 0 48px;
}
.page-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,25,20,.5), rgba(30,25,20,.62)); }
.page-banner .container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 14px; }
.page-banner h1 { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: clamp(30px, 4.5vw, 44px); }
.crumbs { color: rgba(255,255,255,.8); font-size: 13px; }
.crumbs a:hover { color: var(--tan); }
.crumbs span { color: var(--tan); }

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-block h3 { font-size: 16px; margin: 26px 0 10px; letter-spacing: .04em; }
.contact-block li { display: flex; gap: 12px; align-items: baseline; font-size: 14.5px; padding: 5px 0; }
.contact-block li i { color: var(--tan); width: 18px; }
.contact-form { background: #fff; padding: 44px 40px; box-shadow: var(--shadow); }
.contact-form.on-dark { margin-top: -30px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); background: var(--paper);
  padding: 14px 16px; margin-bottom: 16px; font-family: var(--sans); font-size: 14px;
  color: var(--brown); outline: none; transition: border .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--tan); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.map-frame { width: 100%; height: 420px; border: 0; filter: grayscale(35%) sepia(8%); }

/* ---------- dark contact band (home) ---------- */
.dark-contact { background: var(--ink); }
.dark-contact .eyebrow { color: var(--tan); }
.dark-contact h2 { color: #fff; }
.dark-contact p, .dark-contact li { color: rgba(255,255,255,.75); }
.dark-contact h3 { color: #fff; }

/* ---------- project details ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.detail-grid .main-img { box-shadow: var(--shadow); }
.meta-list { border-top: 1px solid var(--line); margin: 26px 0; }
.meta-list li { display: flex; justify-content: space-between; padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.meta-list li .k { color: var(--brown); font-weight: 600; display: flex; gap: 10px; align-items: center; }
.meta-list li .k i { color: var(--tan); }
.gallery-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.gallery-3 img { box-shadow: 0 10px 28px rgba(43,33,24,.12); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- footer ---------- */
footer { background: var(--cream-light); border-top: 1px solid var(--line); padding-top: 70px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1.1fr; gap: 40px; padding-bottom: 50px; }
.foot-grid h4 { font-size: 15px; margin-bottom: 18px; letter-spacing: .06em; }
.foot-grid ul li { padding: 4px 0; font-size: 14px; }
.foot-grid a:hover { color: var(--tan-dark); }
.foot-brand img { height: 56px; margin-bottom: 18px; }
.foot-brand p { font-size: 14px; max-width: 280px; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brown); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}
.foot-social a:hover { background: var(--tan); }
.foot-projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.foot-projects img { aspect-ratio: 4/3; object-fit: cover; }
.foot-bottom { border-top: 1px solid var(--line); padding: 20px 0; }
.foot-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; }

/* ---------- misc ---------- */
.cols-2 { grid-template-columns: 1fr 1fr !important; }
@media (max-width: 640px) { .cols-2 { grid-template-columns: 1fr !important; } }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; }
.check-list li { padding: 6px 0; display: flex; gap: 12px; }
.check-list li i { color: var(--tan); margin-top: 6px; }

/* skill bars */
.skill { margin-bottom: 20px; }
.skill .row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--brown); font-weight: 600; margin-bottom: 8px; }
.skill .bar { height: 6px; background: var(--cream); }
.skill .bar span { display: block; height: 100%; background: var(--brown); }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.team-card { background: #fff; box-shadow: 0 8px 30px rgba(43,33,24,.07); text-align: center; padding-bottom: 26px; }
.team-card .ph { aspect-ratio: 1/1.05; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 54px; color: var(--tan); }
.team-card h3 { margin: 20px 0 4px; font-size: 18px; }
.team-card span { font-size: 13px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cards-3, .services-grid, .process-grid, .testi-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-wrap, .detail-grid, .two-col-text { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .quote-card { left: 10px; bottom: -30px; }
}
@media (max-width: 640px) {
  /* nav & header */
  nav.main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    display: none; padding: 6px 6% 14px;
    box-shadow: 0 18px 30px rgba(30,30,30,.08);
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 0; }
  nav.main-nav li { border-bottom: 1px solid var(--line); }
  nav.main-nav li:last-child { border-bottom: none; }
  nav.main-nav a { display: block; padding: 15px 2px; font-size: 13px; }
  nav.main-nav a::after { display: none; }
  .nav-toggle { display: block; padding: 6px 10px; }
  .nav-wrap { min-height: 66px; }
  .brand img { height: 40px; }
  .topbar { font-size: 12px; }
  .topbar-info span.hide-m { display: none; }
  .topbar-social a { width: 24px; height: 24px; font-size: 11px; }

  /* type & spacing */
  section { padding: 54px 0; }
  .section-title { font-size: 25px; letter-spacing: .04em; }
  .eyebrow { font-size: 10.5px; letter-spacing: .26em; }
  .btn { padding: 13px 24px; font-size: 11px; letter-spacing: .18em; }

  /* carousel */
  .carousel { height: 74vh; min-height: 470px; }
  .carousel h2.style-title { font-size: 36px; }
  .carousel .style-eyebrow { font-size: 10.5px; letter-spacing: .3em; }
  .carousel .style-sub { font-size: 14px; margin: 14px auto 24px; padding: 0 8px; }
  .carousel .slide-inner .btn { margin: 5px 4px; padding: 12px 18px; }
  .car-arrow { width: 38px; height: 38px; font-size: 13px; background: rgba(30,30,30,.25); }
  .car-arrow.prev { left: 12px; }
  .car-arrow.next { right: 12px; }
  .car-dots { bottom: 16px; }
  .car-dots button { width: 26px; height: 3px; }

  /* grids */
  .cards-3, .services-grid, .process-grid, .testi-grid, .team-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 40px; }
  .masonry { columns: 1; }
  .strip-grid { grid-template-columns: 1fr; }
  .f-card { margin-top: 40px; padding: 34px 24px 32px; }
  .feature-cards { margin-top: -40px; }
  .gallery-3 { grid-template-columns: 1fr; }
  .filter-bar { gap: 6px; margin: 26px 0 30px; }
  .filter-bar button { padding: 8px 14px; font-size: 10.5px; letter-spacing: .16em; }

  /* stats: compact 2x2 */
  .stats-card { grid-template-columns: repeat(2, 1fr); padding: 30px 12px; gap: 24px 10px; margin-top: -56px; }
  .stat .icon { font-size: 22px; margin-bottom: 6px; }
  .stat .num { font-size: 26px; }
  .stat .label { font-size: 11.5px; line-height: 1.4; }

  /* CTA bands centered */
  .cta-band { padding: 64px 0; }
  .cta-band .container { justify-content: center; text-align: center; }
  .cta-band p { margin-left: auto; margin-right: auto; font-size: 14.5px; }

  /* split / quote card: stack instead of overlap */
  .quote-card { position: static; margin: 16px 0 0; max-width: none; }
  .split { gap: 34px; }

  /* page banners */
  .page-banner { min-height: 230px; padding: 46px 0 30px; }
  .page-banner h1 { font-size: 27px; }

  /* project cards: photo then details, stacked (client mobile layout) */
  .work-grid, .work-grid.cols-all { grid-template-columns: 1fr; gap: 26px; margin-top: 38px; }
  .work-card .info { padding: 18px 18px 22px; }
  .proj-gallery { grid-template-columns: 1fr; }

  /* consult chooser */
  .choice-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .choice-card .body { padding: 24px 22px 26px; }
  .btn-wa { align-self: stretch; justify-content: center; }

  /* accreditations */
  .accred-badge { min-width: 0; width: 100%; padding: 22px 20px; }
  .accred-row { gap: 14px; }

  /* contact & footer */
  .contact-form { padding: 28px 20px; }
  .map-frame { height: 300px; }
  footer { padding-top: 52px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 36px; }
  .foot-brand img { height: 46px; }
  .foot-projects { max-width: 320px; }
  .foot-bottom .container { justify-content: center; text-align: center; }
}

/* ---------- scroll reveal (added via JS, safe without it) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
}
