/* =====================================================================
   FORMA — Interior & Architecture Design Studio
   Premium Multi-Page Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Change the look by editing the CSS variables in :root
   below. Swap --accent for your primary color, adjust the neutrals to
   match, and update --font-head / --font-body plus the Google Fonts
   <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #efe9e1;   /* warm sand — page background        */
  --ink:       #1c1a17;   /* near-black — headings & strong text */
  --accent:    #b5642f;   /* terracotta — primary accent        */
  --accent-dk: #934e22;   /* deeper terracotta for hovers       */
  --muted:     #6b655c;   /* muted taupe — secondary text       */
  --surface:   #faf7f2;   /* soft off-white — cards / surfaces  */
  --line:      #ddd4c7;   /* hairline rules / borders           */
  --white:     #ffffff;

  /* --- Fonts --- */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 14px 40px rgba(28, 26, 23, .07);
  --shadow-lg: 0 30px 70px rgba(28, 26, 23, .12);
  --ease:      .4s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1200px;
  --gutter: 28px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .4em;
  font-weight: 600;
  letter-spacing: .002em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; }
h3 { font-size: 1.55rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-dk); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 110px 0; }
.section--soft { background: var(--surface); }
.section--tight { padding: 72px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }

.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.7; }

.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dk); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 233, 225, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
  letter-spacing: .04em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 10px; }
.nav-cta a::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 480px at 92% 0%, rgba(181,100,47,.10), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 96px 0 104px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 span { color: var(--accent); font-style: italic; }
.hero .lead { max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .82rem; letter-spacing: .04em; color: var(--muted); }

/* Hero visual — pure CSS interior composition (no image files) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hv-scene {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #d8cbb8 0%, #c9b8a0 46%, #b89c7d 46%, #a98a68 100%);
}
/* archway window */
.hv-arch {
  position: absolute;
  top: 11%; left: 50%; transform: translateX(-50%);
  width: 46%; height: 58%;
  background: linear-gradient(180deg, #f3e6cf, #e7d3b3);
  border-radius: 50% 50% 0 0 / 38% 38% 0 0;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.35), var(--shadow);
}
.hv-arch::after {
  content: "";
  position: absolute; left: 50%; top: 8%;
  width: 1.5px; height: 84%;
  background: rgba(28,26,23,.18);
  transform: translateX(-50%);
}
/* terracotta vase */
.hv-vase {
  position: absolute;
  bottom: 8%; left: 22%;
  width: 16%; aspect-ratio: 2 / 3;
  background: linear-gradient(150deg, var(--accent), var(--accent-dk));
  border-radius: 46% 46% 40% 40% / 30% 30% 60% 60%;
  box-shadow: var(--shadow);
}
.hv-vase::before {
  content: "🌿";
  position: absolute; top: -34%; left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
}
/* low console line */
.hv-floor {
  position: absolute;
  bottom: 6%; right: 14%;
  width: 42%; height: 5%;
  background: var(--ink);
  border-radius: 3px;
  opacity: .85;
}
.hero-badge {
  position: absolute;
  bottom: 22px; right: 22px;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(6px);
  padding: 16px 22px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.hero-badge strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-badge span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------------------
   STATS STRIP
   --------------------------------------------------------------------- */
.stats-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip .stat-item {
  text-align: center;
  padding: 46px 18px;
  border-right: 1px solid var(--line);
}
.stats-strip .stat-item:last-child { border-right: none; }
.stats-strip .stat-item strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--ink);
  display: block;
  line-height: 1;
}
.stats-strip .stat-item span {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  display: block;
}

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.card .icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  font-size: 1.9rem;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(5px); }

/* Feature list */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 6px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(155deg, #c9b8a0 0%, #a98a68 60%, #8a6d4d 100%);
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 300px at 78% 22%, rgba(181,100,47,.4), transparent 62%);
}
.split-media .sm-inner {
  position: relative; z-index: 1; text-align: center;
}
.split-media .sm-inner .sm-emoji { font-size: 3.2rem; margin-bottom: 10px; }
.split-media .sm-inner strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; }
.split-media .sm-inner p { color: rgba(255,255,255,.85); margin: 8px 0 0; }

/* ---------------------------------------------------------------------
   FEATURED PROJECTS GRID  (home + projects page)
   --------------------------------------------------------------------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: #fff; }
.project-thumb {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 3.4rem;
  transition: transform var(--ease);
}
.project-card:hover .project-thumb { transform: scale(1.06); }
/* gradient variations */
.pt-1 { background: linear-gradient(155deg, #c9b8a0, #8a6d4d); }
.pt-2 { background: linear-gradient(155deg, #b5642f, #7d4220); }
.pt-3 { background: linear-gradient(155deg, #4f5a52, #2e3631); }
.pt-4 { background: linear-gradient(155deg, #d8cbb8, #b89c7d); }
.pt-5 { background: linear-gradient(155deg, #8a8079, #514a44); }
.pt-6 { background: linear-gradient(155deg, #c98f5f, #93582f); }
.pt-7 { background: linear-gradient(155deg, #a8b0a3, #6b7568); }
.pt-8 { background: linear-gradient(155deg, #cdbfa9, #9c8460); }
.pt-9 { background: linear-gradient(155deg, #9c6b4a, #5e3c26); }
.project-card .project-meta {
  position: absolute; inset: auto 0 0 0;
  padding: 56px 26px 26px;
  background: linear-gradient(180deg, transparent, rgba(28,26,23,.78));
}
.project-card .project-cat {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.project-card .project-meta h3 {
  color: #fff; margin: 6px 0 2px; font-size: 1.5rem; font-weight: 600;
}
.project-card .project-loc { font-size: .86rem; color: rgba(255,255,255,.78); }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
}
.filter-bar button {
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  padding: 11px 22px;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-bar button:hover { border-color: var(--ink); color: var(--ink); }
.filter-bar button.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------------------------------------------------------------------
   STATS BAND (dark)
   --------------------------------------------------------------------- */
.stats-band {
  background: var(--ink);
  color: #fff;
}
.stats-band .section-head h2 { color: #fff; }
.stats-band .section-head p { color: rgba(255,255,255,.72); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  display: block;
  line-height: 1;
  color: var(--accent);
}
.stat span { color: rgba(255,255,255,.72); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------------------------------------------------------------------
   PROCESS STEPS
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step {
  position: relative;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.step .num {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { margin-bottom: 0; font-size: .96rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 38px;
}
.quote-card .stars { color: var(--accent); margin-bottom: 18px; letter-spacing: 3px; }
.quote-card blockquote {
  margin: 0 0 26px;
  font-size: 1.35rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
}
.quote-author { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
}
.quote-author b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); }
.quote-author span { font-size: .85rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px 380px at 88% 12%, rgba(181,100,47,.35), transparent 62%),
    var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 80px 56px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(620px 360px at 88% -10%, rgba(181,100,47,.10), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg));
  padding: 84px 0 76px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 16px; }
.page-banner p { max-width: 640px; color: var(--muted); margin-bottom: 0; font-size: 1.1rem; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

/* ---------------------------------------------------------------------
   SERVICES PAGE — detailed blocks
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 1px solid var(--line); }
.service-block .s-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 2rem;
}
.service-block h3 { margin-bottom: 10px; }
.service-block > div > p { font-size: 1rem; }
.deliverables {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.deliverables li {
  font-size: .76rem;
  letter-spacing: .06em;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 7px 15px;
  border-radius: 999px;
}

/* Packages */
.package {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.package:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package.featured { border-color: var(--accent); border-width: 1.5px; box-shadow: var(--shadow); }
.package .pkg-name { font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); margin-bottom: 4px; }
.package .pkg-tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.package .pkg-price {
  font-family: var(--font-head); font-weight: 600; font-size: 2.6rem; color: var(--ink);
  margin: 20px 0 4px; line-height: 1;
}
.package .pkg-price small { font-family: var(--font-body); font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.package ul.pkg-list { margin: 22px 0 28px; }
.package ul.pkg-list li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: .96rem;
  border-bottom: 1px solid var(--line);
}
.package ul.pkg-list li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--accent);
}
.package .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.faq-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: flex; gap: 16px; align-items: baseline;
}
.faq-item h3 .q { color: var(--accent); font-size: 1.1rem; }
.faq-item p { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   ABOUT — values + team
   --------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2.2rem;
  color: #fff;
}
.tp-1 { background: linear-gradient(135deg, var(--accent), var(--accent-dk)); }
.tp-2 { background: linear-gradient(135deg, #8a6d4d, #5e4631); }
.tp-3 { background: linear-gradient(135deg, #4f5a52, #2e3631); }
.tp-4 { background: linear-gradient(135deg, #b89c7d, #8a704f); }
.team-card h3 { font-size: 1.4rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-family: var(--font-body); font-weight: 500; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
.form-card h2 { font-size: 2rem; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181,100,47,.14);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .error-msg { color: #b3261e; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: #edf5ee;
  border: 1px solid #b7d8bd;
  color: #2f6b3a;
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 50%; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
}
.info-row b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); display: block; }
.info-row span { font-size: .94rem; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 260px;
  background:
    linear-gradient(rgba(181,100,47,.05), rgba(181,100,47,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 46px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.6rem; }
.map-placeholder b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.site-footer .brand:hover { color: #fff; }
.site-footer .brand .logo-mark { border-color: rgba(255,255,255,.5); }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.62); max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  color: #fff; font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a { display: block; color: rgba(255,255,255,.64); padding: 6px 0; font-size: .94rem; }
.footer-col a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
}
.social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { max-width: 420px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 84px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 16px var(--gutter) 24px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 4px; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; gap: 18px; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; }
  .stats-strip .stat-item:nth-child(2) { border-right: none; }
  .stats-strip .stat-item:nth-child(1), .stats-strip .stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cta-band { padding: 56px 30px; }
}

@media (max-width: 360px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: 1fr; }
  .stats-strip .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 28px; }
}
