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

:root {
  --bg: #f3ede2;
  --bg-strong: #f7f2e9;
  --surface: rgba(255, 252, 246, 0.84);
  --surface-solid: #fffaf2;
  --surface-dark: #17312d;
  --text: #1f2a28;
  --muted: #5e6a67;
  --line: rgba(31, 42, 40, 0.1);
  --line-strong: rgba(31, 42, 40, 0.18);
  --accent: #1f6a5d;
  --accent-strong: #154d44;
  --accent-soft: #d8ebe5;
  --gold: #b98a43;
  --shadow: 0 24px 60px rgba(36, 44, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185, 138, 67, 0.14), transparent 28%),
    radial-gradient(circle at right 15%, rgba(31, 106, 93, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f4eb 0%, #efe7da 100%);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

video {
  display: block;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -3;
  opacity: 0.5;
}

.page-shell::before {
  top: -10rem;
  right: -10rem;
  background: rgba(31, 106, 93, 0.14);
}

.page-shell::after {
  bottom: -12rem;
  left: -10rem;
  background: rgba(185, 138, 67, 0.16);
}

.background-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: -4;
  pointer-events: none;
}

.background-wash {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 242, 233, 0.84), rgba(243, 237, 226, 0.94));
  z-index: -3;
  pointer-events: none;
}

.container {
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 1rem;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 250, 242, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(40, 48, 46, 0.08);
  border-radius: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(20, 44, 40, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-strong);
  background: rgba(31, 106, 93, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  cursor: pointer;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 30px rgba(31, 106, 93, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border: 1px solid rgba(31, 42, 40, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(31, 42, 40, 0.08);
}

.hero {
  padding: 4rem 0 2.5rem;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 42, 40, 0.08);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 42, 40, 0.08);
  border-radius: 18px;
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent-strong);
}

.metric span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  padding: 1.4rem;
}

.hero-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 4.8;
}

.hero-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 35, 33, 0.28) 100%);
}

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

.hero-card-copy {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0.35rem 0.2rem;
}

.hero-quote {
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 2.5rem 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  line-height: 1;
}

.section-heading p {
  max-width: 52ch;
  color: var(--muted);
  margin: 0;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  padding: 1.5rem;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.75;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 243, 234, 0.96)),
    var(--brand-bg, rgba(31, 106, 93, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(31, 42, 40, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-card::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  top: -2rem;
  right: -2rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), var(--brand-glow, rgba(31, 106, 93, 0.22)));
  box-shadow:
    inset -18px -18px 28px rgba(0, 0, 0, 0.08),
    0 18px 34px rgba(31, 42, 40, 0.08);
  opacity: 0.95;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: auto auto 1.1rem -1.4rem;
  width: 6rem;
  height: 6rem;
  border-radius: 28px;
  transform: rotate(28deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.brand-card-top,
.brand-card-bottom {
  position: relative;
  z-index: 1;
}

.brand-mark-3d {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-accent, #1f6a5d), var(--brand-accent-2, #b98a43));
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 18px 28px rgba(31, 42, 40, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -8px 16px rgba(0, 0, 0, 0.14);
}

.brand-logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 28px rgba(31, 42, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.brand-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-kicker {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.18rem;
}

.brand-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(31, 42, 40, 0.08);
}

.feature-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.campaign-card {
  display: grid;
  gap: 1rem;
}

.campaign-logo-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.campaign-logo-badge {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 24px rgba(31, 42, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.campaign-logo-badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.campaign-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 800;
}

.campaign-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.campaign-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 106, 93, 0.08);
  color: var(--accent-strong);
  font-size: 0.83rem;
  font-weight: 700;
}

.campaign-heading-group {
  display: grid;
  gap: 0.2rem;
}

.cta-band {
  margin: 2rem 0 0;
  padding: 1.6rem;
  background: linear-gradient(135deg, #17312d 0%, #21463f 100%);
  color: #f7f2e9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-band p {
  color: rgba(247, 242, 233, 0.8);
}

.cta-band .hero-actions {
  margin-top: 1rem;
}

.cta-band .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.25rem;
}

.contact-detail {
  display: grid;
  gap: 0.9rem;
}

.contact-detail a,
.contact-detail span {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 42, 40, 0.08);
}

.site-footer {
  padding: 2rem 0 2.5rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.page-hero {
  padding: 3.4rem 0 1.4rem;
}

.page-hero .panel {
  padding: 2rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 1.2rem;
  align-items: center;
}

.kpi-stack {
  display: grid;
  gap: 0.9rem;
}

.kpi-stack .metric {
  background: rgba(31, 106, 93, 0.06);
}

.highlight-box {
  padding: 1.5rem;
  background: rgba(31, 106, 93, 0.06);
  border-radius: 22px;
  border: 1px solid rgba(31, 106, 93, 0.12);
}

.swot-grid .card {
  min-height: 100%;
}

.small-label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 5.8rem;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 250, 242, 0.95);
    border: 1px solid rgba(31, 42, 40, 0.08);
    box-shadow: 0 20px 40px rgba(31, 42, 40, 0.14);
  }

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

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .header-actions .button {
    width: 100%;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-grid,
  .split-feature,
  .contact-grid,
  .page-hero-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(var(--content-width), calc(100% - 1.2rem));
  }

  .header-bar,
  .page-hero .panel,
  .card,
  .hero-card,
  .cta-band {
    border-radius: 20px;
  }

  .hero,
  .page-hero {
    padding-top: 2.5rem;
  }

  .brand {
    max-width: 75%;
  }

  .brand-copy span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .grid-3,
  .grid-2,
  .brand-list {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .footer-bar,
  .hero-signature {
    flex-direction: column;
    align-items: flex-start;
  }
}
