:root {
  color-scheme: light;
  --bg: #f5f2ec;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --ink: #172022;
  --muted: #62706d;
  --line: #ddd4c5;
  --brand: #15594c;
  --brand-dark: #0d352f;
  --gold: #c89c5d;
  --wood: #8a5e3b;
  --shadow: 0 22px 60px rgba(23, 32, 34, 0.14);
  --radius: 8px;
  --container: min(1160px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

p {
  line-height: 1.72;
}

.site-header {
  width: var(--container);
  min-height: 72px;
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(20, 27, 28, 0.72);
  padding: 12px 14px 12px 18px;
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transform: skewY(-12deg);
}

.brand-mark i {
  width: 4px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.brand-mark i:nth-child(1) {
  height: 12px;
}

.brand-mark i:nth-child(2) {
  height: 16px;
}

.brand-mark i:nth-child(3) {
  height: 20px;
}

.brand-mark i:nth-child(4) {
  height: 24px;
}

.brand-mark i:nth-child(5) {
  height: 28px;
}

.brand-mark i:nth-child(6) {
  height: 32px;
}

.brand-mark i:nth-child(7) {
  height: 36px;
}

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

.site-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #101718;
  padding: 128px 0 72px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 14, 15, 0.92) 0%, rgba(9, 14, 15, 0.72) 36%, rgba(9, 14, 15, 0.28) 72%),
    linear-gradient(180deg, rgba(9, 14, 15, 0.18), rgba(9, 14, 15, 0.68));
}

.hero-content {
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  line-height: 0.97;
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.45rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.whatsapp-symbol {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #141b1c;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-card .button-secondary {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--ink);
}

.hero-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy p + p {
  margin-top: 18px;
}

.authority-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.authority-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.authority-card div {
  padding: clamp(24px, 4vw, 52px);
}

.quote-mark {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.75;
}

blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 850;
  line-height: 1.12;
}

blockquote + p {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.services-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: 24px;
  box-shadow: 0 16px 42px rgba(23, 32, 34, 0.08);
}

.service-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3,
.audience-grid h3 {
  margin-top: 18px;
}

.service-card p,
.audience-grid p,
.proof-copy p,
.contact-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.image-band {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101718;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 17, 0.05), rgba(10, 16, 17, 0.74));
}

.image-band-content {
  width: var(--container);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 0 64px;
  color: #fff;
}

.image-band-content h2 {
  max-width: 760px;
}

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

.theme-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: 18px 20px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.proof-gallery img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(23, 32, 34, 0.1);
}

.proof-gallery img:first-child {
  grid-row: span 2;
  object-position: center top;
}

.proof-gallery img:nth-child(2) {
  object-position: center 18%;
}

.proof-copy h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
}

.contact-section {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(70px, 9vw, 118px);
}

.contact-card {
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(21, 89, 76, 0.95), rgba(13, 53, 47, 0.98)),
    var(--brand-dark);
  color: #fff;
  padding: clamp(30px, 6vw, 74px);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 840px;
}

.contact-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 26px 0 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.84);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.contact-list a {
  font-weight: 900;
}

.site-footer {
  width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 34px;
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 720px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(20, 27, 28, 0.96);
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 14, 15, 0.82), rgba(9, 14, 15, 0.58) 45%, rgba(9, 14, 15, 0.88)),
      linear-gradient(90deg, rgba(9, 14, 15, 0.4), rgba(9, 14, 15, 0.25));
  }

  .hero-media img {
    object-position: 68% top;
  }

  .hero-content {
    width: min(100% - 44px, 720px);
  }

  .section-grid,
  .authority-card,
  .proof-section {
    grid-template-columns: 1fr;
  }

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

  .authority-card img {
    min-height: 360px;
  }

  .proof-gallery {
    grid-template-rows: 210px 210px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .brand span {
    font-size: 0.96rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 116px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .services-grid,
  .audience-grid,
  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .proof-gallery {
    grid-template-rows: none;
  }

  .proof-gallery img,
  .proof-gallery img:first-child {
    grid-row: auto;
    min-height: 280px;
  }

  .image-band {
    min-height: 520px;
  }

  .contact-list li,
  .site-footer {
    display: grid;
    justify-content: stretch;
  }
}
