/* ── Nav active ─────────────────────────────────── */
.nav__link--active {
  background: rgba(93,170,128,.15);
  color: var(--heading);
}

/* ── Hero ───────────────────────────────────────── */
.om-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 75% at 72% 50%, rgba(42,82,64,.5) 0%, transparent 68%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(30,80,210,.1) 0%, transparent 65%),
    var(--cream);
  padding: 90px 24px 80px;
}

.om-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80'%3E%3Cg fill='none' stroke='%235daa80' stroke-linecap='round'%3E%3Cpath d='M0,12 C40,1 120,23 160,12' stroke-width='0.9' opacity='0.08'/%3E%3Cpath d='M0,38 C40,31 120,45 160,38' stroke-width='0.7' opacity='0.05'/%3E%3Cpath d='M0,62 C40,52 120,72 160,62' stroke-width='0.9' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 80px;
}

.om-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.om-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.om-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  color: var(--heading);
}

.om-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.om-hero__lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 58ch;
}

/* ── Hero photo ─────────────────────────────────── */
.om-hero__photo-wrap {
  position: relative;
}

.om-hero__photo-deco {
  position: absolute;
  inset: -18px -18px 18px 18px;
  border: 1px solid rgba(201,168,76,.18);
  border-radius: calc(var(--r) + 6px);
  pointer-events: none;
}

.om-hero__photo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 3 / 4;
}

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

/* ── Sections ───────────────────────────────────── */
.om-section {
  position: relative;
  overflow: hidden;
  padding: 90px 24px;
  background: var(--cream);
}

.om-section--dark {
  background: var(--surface);
}

.om-section::before,
.om-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80'%3E%3Cg fill='none' stroke='%235daa80' stroke-linecap='round'%3E%3Cpath d='M0,12 C40,1 120,23 160,12' stroke-width='0.9' opacity='0.08'/%3E%3Cpath d='M0,38 C40,31 120,45 160,38' stroke-width='0.7' opacity='0.05'/%3E%3Cpath d='M0,62 C40,52 120,72 160,62' stroke-width='0.9' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 80px;
}

.om-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.om-section__inner--split {
  flex-direction: row;
  align-items: center;
  gap: 72px;
}

.om-section__inner--narrow {
  max-width: 760px;
}

.om-section__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Story text ─────────────────────────────────── */
.om-story {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.om-story__text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.82;
}

/* ── Weight journey visual ──────────────────────── */
.om-weight-journey {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.om-weight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 28px 36px;
  border-radius: var(--r);
  width: 200px;
}

.om-weight-card--start {
  background: rgba(93,170,128,.07);
  border: 1px solid rgba(93,170,128,.18);
}

.om-weight-card--end {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.25);
}

.om-weight-card__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.om-weight-card__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1;
}

.om-weight-card--end .om-weight-card__value {
  color: var(--gold);
}

.om-weight-card__note {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

.om-weight-arrow {
  color: var(--green-light);
  opacity: .5;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.om-weight-arrow svg {
  width: 28px;
  height: 56px;
}

/* ── Credentials ────────────────────────────────── */
.om-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.om-cred {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(93,170,128,.1);
  border-radius: var(--r);
  padding: 28px 30px;
  transition: border-color .25s, background .25s;
}

.om-cred:hover {
  border-color: rgba(201,168,76,.25);
  background: rgba(201,168,76,.03);
}

.om-cred__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.om-cred__icon svg {
  width: 20px;
  height: 20px;
}

.om-cred__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 8px;
}

.om-cred__text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Quote ──────────────────────────────────────── */
.om-quote {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 65%),
    var(--cream);
  padding: 100px 24px 110px;
  text-align: center;
}

.om-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='80'%3E%3Cg fill='none' stroke='%235daa80' stroke-linecap='round'%3E%3Cpath d='M0,12 C40,1 120,23 160,12' stroke-width='0.9' opacity='0.08'/%3E%3Cpath d='M0,38 C40,31 120,45 160,38' stroke-width='0.7' opacity='0.05'/%3E%3Cpath d='M0,62 C40,52 120,72 160,62' stroke-width='0.9' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 80px;
}

.om-quote__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.om-quote__mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 8rem;
  line-height: .6;
  color: var(--gold);
  opacity: .25;
  user-select: none;
}

.om-quote__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--heading);
  line-height: 1.45;
}

.om-quote__author {
  font-size: .88rem;
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
}

.om-quote__cta {
  margin-top: 16px;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid rgba(93,170,128,.1);
  padding: 28px 24px;
  text-align: center;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: .82rem;
  color: var(--muted);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .om-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .om-hero__photo-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .om-section__inner--split {
    flex-direction: column;
    gap: 48px;
  }

  .om-weight-journey {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .om-weight-arrow {
    height: auto;
    width: 60px;
  }

  .om-weight-arrow svg {
    width: 56px;
    height: 28px;
    transform: rotate(-90deg);
  }
}

@media (max-width: 680px) {
  .om-hero { padding: 70px 20px 70px; }
  .om-section { padding: 70px 20px; }

  .om-creds {
    grid-template-columns: 1fr;
  }

  .om-weight-journey {
    flex-direction: column;
  }

  .om-weight-arrow svg {
    transform: none;
    width: 28px;
    height: 56px;
  }

  .om-weight-card {
    width: 100%;
  }

  .om-cred {
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
  }
}

@media (max-width: 768px) {
  .header__toggle { display: flex; }
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11,20,16,.97);
    border-bottom: 1px solid rgba(93,170,128,.12);
    padding: 16px 24px 24px;
  }
  .header__nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: block; padding: 10px 16px; }
}
