﻿/* ── Story photos ────────────────────────────────── */
.om-photos {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.om-photos__top,
.om-photos__bottom {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
  border: 2px solid var(--gold);
}

.om-photos__bottom {
  align-self: flex-end;
  width: 85%;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  transform: rotate(4.5deg);
  transform-origin: bottom right;
}

.om-photos__top img,
.om-photos__bottom img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}

.om-photos__bottom img { object-position: center center; }

.om-photos__top:hover img,
.om-photos__bottom:hover img {
  transform: scale(1.04);
}

.om-story {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .om-photos__bottom {
    width: 90%;
    margin-top: -40px;
  }
}

/* ── Nav active ─────────────────────────────────── */
.nav__link--active {
  background: rgba(77,174,140,.15);
  color: var(--heading);
}

/* ── Hero ───────────────────────────────────────── */
.om-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 75% at 72% 50%, rgba(36,82,68,.5) 0%, transparent 68%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(15,125,180,.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='%234dae8c' 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;
  overflow: hidden;
  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;
  min-width: 0;
  width: 100%;
}

.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;
  width: 100%;
  border-radius: var(--r);
  border: 1.5px solid rgba(201,168,76,.35);
  box-shadow:
    0 0 0 4px rgba(201,168,76,.07),
    0 18px 48px rgba(0,0,0,.45);
  aspect-ratio: 3 / 4;
}

.om-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

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

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

.om-section--creds {
  padding-bottom: 48px;
  background:
    radial-gradient(ellipse 80% 35% at 50% 28%, rgba(15,125,180,.22) 0%, transparent 70%),
    radial-gradient(ellipse 80% 35% at 50% 74%, rgba(15,125,180,.22) 0%, transparent 70%),
    linear-gradient(to bottom,
      #060d08 0%,
      #04090e 20%,
      #03080d 40%,
      #03080d 60%,
      #04090e 80%,
      #040a0f 100%
    );
}

.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='%234dae8c' 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(77,174,140,.07);
  border: 1px solid rgba(77,174,140,.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,.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow:
    0 4px 16px rgba(0,0,0,.25),
    0 16px 40px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06);
  animation: floatBob 7s ease-in-out infinite;
  transition: box-shadow .4s ease;
}

.om-cred:nth-child(1) { animation-duration: 7.0s; animation-delay:  0s;   }
.om-cred:nth-child(2) { animation-duration: 8.5s; animation-delay: -2.1s; }
.om-cred:nth-child(3) { animation-duration: 6.5s; animation-delay: -1.3s; }
.om-cred:nth-child(4) { animation-duration: 9.0s; animation-delay: -3.8s; }

.om-cred:hover {
  animation-play-state: paused;
  box-shadow:
    0 8px 24px rgba(0,0,0,.3),
    0 24px 56px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.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;
}

.cred-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,.4);
  text-underline-offset: 2px;
  transition: color .2s;
}
.cred-link:hover { color: var(--gold-light); }

/* ── 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='%234dae8c' 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__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(77,174,140,.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; }
}

