@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f3efe7;
  --bg-deep: #0f1722;
  --surface: rgba(255, 251, 246, 0.9);
  --surface-strong: #fffdf9;
  --surface-dark: #14202d;
  --ink: #15191f;
  --ink-soft: #46515f;
  --line: rgba(21, 25, 31, 0.12);
  --line-strong: rgba(192, 154, 92, 0.22);
  --brand: #b78b4d;
  --brand-deep: #845d2f;
  --accent: #203447;
  --accent-soft: #dfe9ef;
  --success: #284d3a;
  --shadow-lg: 0 28px 80px rgba(10, 20, 32, 0.14);
  --shadow-md: 0 18px 44px rgba(10, 20, 32, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(183, 139, 77, 0.09), transparent 26%),
    linear-gradient(180deg, #faf7f2 0%, #f3eee5 52%, #ece4d8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(15, 23, 34, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #d6b27c 0%, #916535 100%);
  color: #0f1722;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-text strong {
  display: block;
  margin-bottom: 2px;
  color: #f6efe5;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span {
  color: rgba(246, 239, 229, 0.72);
  font-size: 0.92rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.main-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(246, 239, 229, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fffaf1;
  border-color: rgba(183, 139, 77, 0.34);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero,
.page-hero {
  position: relative;
}

.hero {
  padding: 88px 0 44px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 360px;
  background:
    linear-gradient(180deg, rgba(20, 31, 43, 0.98) 0%, rgba(28, 43, 58, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 360px;
  background:
    linear-gradient(90deg, rgba(183, 139, 77, 0.12), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 18%);
  z-index: -1;
}

.hero-shell,
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.page-hero-shell {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
}

.page-hero {
  padding: 56px 0 34px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(18, 28, 39, 0.98) 0%, rgba(28, 44, 60, 0.96) 60%, rgba(43, 58, 74, 0.94) 100%);
  z-index: -2;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(183, 139, 77, 0.16), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 18%);
  z-index: -1;
}

.page-hero-shell {
  align-items: stretch;
}

.hero-copy,
.page-hero-copy,
.hero-card,
.spec-item,
.metric,
.card,
.blog-card,
.service-card,
.feature-card,
.contact-card,
.sidebar-card,
.data-card,
.cta-panel,
.note-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(247, 242, 234, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-copy,
.page-hero-copy,
.hero-card,
.data-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 48px rgba(7, 15, 24, 0.16);
}

.hero-copy::before,
.page-hero-copy::before,
.hero-card::before,
.data-card::before,
.card::before,
.blog-card::before,
.service-card::before,
.feature-card::before,
.contact-card::before,
.sidebar-card::before,
.note-panel::before,
.cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 48%);
  pointer-events: none;
}

.hero-copy,
.page-hero-copy {
  padding: 40px;
}

.page-hero-copy {
  min-height: 100%;
}

.page-hero .data-card {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.98) 0%, rgba(245, 237, 227, 0.96) 100%);
  border: 1px solid rgba(183, 139, 77, 0.14);
  box-shadow: 0 20px 44px rgba(8, 16, 26, 0.14);
}

.hero-card,
.data-card,
.card,
.blog-card,
.service-card,
.feature-card,
.contact-card,
.sidebar-card,
.cta-panel,
.note-panel,
.spec-item,
.metric {
  padding: 28px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(183, 139, 77, 0.22);
  border-radius: 999px;
  background: rgba(183, 139, 77, 0.1);
  color: #e4c18c;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

section .kicker {
  color: var(--brand-deep);
  background: rgba(183, 139, 77, 0.08);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: inherit;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: 38px;
  color: #fff9f0;
  max-width: 15ch;
}

h2 {
  font-size: 30px;
  color: var(--accent);
}

h3 {
  font-size: 24px;
  color: var(--accent);
}

.page-hero-copy h1 {
  font-size: 38px;
  max-width: 14ch;
  margin-bottom: 20px;
}

.home-hero-copy h1 {
  max-width: 19ch;
}

.page-hero-copy p {
  max-width: 60ch;
}

.hero-copy h3,
.page-hero-copy h3,
.hero-card h3,
.data-card h3,
.hero-copy p,
.page-hero-copy p,
.hero-card p,
.data-card p,
.hero-copy li,
.page-hero-copy li,
.hero-card li,
.data-card li,
.hero-copy .breadcrumbs,
.page-hero-copy .breadcrumbs,
.page-hero-copy .meta-pill {
  color: rgba(255, 247, 236, 0.86);
}

p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

strong {
  color: inherit;
}

section {
  padding: 38px 0;
}

.hero-actions,
.inline-actions,
.article-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions,
.inline-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111722;
  background: linear-gradient(135deg, #d8b37a 0%, #a7763d 100%);
  box-shadow: 0 16px 36px rgba(91, 63, 31, 0.24);
}

.btn-secondary {
  color: var(--accent);
  border-color: rgba(32, 52, 71, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.btn-secondary:hover {
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(20, 28, 39, 0.08);
}

.spec-grid,
.metric-grid,
.card-grid,
.blog-grid,
.service-grid,
.feature-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.spec-grid,
.metric-grid,
.card-grid,
.blog-grid,
.service-grid,
.feature-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three,
.blog-grid.three,
.service-grid.three,
.feature-grid.three,
.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spec-item strong,
.metric strong,
.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.8rem;
  font-family: inherit;
}

.spec-item p,
.metric p {
  margin: 0;
}

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

.section-head p:last-child {
  max-width: 560px;
}

.card,
.blog-card,
.service-card,
.feature-card,
.contact-card,
.sidebar-card,
.note-panel,
.cta-panel,
.spec-item,
.metric {
  border: 1px solid rgba(183, 139, 77, 0.12);
}

.card:hover,
.blog-card:hover,
.service-card:hover,
.feature-card:hover,
.note-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.page-hero-shell {
  position: relative;
  z-index: 1;
}

.page-hero-shell-single {
  grid-template-columns: 1fr;
}

.page-hero-shell-single .page-hero-copy {
  max-width: 860px;
}

.page-hero .data-card h3,
.page-hero .data-card p,
.page-hero .data-card li {
  color: var(--accent);
}

.page-hero .data-card .kicker {
  color: var(--brand-deep);
  background: rgba(183, 139, 77, 0.1);
}

.page-shell,
.blog-shell,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.content-split,
.content-split.reverse {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.content-split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.content-split.reverse .visual-panel {
  order: -1;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mini-stat {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 236, 226, 0.92));
  border: 1px solid rgba(183, 139, 77, 0.14);
  box-shadow: var(--shadow-md);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
}

.visual-panel,
.feature-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.visual-panel {
  padding: 28px;
  background: linear-gradient(160deg, #13202c 0%, #243849 58%, #9f7741 140%);
  color: #fff5e7;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-panel::before,
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 78% 76%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.visual-panel > *,
.feature-visual > * {
  position: relative;
  z-index: 1;
}

.visual-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f2d1a0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-panel h3,
.visual-panel p,
.visual-panel li {
  color: #fff5e7;
}

.visual-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.visual-chip {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-chip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.feature-visual {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 232, 221, 0.94));
  border: 1px solid rgba(183, 139, 77, 0.14);
}

.media-showcase,
.media-pair,
.service-gallery {
  display: grid;
  gap: 18px;
}

.media-showcase {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: stretch;
}

.home-showcase {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.95fr);
}

.media-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-media-grid,
.wide-media-strip {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.content-media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wide-media-strip {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  align-items: stretch;
}

.wide-media-strip.reverse-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

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

.image-card,
.gallery-card,
.featured-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183, 139, 77, 0.14);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 232, 221, 0.94));
  box-shadow: var(--shadow-md);
}

.image-card img,
.gallery-card img,
.featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.image-card figcaption,
.gallery-card figcaption,
.featured-image figcaption {
  padding: 14px 16px 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.image-card.tall img {
  min-height: 640px;
}

.gallery-card img {
  height: 340px;
}

.home-showcase .image-card img,
.home-showcase .gallery-card img {
  height: 620px;
}

.content-media-grid .gallery-card img {
  height: 420px;
}

.wide-media-strip .featured-image img,
.wide-media-strip .gallery-card img {
  height: 430px;
}

.service-gallery .gallery-card:first-child {
  grid-column: 1 / -1;
}

.service-gallery .gallery-card:first-child img {
  height: 420px;
}

.featured-image img {
  height: 520px;
}

.home-showcase figcaption,
.content-media-grid figcaption,
.wide-media-strip figcaption {
  font-size: 0.95rem;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 12, 18, 0.86);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  background: #0b1016;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-caption {
  margin-top: 12px;
  text-align: center;
  color: #f6efe5;
  font-size: 0.95rem;
}

.process-flow,
.equipment-grid {
  display: grid;
  gap: 14px;
}

.process-flow {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.equipment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.process-step,
.equipment-tile {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(32, 52, 71, 0.08);
}

.process-step strong,
.equipment-tile strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.process-step p,
.equipment-tile p {
  margin: 0;
  font-size: 0.92rem;
}

.final-cta {
  text-align: center;
  padding: 36px;
}

.final-cta p {
  max-width: 840px;
  margin: 0 auto 18px;
}

.list,
.check-list,
.link-list,
.timeline,
.contact-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.timeline li,
.contact-list li {
  position: relative;
  padding-left: 18px;
  color: inherit;
}

.check-list li::before,
.timeline li::before,
.contact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 0 0 4px rgba(183, 139, 77, 0.14);
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
}

.link-list a:last-child {
  border-bottom: 0;
}

.link-list a:hover {
  color: var(--accent);
}

.tag,
.meta-pill {
  padding: 8px 13px;
  border: 1px solid rgba(183, 139, 77, 0.16);
  border-radius: 999px;
  background: rgba(183, 139, 77, 0.08);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
}

blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(135deg, rgba(183, 139, 77, 0.12), rgba(255, 255, 255, 0.72));
  color: var(--accent);
  font-size: 1.06rem;
  font-weight: 600;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 247, 236, 0.74);
  font-size: 0.9rem;
}

.breadcrumbs span::after {
  content: '/';
  margin-left: 10px;
  color: rgba(255, 247, 236, 0.42);
}

.breadcrumbs span:last-child::after {
  display: none;
}

.article-content h2,
.article-content h3,
.service-content h2,
.service-content h3 {
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(32, 52, 71, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(183, 139, 77, 0.5);
  box-shadow: 0 0 0 4px rgba(183, 139, 77, 0.12);
  background: #fff;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.quick-apply-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.quick-apply-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 236, 226, 0.94));
  border: 1px solid rgba(183, 139, 77, 0.18);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.quick-apply-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 139, 77, 0.34);
}

.quick-apply-card strong {
  color: var(--accent);
  font-size: 1.05rem;
}

.quick-apply-card span {
  color: var(--ink-soft);
}

.whatsapp-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #13202c 0%, #223646 65%, #7c5b34 130%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.whatsapp-cta h3,
.whatsapp-cta p {
  color: #fff4e4;
}

.whatsapp-cta h3 {
  margin-bottom: 8px;
}

.sidebar-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.sidebar-note .kicker {
  margin-bottom: 10px;
}

.timeline strong {
  color: var(--accent);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(20, 32, 45, 0.98) 0%, rgba(35, 49, 66, 0.96) 62%, rgba(94, 66, 38, 0.94) 100%);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .kicker {
  color: #fff4e4;
}

.site-footer {
  padding: 52px 0 64px;
}

.footer-grid {
  margin-top: 26px;
}

.note-panel {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(247, 241, 232, 0.92));
}

.site-footer .contact-list a,
.site-footer .link-list a {
  color: inherit;
}

@media (max-width: 1100px) {
  .hero-shell,
  .page-hero-shell,
  .content-split,
  .content-split.reverse,
  .media-showcase,
  .content-media-grid,
  .wide-media-strip,
  .page-shell,
  .blog-shell,
  .contact-shell,
  .cta-panel,
  .footer-grid,
  .card-grid.three,
  .blog-grid.three,
  .service-grid.three,
  .feature-grid.three {
    grid-template-columns: 1fr;
  }

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

  .content-split.reverse .visual-panel {
    order: 0;
  }
}

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

  .header-inner {
    padding: 16px 0;
    align-items: start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .page-hero {
    padding-top: 46px;
  }

  .hero::before,
  .hero::after {
    height: 320px;
  }

  .hero-copy,
  .page-hero-copy,
  .hero-card,
  .data-card,
  .card,
  .blog-card,
  .service-card,
  .feature-card,
  .contact-card,
  .sidebar-card,
  .cta-panel,
  .note-panel,
  .spec-item,
  .metric {
    padding: 22px;
  }

  .spec-grid,
  .metric-grid,
  .intro-band,
  .card-grid,
  .blog-grid,
  .service-grid,
  .feature-grid,
  .contact-grid,
  .process-flow,
  .equipment-grid,
  .media-pair,
  .content-media-grid,
  .wide-media-strip,
  .service-gallery {
    grid-template-columns: 1fr;
  }

  .whatsapp-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .page-hero-copy h1 {
    max-width: none;
  }

  h3 {
    font-size: 21px;
  }

  .home-showcase .image-card img,
  .home-showcase .gallery-card img,
  .content-media-grid .gallery-card img,
  .wide-media-strip .featured-image img,
  .wide-media-strip .gallery-card img {
    height: 340px;
  }
}
