:root {
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Fraunces', serif;
  --brand-bg: #FDFCF9;
  --brand-bg2: #F5F2EC;
  --brand-bg3: #EDE8DF;
  --brand-primary: #1A3328;
  --brand-primary-2: #244836;
  --brand-primary-3: #2E5C44;
  --brand-accent: #C4B49A;
  --brand-accent-2: #E2D8CB;
  --brand-text: #1C1B18;
  --brand-text-2: #4A4843;
  --brand-text-3: #8A8780;
  --bg: var(--brand-bg);
  --bg2: var(--brand-bg2);
  --bg3: var(--brand-bg3);
  --forest: var(--brand-primary);
  --forest2: var(--brand-primary-2);
  --forest3: var(--brand-primary-3);
  --sand: var(--brand-accent);
  --sand2: var(--brand-accent-2);
  --text: var(--brand-text);
  --text2: var(--brand-text-2);
  --text3: var(--brand-text-3);
  --border: rgba(28,27,24,0.09);
  --border2: rgba(28,27,24,0.16);
  --shadow-sm: 0 2px 16px rgba(28,27,24,0.06);
  --shadow-md: 0 8px 40px rgba(28,27,24,0.10);
  --shadow-lg: 0 20px 60px rgba(28,27,24,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  background: rgba(253,252,249,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.up { box-shadow: var(--shadow-sm); }

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400;
  color: var(--forest); text-decoration: none;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.05;
}
.logo-text strong {
  font: inherit;
  color: inherit;
}
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
}
.logo-leaf,
.foot-logo-leaf {
  width: 26px; height: 26px;
  background: var(--forest);
  border-radius: 50% 50% 50% 4px;
  flex-shrink: 0;
}
.logo-image {
  max-height: 42px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500; color: var(--text2);
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-pill {
  background: var(--forest) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  transition: background 0.2s !important;
}
.nav-pill:hover { background: var(--forest2) !important; }

.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 3.5rem;
  background: var(--bg);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest3);
  margin-bottom: 2rem;
  opacity: 0; animation: rise 0.8s 0.2s ease forwards;
}
.hero-eyebrow-line { width: 32px; height: 1.5px; background: var(--forest3); }
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5.5vw, 6.5rem);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0; animation: rise 0.9s 0.35s ease forwards;
  white-space: pre-line;
}
h1.hero-title em { font-style: italic; color: var(--forest); }
.hero-body {
  font-size: 1rem; font-weight: 300; color: var(--text2);
  line-height: 1.8; max-width: 400px;
  margin-top: 1.75rem;
  opacity: 0; animation: rise 0.9s 0.5s ease forwards;
}
.hero-btns {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0; animation: rise 0.9s 0.65s ease forwards;
}
.btn-fill {
  background: var(--forest);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-fill:hover { background: var(--forest2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,51,40,0.22); }
.btn-text {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text2); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.btn-text:hover { color: var(--forest); gap: 12px; }
.hero-numbers {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  opacity: 0; animation: rise 0.9s 0.8s ease forwards;
}
.h-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 400;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--text);
}
.h-num sup { font-size: 1.2rem; color: var(--forest); vertical-align: super; }
.h-lbl {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text3); margin-top: 6px;
}
.hero-right {
  position: relative; overflow: hidden;
  opacity: 0; animation: fadeIn 1.2s 0.3s ease forwards;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=900&q=85') center/cover;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,51,40,0.15) 0%, transparent 60%);
}
.hero-card {
  position: absolute; bottom: 3rem; left: -28px;
  background: var(--bg);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  max-width: 280px;
}
.hero-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.hero-card p { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.hero-card span { font-size: 0.72rem; color: var(--text3); }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.clients-band {
  background: var(--forest);
  padding: 1.75rem 0;
  overflow: hidden;
}
.marquee { display: flex; overflow: hidden; }
.marquee-inner {
  display: flex; gap: 0;
  animation: scroll 28s linear infinite;
}
.c-item {
  padding: 0 3rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
  min-height: 34px;
}
.c-item:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
.c-item span {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.c-item:hover span { color: rgba(255,255,255,0.9); }
.c-logo {
  max-height: 24px;
  width: auto;
  opacity: 0.72;
  filter: brightness(0) invert(1);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section { padding: 8rem 3.5rem; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest3); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--forest3); }
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--text);
}
h2.section-title em { font-style: italic; color: var(--forest); }
.section-desc {
  font-size: 1rem; font-weight: 300; color: var(--text2);
  max-width: 460px; line-height: 1.8; margin-top: 1rem;
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: none; }

#services { background: var(--bg); }
.svc-head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 2rem; margin-bottom: 4rem;
}
.filter-wrap { display: flex; gap: 6px; flex-wrap: wrap; }
.fp {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text2); background: transparent;
  border: 1.5px solid var(--border2);
  padding: 0.45rem 1.1rem; border-radius: 100px;
  cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.fp.on, .fp:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer; position: relative; overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--forest);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}
.svc-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-4deg); }
.ic-g { background: #E8F0EC; }
.ic-s { background: var(--bg2); }
.ic-w { background: #F0EBF5; }
.svc-badge {
  display: inline-block; width: fit-content;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 100px;
  padding: 0.22rem 0.7rem; margin-bottom: 0.6rem;
}
.b-pop { background: #E8F0EC; color: var(--forest2); }
.b-pre { background: #FBF4E8; color: #7A5A1A; }
.b-new { background: #EBF5FB; color: #1A4A6A; }
.svc-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300;
  line-height: 1.2; color: var(--text);
  margin-bottom: 0.7rem;
}
.svc-desc {
  font-size: 0.85rem; font-weight: 300; color: var(--text2);
  line-height: 1.75; flex: 1;
}
.svc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.svc-price {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400; color: var(--text);
}
.svc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text2);
  transition: all 0.2s;
}
.svc-card:hover .svc-btn { background: var(--forest); border-color: var(--forest); color: #fff; }

#portfolio { background: var(--bg2); }
.port-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem;
}
.link-arrow {
  font-size: 0.85rem; font-weight: 500; color: var(--forest);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 14px; }
.port-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 220px;
  gap: 12px;
}
.pm:nth-child(1) { grid-column: 1/6; grid-row: 1; }
.pm:nth-child(2) { grid-column: 6/9; grid-row: 1; }
.pm:nth-child(3) { grid-column: 9/13; grid-row: 1; }
.pm:nth-child(4) { grid-column: 1/5; grid-row: 2; }
.pm:nth-child(5) { grid-column: 5/9; grid-row: 2; }
.pm:nth-child(6) { grid-column: 9/13; grid-row: 2; }
.pm {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
}
.pm-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
  filter: brightness(0.82);
}
.pm:hover .pm-bg { transform: scale(1.06); filter: brightness(0.92); }
.pm-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,51,40,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.pm-cat {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  margin-bottom: 0.3rem;
}
.pm-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 300; color: #fff; line-height: 1.25;
}
.pm:nth-child(1) .pm-name { font-size: 1.65rem; }
.pm-meta { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

#process { background: var(--bg); }
.process-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center; margin-top: 4rem;
}
.proc-img {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5; position: relative;
  box-shadow: var(--shadow-lg);
}
.proc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.proc-img:hover img { transform: scale(1.04); }
.proc-badge {
  position: absolute; top: 1.75rem; right: -20px;
  background: var(--bg);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.proc-badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--forest); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: #fff;
}
.proc-badge strong { font-size: 0.82rem; font-weight: 600; display: block; color: var(--text); }
.proc-badge span { font-size: 0.7rem; color: var(--text3); }
.proc-steps { display: flex; flex-direction: column; gap: 0; }
.proc-step {
  display: flex; gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.proc-step:first-child { border-top: 1px solid var(--border); }
.proc-step:hover { padding-left: 0.5rem; }
.proc-n {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300;
  line-height: 1; color: var(--bg3);
  flex-shrink: 0; width: 44px;
  transition: color 0.3s;
}
.proc-step:hover .proc-n { color: var(--forest); }
.proc-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400;
  color: var(--text); margin-bottom: 0.4rem;
}
.proc-step p { font-size: 0.85rem; font-weight: 300; color: var(--text2); line-height: 1.75; }

#testimonials { background: var(--forest); }
#testimonials .eyebrow { color: rgba(255,255,255,0.55); }
#testimonials .eyebrow::before { background: rgba(255,255,255,0.4); }
#testimonials h2.section-title { color: #fff; }
#testimonials h2.section-title em { color: var(--sand2); }
.testi-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
  margin-top: 4rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
}
.t-card {
  background: var(--forest);
  padding: 2.25rem;
  transition: background 0.3s;
}
.t-card:hover { background: var(--forest2); }
.t-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.t-star { font-size: 0.85rem; color: var(--sand); }
.t-quote {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 300; color: #fff;
  line-height: 1.6; min-height: 160px;
}
.t-person {
  display: flex; align-items: center; gap: 12px;
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.t-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; flex-shrink: 0;
}
.t-name { color: #fff; font-size: 0.84rem; font-weight: 600; }
.t-role { color: rgba(255,255,255,0.5); font-size: 0.72rem; margin-top: 2px; }

#cta { background: var(--bg); }
.cta-wrap {
  background: linear-gradient(135deg, var(--forest) 0%, #274E3B 100%);
  border-radius: 28px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  min-height: 420px;
}
.cta-left {
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-left .eyebrow { color: rgba(255,255,255,0.55); }
.cta-left .eyebrow::before { background: rgba(255,255,255,0.4); }
.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
}
.cta-left h2 em { color: var(--sand2); font-style: italic; }
.cta-left p {
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-top: 1.15rem;
  max-width: 470px;
}
.cta-right {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
    url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=1200&q=85') center/cover;
}

#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}
.cl {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.cl-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--bg2);
  color: var(--forest);
  flex-shrink: 0;
}
.cl strong { display: block; font-size: 0.92rem; color: var(--text); }
.cl span { display: block; font-size: 0.76rem; color: var(--text3); margin-top: 3px; }
.form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.f-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.f-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text2);
}
.f-group input,
.f-group textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  background: var(--bg);
}
.f-group textarea {
  min-height: 160px;
  resize: vertical;
}
.f-submit {
  background: var(--forest);
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 0.95rem 1.5rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
}
.form-success {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #E8F0EC;
  color: var(--forest2);
}

footer {
  background: #151714;
  color: rgba(255,255,255,0.8);
  padding: 4rem 3.5rem 2rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand p { color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 380px; margin-top: 1rem; }
.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.foot-logo-image {
  max-height: 38px;
  width: auto;
  display: block;
}
.foot-logo-leaf { background: #fff; }

body.theme-dark {
  --bg: #0f1412;
  --bg2: #141b18;
  --bg3: #1d2622;
  --forest: var(--brand-primary);
  --forest2: var(--brand-primary-2);
  --forest3: var(--brand-primary-3);
  --sand: var(--brand-accent);
  --sand2: var(--brand-accent-2);
  --text: #edf2ef;
  --text2: #b8c1bb;
  --text3: #87938b;
  --border: rgba(237,242,239,0.08);
  --border2: rgba(237,242,239,0.14);
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.18);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.22);
  --shadow-lg: 0 22px 60px rgba(0,0,0,0.28);
}

body.theme-dark nav {
  background: rgba(15,20,18,0.88);
}

body.theme-dark .hero-photo::after {
  background: linear-gradient(135deg, rgba(8,12,10,0.28) 0%, transparent 60%);
}

body.theme-dark .hero-card,
body.theme-dark .proc-badge,
body.theme-dark .cl,
body.theme-dark .form-wrap {
  background: #171f1c;
  border-color: var(--border);
}

body.theme-dark .ic-g,
body.theme-dark .cl-icon,
body.theme-dark .hero-card-icon {
  background: rgba(255,255,255,0.06);
}

body.theme-dark .ic-w {
  background: rgba(169, 151, 197, 0.12);
}

body.theme-dark .b-pop,
body.theme-dark .form-success {
  background: rgba(140,180,159,0.14);
}

body.theme-dark .b-pre {
  background: rgba(205,181,143,0.14);
  color: #dfc79e;
}

body.theme-dark .b-new {
  background: rgba(112,160,200,0.14);
  color: #a7cce6;
}

body.theme-dark .f-group input,
body.theme-dark .f-group textarea {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

body.theme-dark footer {
  background: #090c0b;
}

body.theme-dark .foot-logo-leaf {
  background: var(--forest);
}

body.theme-dark .logo-text small {
  color: var(--text3);
}
.foot-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.foot-col ul { list-style: none; display: grid; gap: 0.7rem; }
.foot-col a { color: rgba(255,255,255,0.8); text-decoration: none; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}
.foot-bottom p { color: rgba(255,255,255,0.4); }
.socials { display: flex; gap: 0.5rem; }
.soc {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

@media (max-width: 1100px) {
  .svc-grid,
  .testi-row { grid-template-columns: repeat(2, 1fr); }
  .process-layout,
  .cta-wrap,
  .contact-grid,
  .hero,
  .foot-top { grid-template-columns: 1fr; }
  .port-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 260px);
  }
  .pm:nth-child(n) { grid-column: auto; grid-row: auto; }
  .hero-card { left: 1rem; }
}

@media (max-width: 720px) {
  nav,
  section,
  footer,
  .hero-left { padding-left: 1.25rem; padding-right: 1.25rem; }
  nav { height: auto; padding-top: 1rem; padding-bottom: 1rem; flex-direction: column; gap: 1rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .hero { padding-top: 110px; }
  .hero-left { padding-top: 3rem; padding-bottom: 3rem; }
  .hero-btns,
  .hero-numbers,
  .f-row,
  .svc-head,
  .port-top,
  .foot-bottom { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .svc-grid,
  .testi-row,
  .port-mosaic { grid-template-columns: 1fr; }
  .port-mosaic { grid-template-rows: repeat(6, 250px); }
  .t-quote { min-height: 0; }
  .hero-card { position: static; margin: 1rem; }
}
