:root {
  --bg: #f6f3ec;
  --surface: #fffdf8;
  --surface-strong: #f0ece2;
  --ink: #18212b;
  --ink-soft: #4f5c68;
  --muted: #6d7a86;
  --line: #d6d1c4;
  --line-strong: #b9b2a2;
  --brand: #18212b;
  --brand-2: #21475f;
  --accent: #b86e2f;
  --accent-2: #d89e45;
  --success: #2a6a52;
  --shadow-sm: 0 10px 24px rgba(24, 33, 43, 0.06);
  --shadow-md: 0 18px 42px rgba(24, 33, 43, 0.1);
  --shadow-lg: 0 28px 64px rgba(24, 33, 43, 0.16);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 158, 69, 0.13), transparent 42%),
    radial-gradient(circle at 100% 10%, rgba(33, 71, 95, 0.09), transparent 46%),
    linear-gradient(180deg, #faf8f2 0%, #f6f3ec 48%, #f4efe5 100%);
  font-family: 'Source Sans 3', ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(24, 33, 43, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 43, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

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

svg {
  display: block;
}

main {
  display: block;
}

a {
  color: var(--brand-2);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--brand);
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 110, 47, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 56px 0;
}

.surface {
  background: rgba(255, 253, 248, 0.9);
  border-block: 1px solid rgba(214, 209, 196, 0.7);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 7px 14px;
  border: 1px solid rgba(24, 33, 43, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}

.kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(184, 110, 47, 0.1);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.section-head h2,
.section-title {
  margin: 0;
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.section-head p,
.section-subtitle {
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 1.02rem;
}

.lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 64ch;
}

.page-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(250, 248, 242, 0.78);
  border-bottom: 1px solid rgba(214, 209, 196, 0.72);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(24, 33, 43, 0.08);
  background: rgba(250, 248, 242, 0.92);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(24, 33, 43, 0.12);
  background: linear-gradient(180deg, #fff, #f4efe4);
  padding: 5px;
  box-shadow: var(--shadow-sm);
}

.brand__name {
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.brand__sub {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(24, 33, 43, 0.16);
  background: rgba(255, 255, 255, 0.75);
  color: var(--brand);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav a:hover,
.nav a[aria-current='page'] {
  background: rgba(24, 33, 43, 0.06);
  color: var(--brand);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(24, 33, 43, 0.1);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--brand);
}

.header-cta__label {
  font-size: 0.73rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.header-cta__value {
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: 54px 0 72px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(246, 243, 236, 0), rgba(246, 243, 236, 0.95));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy .lead {
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 57ch;
}

.hero-copy .lead strong {
  color: var(--brand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 26px rgba(24, 33, 43, 0.17);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 32px rgba(24, 33, 43, 0.22);
}

.btn-secondary {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(24, 33, 43, 0.14);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  color: var(--brand);
  border-color: rgba(24, 33, 43, 0.24);
}

.btn-link {
  color: var(--brand);
  padding-inline: 2px;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-link:hover {
  color: var(--brand-2);
  transform: none;
}

.hero-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(24, 33, 43, 0.1);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.hero-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 33, 43, 0.08);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.hero-note strong {
  color: var(--brand);
}

.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 236, 0.92));
  border: 1px solid rgba(24, 33, 43, 0.09);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-panel::before {
  width: 170px;
  height: 170px;
  top: -40px;
  right: -35px;
  background: rgba(33, 71, 95, 0.35);
}

.hero-panel::after {
  width: 150px;
  height: 150px;
  bottom: -45px;
  left: -35px;
  background: rgba(184, 110, 47, 0.35);
}

.hero-panel__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 33, 43, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.card h3,
.card h4 {
  margin: 0 0 8px;
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.call-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  align-content: start;
}

.call-card__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-top: 8px;
  border-top: 1px dashed rgba(24, 33, 43, 0.12);
}

.call-card__row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.call-card__row span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.call-card__row a,
.call-card__row strong {
  color: var(--brand);
  font-weight: 700;
}

.hero-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 148px;
  gap: 12px;
}

.hero-gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow-sm);
}

.hero-gallery__item:nth-child(1) {
  grid-row: span 2;
}

.hero-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gallery__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(24, 33, 43, 0.8);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-metrics {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 33, 43, 0.07);
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: var(--shadow-sm);
}

.metric strong {
  display: block;
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.04em;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--brand);
}

.metric span {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-strip {
  padding-top: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.trust-item__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(184, 110, 47, 0.18), rgba(216, 158, 69, 0.16));
  color: var(--accent);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.96rem;
  color: var(--brand);
}

.trust-item span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: 180px auto;
  overflow: hidden;
  padding: 0;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-card__media {
  position: relative;
  overflow: hidden;
}

.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 33, 43, 0.08), rgba(24, 33, 43, 0.32));
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 240ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card__body {
  padding: 18px;
}

.service-card__body h3 {
  margin-bottom: 8px;
}

.service-card__body p {
  margin: 0;
  color: var(--ink-soft);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.card-link::after {
  content: '→';
  transition: transform 160ms ease;
}

.card-link:hover::after {
  transform: translateX(2px);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.story-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 229, 0.9));
}

.story-panel p + p {
  margin-top: 10px;
}

.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.stat-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 33, 43, 0.08);
}

.stat-list li strong {
  color: var(--brand);
}

.icon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(184, 110, 47, 0.1);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(24, 33, 43, 0.06);
  color: var(--brand);
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card {
  padding: 0;
  overflow: hidden;
}

.project-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
}

.project-card__body {
  padding: 16px;
}

.project-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.project-card__body p {
  margin: 0;
  color: var(--ink-soft);
}

.mini-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.mini-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: #fff;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-card {
  border-radius: var(--radius);
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.area-card h3 {
  margin: 0 0 4px;
  font-size: 1.03rem;
}

.area-card p {
  margin: 0;
  color: var(--ink-soft);
}

.notice {
  border-radius: var(--radius);
  border: 1px solid rgba(184, 110, 47, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 231, 0.9));
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.notice strong {
  color: var(--brand);
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq {
  border-radius: 14px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  overflow: clip;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--brand);
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--muted);
}

.faq[open] summary::after {
  content: '−';
}

.faq__body {
  padding: 0 16px 16px;
  color: var(--ink-soft);
}

.faq__body p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(24, 33, 43, 0.06);
  background: rgba(255, 255, 255, 0.65);
}

.contact-list__row span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-list__row strong,
.contact-list__row a {
  color: var(--brand);
  font-weight: 700;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(24, 33, 43, 0.05);
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.quick-links a:hover {
  background: rgba(24, 33, 43, 0.09);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 158, 69, 0.24), transparent 52%),
    radial-gradient(circle at 0% 100%, rgba(33, 71, 95, 0.18), transparent 58%),
    linear-gradient(145deg, #17202a, #233d4f);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-lg);
}

.cta-panel h3 {
  color: #fff;
}

.cta-panel p,
.cta-panel li,
.cta-panel .muted-text {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .btn-primary {
  background: #fff;
  color: var(--brand);
}

.cta-panel .btn-primary:hover {
  color: var(--brand);
}

.cta-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.cta-panel .btn-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.site-footer {
  border-top: 1px solid rgba(214, 209, 196, 0.9);
  background: rgba(252, 250, 245, 0.9);
  padding: 26px 0 34px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.site-footer h4 {
  margin: 0 0 8px;
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--ink-soft);
  margin: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bar {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(214, 209, 196, 0.75);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Service pages */
.page-hero {
  padding: 38px 0 56px;
}

.crumbs {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}

.page-hero__panel h1 {
  margin: 0 0 12px;
  font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero__panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.page-hero__panel .hero-actions {
  margin-top: 16px;
}

.page-hero__details {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-hero__detail {
  border-radius: 12px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px;
}

.page-hero__detail strong {
  display: block;
  color: var(--brand);
}

.page-hero__detail span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero__image {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(24, 33, 43, 0.08);
  box-shadow: var(--shadow-lg);
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(24, 33, 43, 0.55));
}

.page-hero__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.feature-list,
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li,
.service-list li {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 33, 43, 0.08);
  padding: 12px;
  color: var(--ink-soft);
}

.feature-list strong,
.service-list strong {
  color: var(--brand);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.photo-grid--mixed img {
  aspect-ratio: 4 / 3;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-card {
  border-radius: 14px;
  border: 1px solid rgba(24, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.cta-band__left,
.cta-band__right {
  padding: 18px;
}

.cta-band__left {
  background: rgba(255, 255, 255, 0.86);
}

.cta-band__right {
  background:
    radial-gradient(circle at top right, rgba(216, 158, 69, 0.28), transparent 60%),
    linear-gradient(160deg, #17202a, #244458);
  color: #fff;
  border: 0;
}

.cta-band__right h3,
.cta-band__right p,
.cta-band__right a {
  color: #fff;
}

.cta-band__right p {
  opacity: 0.85;
}

.inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.inline-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(24, 33, 43, 0.06);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
}

.back-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.back-link {
  font-weight: 700;
  color: var(--brand);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal='delay-1'] {
  transition-delay: 70ms;
}

[data-reveal='delay-2'] {
  transition-delay: 130ms;
}

[data-reveal='delay-3'] {
  transition-delay: 190ms;
}

@media (max-width: 1180px) {
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .story-grid,
  .areas-grid,
  .contact-grid,
  .page-hero__grid,
  .split-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .project-grid,
  .process-grid,
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .hero-gallery__item:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    width: min(360px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(24, 33, 43, 0.1);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
  }

  .nav[data-open='true'] {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .area-cards {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 26px));
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 46px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-panel,
  .card {
    border-radius: 16px;
  }

  .hero-panel__top {
    grid-template-columns: 1fr;
  }

  .call-card {
    grid-column: auto;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-gallery__item:nth-child(1) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-metrics,
  .trust-grid,
  .grid-3,
  .grid-2,
  .project-grid,
  .process-grid,
  .area-cards,
  .info-cards,
  .photo-grid,
  .site-footer__grid,
  .page-hero__details {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-card {
    grid-template-rows: 170px auto;
  }

  .mini-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-list__row,
  .call-card__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
