/* OGERA public site only — linked from beyond/layout. Never load in admin. */

/* Scale the public site up on larger screens only. Phones stay at the browser
   default so rem-based type, chrome and padding don't feel oversized. */
html {
  font-size: 100%;
}
@media (min-width: 768px) {
  html {
    font-size: 112.5%;
  }
}

.ogera-public {
  --og-forest: #033d2e;
  --og-green: #07513d;
  --og-footer: #094a33;
  --og-black: #071711;
  --og-gold: #d8ad4a;
  --og-gold-light: #f1d58b;
  --og-warm: #f8f6ef;
  --og-white: #ffffff;
  --og-grey: #e7e9e4;
  --og-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --og-sans: "Jost", Inter, ui-sans-serif, system-ui, sans-serif;
  --og-max: 84rem;
  --og-header-h: 4.25rem;
  font-family: var(--og-sans);
  color: #1a2e26;
  background: var(--og-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
@media (min-width: 768px) {
  .ogera-public {
    --og-header-h: 4.75rem;
  }
}

.ogera-public h1,
.ogera-public h2,
.ogera-public h3,
.ogera-public .ogera-serif {
  font-family: var(--og-serif);
}

.ogera-public [x-cloak] {
  display: none !important;
}

/* ---- Header ---- */
.ogera-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.ogera-header.is-solid {
  background: rgba(3, 61, 46, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(7, 23, 17, 0.28);
}
.ogera-header:not(.is-solid) {
  background: linear-gradient(to bottom, rgba(7, 23, 17, 0.55), transparent);
}
.ogera-header__brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  flex-shrink: 0;
}
.ogera-header__logo {
  height: 2.55rem;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  transform-origin: center;
  will-change: filter, transform;
  animation: ogera-logo-cycle 12s ease-in-out infinite;
}
@media (min-width: 768px) {
  .ogera-header__logo {
    height: 3.55rem;
    max-width: 9rem;
  }
}
/* Three-phase loop: silver flare to 120%, full spin, then a gold pass.
   Every keyframe repeats the same filter functions in the same order so the
   browser can interpolate between them. The colour matrix values were solved
   to land the logo's forest green exactly on the brand gold. */
@keyframes ogera-logo-cycle {
  /* Phase 1 — silver flare */
  0% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
      drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
      drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  }
  14% {
    transform: rotate(0deg) scale(1.2);
    filter: grayscale(0) brightness(1.12) sepia(0) saturate(1) hue-rotate(0deg)
      drop-shadow(0 0 2px rgba(255, 255, 255, 1))
      drop-shadow(0 0 14px rgba(214, 222, 232, 0.95))
      drop-shadow(0 0 24px rgba(192, 197, 205, 0.7));
  }
  26% {
    transform: rotate(0deg) scale(1);
    filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
      drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
      drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  }

  /* Phase 2 — full spin */
  34% {
    animation-timing-function: linear;
    transform: rotate(0deg) scale(1);
    filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
      drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
      drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  }
  48% {
    animation-timing-function: linear;
    transform: rotate(180deg) scale(1.08);
    filter: grayscale(0) brightness(1.06) sepia(0) saturate(1) hue-rotate(0deg)
      drop-shadow(0 0 2px rgba(248, 250, 252, 1))
      drop-shadow(0 0 9px rgba(206, 213, 222, 0.8))
      drop-shadow(0 0 16px rgba(192, 197, 205, 0.5));
  }
  62% {
    transform: rotate(360deg) scale(1);
    filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
      drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
      drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  }

  /* Phase 3 — gold pass */
  74% {
    transform: rotate(360deg) scale(1.1);
    filter: grayscale(1) brightness(2.95) sepia(1) saturate(2.4) hue-rotate(4deg)
      drop-shadow(0 0 2px rgba(255, 240, 200, 1))
      drop-shadow(0 0 13px rgba(216, 173, 74, 0.9))
      drop-shadow(0 0 26px rgba(216, 173, 74, 0.55));
  }
  86% {
    transform: rotate(360deg) scale(1);
    filter: grayscale(1) brightness(2.95) sepia(1) saturate(2.4) hue-rotate(4deg)
      drop-shadow(0 0 1px rgba(255, 240, 200, 0.95))
      drop-shadow(0 0 8px rgba(216, 173, 74, 0.7))
      drop-shadow(0 0 16px rgba(216, 173, 74, 0.35));
  }
  100% {
    transform: rotate(360deg) scale(1);
    filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
      drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
      drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  }
}
@media (prefers-reduced-motion: reduce) {
  .ogera-header__logo {
    animation: none;
    filter:
      drop-shadow(0 0 0.5px rgba(236, 239, 243, 0.95))
      drop-shadow(0 0 1.5px rgba(192, 197, 205, 0.9))
      drop-shadow(0 0 3px rgba(160, 168, 180, 0.55))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  }
}
.ogera-header__inner {
  max-width: var(--og-max);
  margin: 0 auto;
  padding: 0 1rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  height: var(--og-header-h);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .ogera-header__inner {
    padding: 0 1.25rem;
    gap: 1rem;
  }
}
.ogera-header__nav {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 1.4rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .ogera-header__nav {
    display: flex;
  }
}
.ogera-header__link {
  color: rgba(248, 246, 239, 0.92);
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ogera-header__link:hover,
.ogera-header__link.is-active {
  color: var(--og-gold-light);
  border-bottom-color: var(--og-gold);
}
.ogera-header__link--login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(216, 173, 74, 0.55);
  border-radius: 999px;
  padding: 0.32rem 1.1rem;
  color: var(--og-gold-light);
}
.ogera-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: var(--og-warm);
  border: 1px solid rgba(248, 246, 239, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ogera-header__icon:hover {
  color: var(--og-forest);
  background: var(--og-gold);
  border-color: var(--og-gold);
}
.ogera-header__link--login:hover,
.ogera-header__link--login.is-active {
  background: var(--og-gold);
  border-color: var(--og-gold);
  color: var(--og-forest);
}
.ogera-header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--og-gold);
  color: var(--og-forest);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}
.ogera-header__cta:hover {
  background: var(--og-gold-light);
  transform: translateY(-1px);
}
@media (min-width: 1024px) {
  .ogera-header__cta {
    display: inline-flex;
  }
}
.ogera-header__menu-btn {
  margin-left: auto;
  color: var(--og-warm);
  background: transparent;
  border: 1px solid rgba(248, 246, 239, 0.35);
  border-radius: 0.5rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 1024px) {
  .ogera-header__menu-btn {
    display: none;
  }
}

/* Mobile drawer */
.ogera-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 23, 17, 0.45);
}
.ogera-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 88vw);
  height: 100%;
  height: 100dvh;
  background: var(--og-forest);
  padding: 1.25rem 1.5rem 2rem;
  padding-top: max(1.25rem, env(safe-area-inset-top));
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
}
.ogera-drawer__close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: -0.4rem -0.4rem 0 0;
  border: 0;
  background: transparent;
  color: var(--og-warm);
  border-radius: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}
.ogera-drawer__panel a {
  color: var(--og-warm);
  text-decoration: none;
  padding: 0.95rem 0;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(248, 246, 239, 0.1);
  font-size: 1.12rem;
}
.ogera-drawer__panel a:hover {
  color: var(--og-gold-light);
}
.ogera-body-lock {
  overflow: hidden;
  touch-action: none;
}

/* Buttons */
.ogera-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}
.ogera-btn:hover {
  transform: translateY(-2px);
}
.ogera-btn--primary {
  background: var(--og-gold);
  color: var(--og-forest);
}
.ogera-btn--primary:hover {
  background: var(--og-gold-light);
}
.ogera-btn--ghost {
  background: transparent;
  color: var(--og-warm);
  border-color: rgba(216, 173, 74, 0.65);
}
.ogera-btn--ghost:hover {
  border-color: var(--og-gold-light);
  color: var(--og-gold-light);
}
.ogera-btn--dark {
  background: var(--og-forest);
  color: var(--og-warm);
}
.ogera-btn--dark:hover {
  background: var(--og-green);
}
.ogera-btn--outline {
  background: rgba(7, 23, 17, 0.55);
  color: var(--og-warm);
  border-color: rgba(248, 246, 239, 0.32);
  backdrop-filter: blur(4px);
}
.ogera-btn--outline:hover {
  background: rgba(7, 23, 17, 0.72);
  border-color: rgba(241, 213, 139, 0.7);
  color: var(--og-gold-light);
}

/* Sections */
.ogera-section {
  padding: 4.5rem 0;
}
@media (min-width: 768px) {
  .ogera-section {
    padding: 6rem 0;
  }
}
@media (min-width: 1024px) {
  .ogera-section {
    padding: 7.5rem 0;
  }
}
.ogera-container {
  max-width: var(--og-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.ogera-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--og-gold);
  margin-bottom: 0.85rem;
}
.ogera-heading {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--og-forest);
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.ogera-heading em {
  font-style: italic;
  color: var(--og-gold);
}
.ogera-lede {
  margin-top: 1.1rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d5248;
}

/* Hero */
.ogera-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--og-header-h) + 2rem) 0 4rem;
  color: var(--og-warm);
}
@media (min-width: 768px) {
  .ogera-hero {
    padding: 7rem 0 5rem;
  }
}
.ogera-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.ogera-hero__photo,
.ogera-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
  animation: ogera-hero-zoom 12s ease-out forwards;
}
.ogera-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(3, 61, 46, 0.82) 0%,
      rgba(3, 61, 46, 0.62) 32%,
      rgba(7, 23, 17, 0.28) 62%,
      rgba(7, 23, 17, 0.35) 100%
    ),
    linear-gradient(to bottom, rgba(7, 23, 17, 0.35) 0%, transparent 35%, rgba(7, 23, 17, 0.55) 100%);
}
@keyframes ogera-hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
.ogera-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--og-max));
  margin: 0 auto;
  padding-left: clamp(0rem, 10vw, 12rem);
}
.ogera-hero__eyebrow {
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--og-gold);
}
.ogera-hero__title {
  margin-top: 1.25rem;
  font-family: var(--og-serif);
  font-weight: 300;
  font-size: clamp(2.15rem, 8.5vw, 5.4rem);
  line-height: 1.08;
  max-width: 24ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}
.ogera-hero__title em {
  font-style: italic;
  color: var(--og-gold-light);
}
.ogera-hero__desc {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  color: rgba(248, 246, 239, 0.88);
}
.ogera-hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ogera-hero__actions .ogera-btn {
  padding: 1.05em 2.2em;
  font-size: 1.08rem;
}
.ogera-hero__link {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--og-gold);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.ogera-hero__link:hover {
  color: var(--og-gold-light);
  gap: 0.85rem;
}
.ogera-hero__meta {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(241, 213, 139, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.ogera-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(248, 246, 239, 0.4);
  display: grid;
  place-items: center;
  color: var(--og-warm);
  text-decoration: none;
}
.ogera-scroll svg {
  width: 0.95rem;
  height: 0.95rem;
  animation: ogera-nudge 2.4s ease-in-out infinite;
}
@keyframes ogera-nudge {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
}

.ogera-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: ogera-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ogera-reveal:nth-child(1) {
  animation-delay: 0.1s;
}
.ogera-reveal:nth-child(2) {
  animation-delay: 0.22s;
}
.ogera-reveal:nth-child(3) {
  animation-delay: 0.36s;
}
.ogera-reveal:nth-child(4) {
  animation-delay: 0.5s;
}
.ogera-reveal:nth-child(5) {
  animation-delay: 0.64s;
}
@keyframes ogera-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards */
.ogera-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .ogera-cards--2 {
    grid-template-columns: 1fr 1fr;
  }
  .ogera-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ogera-card {
  border-radius: 1.4rem;
  padding: 1.75rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ogera-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7, 23, 17, 0.12);
}
.ogera-card--mission {
  background: var(--og-forest);
  color: var(--og-warm);
}
.ogera-card--vision {
  background: var(--og-warm);
  color: var(--og-forest);
  border: 1px solid rgba(216, 173, 74, 0.55);
}
.ogera-card--service {
  background: var(--og-white);
  border: 1px solid var(--og-grey);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.ogera-card__num {
  font-family: var(--og-serif);
  font-size: 1.6rem;
  color: var(--og-gold);
  margin-bottom: 0.75rem;
}
.ogera-card__title {
  font-family: var(--og-serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.ogera-card__body {
  font-size: 0.98rem;
  line-height: 1.65;
  opacity: 0.9;
  flex: 1;
}
.ogera-card__link {
  margin-top: 1.4rem;
  color: var(--og-gold);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ogera-card--service .ogera-card__link {
  color: var(--og-forest);
}
.ogera-card--service .ogera-card__link:hover {
  color: var(--og-gold);
}

/* Why + framework */
.ogera-split {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .ogera-split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
  }
}
.ogera-strength {
  display: grid;
  gap: 1rem;
}
.ogera-strength__item {
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: var(--og-warm);
  border-left: 3px solid var(--og-gold);
}
.ogera-strength__item strong {
  display: block;
  color: var(--og-forest);
  margin-bottom: 0.25rem;
}
.ogera-strength__item p {
  font-size: 0.92rem;
  color: #3d5248;
  line-height: 1.55;
  margin: 0;
}

.ogera-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .ogera-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ogera-stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 1rem;
  background: rgba(3, 61, 46, 0.06);
}
.ogera-stat__value {
  font-family: var(--og-serif);
  font-size: 2rem;
  color: var(--og-forest);
}
.ogera-stat__label {
  font-size: 0.8rem;
  color: #4a6358;
  margin-top: 0.25rem;
}

.ogera-timeline {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
  position: relative;
}
@media (min-width: 900px) {
  .ogera-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .ogera-timeline::before {
    content: "";
    position: absolute;
    top: 1.55rem;
    left: 6%;
    right: 6%;
    height: 2px;
    background: linear-gradient(90deg, var(--og-gold), rgba(216, 173, 74, 0.25));
    z-index: 0;
  }
}
.ogera-step {
  position: relative;
  z-index: 1;
  background: var(--og-white);
  border: 1px solid var(--og-grey);
  border-radius: 1.25rem;
  padding: 1.35rem 1.2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.ogera-step:hover {
  border-color: var(--og-gold);
  transform: translateY(-2px);
}
.ogera-step__n {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--og-forest);
  color: var(--og-gold-light);
  display: grid;
  place-items: center;
  font-family: var(--og-serif);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.ogera-step h3 {
  font-family: var(--og-serif);
  font-size: 1.2rem;
  color: var(--og-forest);
  margin-bottom: 0.45rem;
}
.ogera-step p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3d5248;
}

/* Gallery strip */
.ogera-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .ogera-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.ogera-gallery-grid a {
  display: block;
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--og-grey);
}
.ogera-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ogera-gallery-grid a:hover img {
  transform: scale(1.05);
}

/* CTA band */
.ogera-cta-band {
  background: linear-gradient(135deg, var(--og-forest), var(--og-green));
  color: var(--og-warm);
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.ogera-cta-band h2 {
  font-family: var(--og-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 400;
  max-width: 22ch;
  margin: 0 auto;
}
.ogera-cta-band p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(248, 246, 239, 0.85);
  line-height: 1.65;
}
.ogera-cta-band__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.ogera-footer {
  margin-top: auto;
  color: rgba(248, 246, 239, 0.88);
}
.ogera-footer__wave {
  display: block;
  line-height: 0;
}
.ogera-footer__wave svg {
  display: block;
  width: 100%;
  height: 4.5rem;
}
@media (max-width: 640px) {
  .ogera-footer__wave svg {
    height: 2.5rem;
  }
}
.ogera-wave__body {
  fill: var(--og-footer);
}
.ogera-footer__body {
  background: var(--og-footer);
  padding: 0.25rem 0 0.65rem;
}
.ogera-footer__main {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ogera-footer__main {
    grid-template-columns: auto 1fr 1.15fr 1.6fr;
    gap: 2rem;
  }
  /* Gold rules separate the text columns only — never the QR */
  .ogera-footer__col + .ogera-footer__col {
    border-left: 1px solid rgba(216, 173, 74, 0.4);
    padding-left: 2rem;
  }
}
.ogera-footer__qr img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  background: #fff;
  padding: 0.5rem;
  border-radius: 0.4rem;
}
.ogera-footer h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--og-sans);
}
.ogera-footer h3 svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.5;
  color: #fff;
  flex-shrink: 0;
}
.ogera-footer a {
  color: rgba(248, 246, 239, 0.88);
  text-decoration: none;
}
.ogera-footer a:hover {
  color: var(--og-gold-light);
}
.ogera-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ogera-footer__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.3rem;
  font-size: 0.98rem;
  line-height: 1.4;
}
.ogera-footer__list li:last-child {
  margin-bottom: 0;
}
/* Gold caret bullets */
.ogera-footer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  border-left: 0.42rem solid var(--og-gold);
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
}
.ogera-footer__contact {
  display: grid;
  gap: 0.45rem 1.25rem;
}
@media (min-width: 640px) {
  .ogera-footer__contact {
    grid-template-columns: 1fr 1fr;
  }
  /* Thin rule between the two contact columns, as in the artwork */
  .ogera-footer__contact > *:nth-child(even) {
    border-left: 1px solid rgba(216, 173, 74, 0.4);
    padding-left: 1.25rem;
  }
}
.ogera-footer__contact > a,
.ogera-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ogera-footer__contact svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #fff;
}
.ogera-footer__credits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.25;
  color: rgba(248, 246, 239, 0.62);
}
.ogera-footer__credits > span {
  padding: 0 0.9rem;
}
.ogera-footer__credits > span + span {
  border-left: 1px solid rgba(216, 173, 74, 0.4);
}
@media (max-width: 640px) {
  .ogera-footer__credits {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }
  .ogera-footer__credits > span + span {
    border-left: 0;
  }
}

/* Page hero (sibling pages) */
.ogera-page-hero {
  background: linear-gradient(120deg, var(--og-forest), var(--og-green));
  padding: calc(var(--og-header-h) + 1.75rem) 1.25rem 2.25rem;
  text-align: center;
  color: var(--og-warm);
}
.ogera-page-hero h1 {
  font-family: var(--og-serif);
  font-size: clamp(1.85rem, 6vw, 3.25rem);
  font-weight: 400;
}
.ogera-page-hero p {
  margin-top: 0.85rem;
  color: rgba(248, 246, 239, 0.85);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  line-height: 1.55;
  padding: 0 0.25rem;
}
.ogera-page-hero em {
  font-style: italic;
  color: var(--og-gold-light);
}

/* Country flags. Drawn as images because flag emoji have no glyphs on Windows,
   where the browser falls back to the two regional-indicator letters. */
.ogera-flag {
  display: inline-block;
  width: 1.15em;
  height: 0.82em;
  vertical-align: baseline;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Contact form brand overrides inside ogera-public */
.ogera-public #contact .text-brand-blue,
.ogera-public .text-brand-blue {
  color: var(--og-forest) !important;
}
.ogera-public .bg-brand-blue,
.ogera-public .from-brand-dark,
.ogera-public .to-brand-blue,
.ogera-public .bg-gradient-to-r.from-brand-dark {
  background: var(--og-forest) !important;
  background-image: none !important;
}
.ogera-public .border-t-brand-blue {
  border-top-color: var(--og-forest) !important;
}
.ogera-public .border-t-brand-gold,
.ogera-public .border-brand-gold,
.ogera-public .text-brand-gold {
  border-color: var(--og-gold) !important;
  color: var(--og-gold) !important;
}
.ogera-public .bg-brand-gold {
  background: var(--og-gold) !important;
  color: var(--og-forest) !important;
}
.ogera-public .hover\:bg-brand-gold:hover {
  background: var(--og-gold-light) !important;
}
.ogera-public .focus\:border-brand-blue:focus,
.ogera-public .focus\:ring-brand-blue\/20:focus {
  border-color: var(--og-green) !important;
  --tw-ring-color: rgba(7, 81, 61, 0.25) !important;
}
.ogera-public .bg-blue-100 {
  background: rgba(3, 61, 46, 0.1) !important;
  color: var(--og-forest) !important;
}
.ogera-public .text-blue-100 {
  color: rgba(248, 246, 239, 0.75) !important;
}
.ogera-public .bg-brand-navy {
  background: var(--og-black) !important;
}

.ogera-wa {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 40;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.ogera-wa:hover {
  transform: scale(1.05);
}
body.ogera-body-lock .ogera-wa {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 34rem) {
  .ogera-hero__inner {
    padding-left: 0;
  }
  .ogera-hero__photo,
  .ogera-hero__video {
    object-position: 64% 55%;
  }
  .ogera-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ogera-hero__actions .ogera-btn {
    width: 100%;
    min-height: 2.85rem;
  }
  .ogera-hero__eyebrow {
    letter-spacing: 0.18em;
  }
  .ogera-hero__desc {
    font-size: 1.02rem;
  }
  .ogera-scroll {
    display: none;
  }
}

/* ---- Phone polish ---- */
@media (max-width: 767px) {
  .ogera-container {
    padding: 0 1rem;
  }

  /* Softer logo motion so the mark doesn't clip the fixed header */
  .ogera-header__logo {
    animation-name: ogera-logo-cycle-mobile;
  }
  @keyframes ogera-logo-cycle-mobile {
    0% {
      transform: rotate(0deg) scale(1);
      filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
        drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
        drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
    }
    14% {
      transform: rotate(0deg) scale(1.12);
      filter: grayscale(0) brightness(1.12) sepia(0) saturate(1) hue-rotate(0deg)
        drop-shadow(0 0 2px rgba(255, 255, 255, 1))
        drop-shadow(0 0 10px rgba(214, 222, 232, 0.9))
        drop-shadow(0 0 16px rgba(192, 197, 205, 0.55));
    }
    26% {
      transform: rotate(0deg) scale(1);
      filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
        drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
        drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
    }
    34% {
      animation-timing-function: linear;
      transform: rotate(0deg) scale(1);
      filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
        drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
        drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
    }
    48% {
      animation-timing-function: linear;
      transform: rotate(180deg) scale(1.04);
      filter: grayscale(0) brightness(1.06) sepia(0) saturate(1) hue-rotate(0deg)
        drop-shadow(0 0 2px rgba(248, 250, 252, 1))
        drop-shadow(0 0 7px rgba(206, 213, 222, 0.75))
        drop-shadow(0 0 12px rgba(192, 197, 205, 0.45));
    }
    62% {
      transform: rotate(360deg) scale(1);
      filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
        drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
        drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
    }
    74% {
      transform: rotate(360deg) scale(1.06);
      filter: grayscale(1) brightness(2.95) sepia(1) saturate(2.4) hue-rotate(4deg)
        drop-shadow(0 0 2px rgba(255, 240, 200, 1))
        drop-shadow(0 0 10px rgba(216, 173, 74, 0.85))
        drop-shadow(0 0 18px rgba(216, 173, 74, 0.45));
    }
    86% {
      transform: rotate(360deg) scale(1);
      filter: grayscale(1) brightness(2.95) sepia(1) saturate(2.4) hue-rotate(4deg)
        drop-shadow(0 0 1px rgba(255, 240, 200, 0.95))
        drop-shadow(0 0 7px rgba(216, 173, 74, 0.65))
        drop-shadow(0 0 12px rgba(216, 173, 74, 0.3));
    }
    100% {
      transform: rotate(360deg) scale(1);
      filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg)
        drop-shadow(0 0 1px rgba(236, 239, 243, 0.9))
        drop-shadow(0 0 3px rgba(192, 197, 205, 0.55))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
    }
  }

  .ogera-footer__main {
    gap: 1.35rem;
  }
  .ogera-footer__qr {
    display: flex;
    justify-content: center;
  }
  .ogera-footer__qr img {
    width: 5.75rem;
    height: 5.75rem;
    padding: 0.35rem;
  }
  .ogera-footer h3 {
    font-size: 0.88rem;
    letter-spacing: 0.1em;
  }
  .ogera-footer__list li,
  .ogera-footer__contact > a,
  .ogera-footer__contact-item {
    font-size: 0.92rem;
    min-height: 2.5rem;
    align-items: center;
  }
  .ogera-footer__body {
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .ogera-footer__credits {
    padding-bottom: 0.35rem;
    font-size: 0.72rem;
  }
  .ogera-footer__credits > span {
    padding: 0 0.35rem;
  }

  /* Keep About stats readable on narrow phones */
  .ogera-public .text-4xl {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  /* Contact / forms: avoid iOS input zoom and cramped cards */
  .ogera-public input,
  .ogera-public select,
  .ogera-public textarea {
    font-size: 16px !important;
  }
  .ogera-public #contact .p-8 {
    padding: 1.25rem !important;
  }
  .ogera-public #contact .mb-16 {
    margin-bottom: 2.25rem !important;
  }
  .ogera-public #contact .text-4xl {
    font-size: 1.85rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ogera-hero__photo,
  .ogera-hero__video,
  .ogera-reveal,
  .ogera-scroll svg {
    animation: none !important;
  }
  .ogera-hero__photo,
  .ogera-hero__video {
    transform: scale(1);
  }
  .ogera-reveal {
    opacity: 1;
    transform: none;
  }
  .ogera-card:hover,
  .ogera-btn:hover,
  .ogera-step:hover {
    transform: none;
  }
  .ogera-header__logo {
    animation: none;
    filter:
      drop-shadow(0 0 0.5px rgba(236, 239, 243, 0.95))
      drop-shadow(0 0 1.5px rgba(192, 197, 205, 0.9))
      drop-shadow(0 0 3px rgba(160, 168, 180, 0.55))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28));
  }
}
