:root {
  --ozyn-cream: #f7eee3;
  --ozyn-paper: #fbf9f5;
  --ozyn-sand: #e8d8c1;
  --ozyn-forest: #2e4436;
  --ozyn-forest-deep: #1f3026;
  --ozyn-gold: #c99a4a;
  --ozyn-clay: #b77a58;
  --ozyn-charcoal: #171b19;
  --ozyn-muted: #6f746f;
  --ozyn-line: rgba(23, 27, 25, 0.15);
  --ozyn-shell: 1240px;
  --ozyn-gutter: clamp(20px, 4vw, 56px);
  --ozyn-section: clamp(80px, 10vw, 144px);
  --ozyn-heading: "DM Sans", sans-serif;
  --ozyn-body: "Mulish", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ozyn-paper);
  color: var(--ozyn-charcoal);
  font-family: var(--ozyn-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: inherit;
  font-family: var(--ozyn-heading);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

p {
  margin: 0;
}

.ozyn-shell {
  width: min(calc(100% - (var(--ozyn-gutter) * 2)), var(--ozyn-shell));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: #000;
  font-weight: 700;
}

.ozyn-section {
  padding-block: var(--ozyn-section);
}

.ozyn-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ozyn-clay);
  font-family: var(--ozyn-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ozyn-eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.ozyn-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  font-family: var(--ozyn-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ozyn-button:hover,
.ozyn-button:focus-visible {
  transform: translateY(-2px);
}

.ozyn-button-dark {
  background: var(--ozyn-charcoal);
  color: #fff;
}

.ozyn-button-dark:hover,
.ozyn-button-dark:focus-visible {
  border-color: var(--ozyn-charcoal);
  background: transparent;
  color: var(--ozyn-charcoal);
}

.ozyn-button-light {
  background: var(--ozyn-cream);
  color: var(--ozyn-forest-deep);
}

.ozyn-button-light:hover,
.ozyn-button-light:focus-visible {
  border-color: var(--ozyn-cream);
  background: transparent;
  color: var(--ozyn-cream);
}

.ozyn-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--ozyn-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.ozyn-text-link span {
  transition: transform 180ms ease;
}

.ozyn-text-link:hover span,
.ozyn-text-link:focus-visible span {
  transform: translateX(4px);
}

/* Announcement and navigation */
.ozyn-announcement {
  position: relative;
  z-index: 60;
  background: var(--ozyn-forest-deep);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--ozyn-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ozyn-announcement-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.ozyn-announcement-dot {
  width: 3px;
  height: 3px;
  flex: 0 0 3px;
  border-radius: 50%;
  background: var(--ozyn-gold);
}

.ozyn-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(23, 27, 25, 0.1);
  background: rgba(251, 249, 245, 0.96);
}

.ozyn-header.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 12px 30px rgba(18, 24, 20, 0.08);
  animation: ozyn-header-in 220ms ease both;
  backdrop-filter: blur(14px);
}

@keyframes ozyn-header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.ozyn-header-inner {
  display: grid;
  min-height: 88px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.ozyn-brand,
.ozyn-brand a {
  display: flex;
  align-items: center;
}

.ozyn-brand .custom-logo-link {
  line-height: 0;
}

.ozyn-brand .custom-logo {
  width: auto;
  max-width: 148px;
  max-height: 72px;
}

.ozyn-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ozyn-charcoal);
  font-family: var(--ozyn-heading);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
}

.ozyn-wordmark small {
  color: var(--ozyn-clay);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.ozyn-primary-nav {
  justify-self: center;
}

.ozyn-nav-list,
.ozyn-nav-list ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.ozyn-nav-list li {
  position: relative;
}

.ozyn-nav-list a {
  position: relative;
  display: block;
  padding: 33px 0 31px;
  color: var(--ozyn-charcoal);
  font-family: var(--ozyn-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.ozyn-nav-list > li > a::after {
  position: absolute;
  right: 50%;
  bottom: 25px;
  left: 50%;
  height: 1px;
  background: var(--ozyn-clay);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.ozyn-nav-list > li:hover > a::after,
.ozyn-nav-list > li.current-menu-item > a::after,
.ozyn-nav-list > li.current-menu-ancestor > a::after {
  right: 0;
  left: 0;
}

.ozyn-nav-list .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -24px;
  display: block;
  min-width: 220px;
  padding: 14px 24px;
  border: 1px solid var(--ozyn-line);
  background: var(--ozyn-paper);
  box-shadow: 0 18px 40px rgba(18, 24, 20, 0.09);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ozyn-nav-list li:hover > .sub-menu,
.ozyn-nav-list li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ozyn-nav-list .sub-menu a {
  padding: 9px 0;
  text-transform: none;
}

.ozyn-header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 10px 17px;
  border: 1px solid var(--ozyn-charcoal);
  color: var(--ozyn-charcoal);
  font-family: var(--ozyn-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.ozyn-header-cta:hover,
.ozyn-header-cta:focus-visible {
  background: var(--ozyn-charcoal);
  color: #fff;
}

.ozyn-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ozyn-charcoal);
  cursor: pointer;
}

.ozyn-menu-toggle > span:not(.screen-reader-text) {
  width: 23px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Hero */
.ozyn-hero {
  position: relative;
  min-height: min(810px, calc(100vh - 126px));
  overflow: hidden;
  background: var(--ozyn-cream);
}

.ozyn-hero::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(46, 68, 54, 0.12);
  border-radius: 50%;
  content: "";
}

.ozyn-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}

.ozyn-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(810px, calc(100vh - 126px));
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(50px, 8vw, 126px);
  padding-block: clamp(64px, 8vw, 110px);
}

.ozyn-hero-copy {
  max-width: 610px;
}

.ozyn-hero h1 {
  max-width: 610px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.03;
}

.ozyn-hero h1 strong {
  color: var(--ozyn-forest);
  font-weight: 500;
}

.ozyn-hero-text {
  max-width: 520px;
  margin-top: 28px;
  color: #4f5752;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.ozyn-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.ozyn-hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  justify-self: end;
  padding: 0 0 52px 48px;
}

.ozyn-hero-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d9c8b3;
}

.ozyn-hero-image-wrap::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.ozyn-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.ozyn-hero:hover .ozyn-hero-image-wrap img {
  transform: scale(1.025);
}

.ozyn-hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 46px;
  right: -38px;
  bottom: 2px;
  left: 0;
  border: 1px solid rgba(46, 68, 54, 0.34);
  content: "";
}

.ozyn-hero-note {
  position: absolute;
  right: -20px;
  bottom: 0;
  display: grid;
  width: min(310px, 62%);
  min-height: 116px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--ozyn-forest);
  color: #fff;
}

.ozyn-hero-note-number {
  align-self: start;
  color: var(--ozyn-gold);
  font-family: var(--ozyn-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ozyn-hero-note p {
  font-size: 14px;
  line-height: 1.55;
}

/* Trust bar */
.ozyn-trust {
  border-top: 1px solid var(--ozyn-line);
  border-bottom: 1px solid var(--ozyn-line);
  background: var(--ozyn-paper);
}

.ozyn-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ozyn-trust-item {
  display: grid;
  min-height: 154px;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 28px clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--ozyn-line);
}

.ozyn-trust-item:first-child {
  padding-left: 0;
}

.ozyn-trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.ozyn-trust-item > span {
  align-self: start;
  padding-top: 5px;
  color: var(--ozyn-clay);
  font-family: var(--ozyn-heading);
  font-size: 10px;
  font-weight: 700;
}

.ozyn-trust-item h2 {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ozyn-trust-item p {
  color: var(--ozyn-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Story */
.ozyn-story {
  background: var(--ozyn-paper);
}

.ozyn-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(56px, 9vw, 130px);
}

.ozyn-story-visual {
  position: relative;
  min-height: 590px;
  padding: 0 48px 48px 0;
}

.ozyn-story-visual::before {
  position: absolute;
  z-index: 0;
  top: 48px;
  right: 0;
  bottom: 0;
  left: 48px;
  background: var(--ozyn-sand);
  content: "";
}

.ozyn-story-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 590px;
  object-fit: cover;
  filter: saturate(0.85);
}

.ozyn-story-stamp {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  width: 136px;
  height: 136px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: var(--ozyn-forest);
  color: #fff;
  text-align: center;
}

.ozyn-story-stamp span {
  color: var(--ozyn-gold);
  font-family: var(--ozyn-heading);
  font-size: 38px;
  line-height: 1;
}

.ozyn-story-stamp small {
  max-width: 80px;
  margin-top: 6px;
  font-family: var(--ozyn-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ozyn-story-copy h2 {
  max-width: 590px;
  font-size: clamp(38px, 4.2vw, 59px);
}

.ozyn-story-copy h2 strong {
  color: var(--ozyn-forest);
  font-weight: 500;
}

.ozyn-lead {
  max-width: 570px;
  margin-top: 28px;
  color: var(--ozyn-forest);
  font-family: var(--ozyn-heading);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.ozyn-rich-copy {
  max-width: 590px;
  margin-top: 22px;
  color: #505852;
  font-size: 15px;
}

.ozyn-rich-copy p + p {
  margin-top: 14px;
}

.ozyn-credentials {
  display: grid;
  max-width: 590px;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 30px 0;
  padding: 25px 0;
  border-top: 1px solid var(--ozyn-line);
  border-bottom: 1px solid var(--ozyn-line);
}

.ozyn-credentials > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--ozyn-line);
}

.ozyn-credentials span {
  display: block;
  margin-bottom: 6px;
  color: var(--ozyn-clay);
  font-family: var(--ozyn-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ozyn-credentials p {
  font-size: 14px;
  line-height: 1.5;
}

/* Experts */
.ozyn-experts {
  position: relative;
  overflow: hidden;
  background: var(--ozyn-forest-deep);
  color: #fff;
}

.ozyn-experts::before {
  position: absolute;
  top: -230px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.ozyn-section-heading {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.ozyn-section-heading h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.ozyn-section-heading-light .ozyn-eyebrow {
  color: var(--ozyn-gold);
}

.ozyn-experts-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
}

.ozyn-expert-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}

.ozyn-expert-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #5a685f;
}

.ozyn-expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ozyn-expert-image.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #354b3d, #26382d);
}

.ozyn-expert-image.is-empty span {
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--ozyn-heading);
  font-size: 58px;
  font-weight: 500;
}

.ozyn-expert-content {
  align-self: center;
  padding-left: clamp(22px, 3vw, 38px);
}

.ozyn-expert-role {
  margin-bottom: 12px;
  color: var(--ozyn-gold);
  font-family: var(--ozyn-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ozyn-expert-content h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.3vw, 34px);
}

.ozyn-expert-content > p:not(.ozyn-expert-role) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.ozyn-expert-credentials {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.6;
}

/* Services */
.ozyn-services {
  background: var(--ozyn-cream);
}

.ozyn-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ozyn-line);
  border-bottom: 1px solid var(--ozyn-line);
}

.ozyn-service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 36px clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--ozyn-line);
  transition: background-color 200ms ease, transform 200ms ease;
}

.ozyn-service-card:first-child {
  padding-left: 0;
}

.ozyn-service-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.ozyn-service-number {
  margin-bottom: 70px;
  color: var(--ozyn-clay);
  font-family: var(--ozyn-heading);
  font-size: 11px;
  font-weight: 700;
}

.ozyn-service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 2.4vw, 36px);
}

.ozyn-service-card > p {
  max-width: 335px;
  color: #5a625d;
  font-size: 15px;
}

.ozyn-service-price {
  display: block;
  margin-top: 24px;
  color: var(--ozyn-forest);
  font-family: var(--ozyn-heading);
  font-size: 14px;
  font-weight: 700;
}

.ozyn-service-card .ozyn-text-link {
  margin-top: auto;
  padding-top: 32px;
}

/* Products */
.ozyn-products {
  background: var(--ozyn-paper);
}

.ozyn-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.ozyn-heading-row > div {
  max-width: 760px;
}

.ozyn-heading-row > .ozyn-text-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.ozyn-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 30px);
}

.ozyn-product-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ozyn-cream);
}

.ozyn-product-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 27, 22, 0.16), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity 250ms ease;
}

.ozyn-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}

.ozyn-product-image > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 16px;
  background: rgba(251, 249, 245, 0.95);
  color: var(--ozyn-charcoal);
  font-family: var(--ozyn-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.ozyn-product-image:hover img,
.ozyn-product-image:focus-visible img {
  transform: scale(1.035);
}

.ozyn-product-image:hover::after,
.ozyn-product-image:focus-visible::after,
.ozyn-product-image:hover > span,
.ozyn-product-image:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.ozyn-product-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
}

.ozyn-product-meta p {
  margin-bottom: 5px;
  color: var(--ozyn-clay);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ozyn-product-meta h3 {
  font-size: 17px;
  line-height: 1.35;
}

.ozyn-product-meta strong {
  flex: 0 0 auto;
  font-family: var(--ozyn-heading);
  font-size: 14px;
  font-weight: 600;
}

/* Corporate */
.ozyn-corporate {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 8vw, 112px);
  background: var(--ozyn-forest);
  color: #fff;
}

.ozyn-corporate::after {
  position: absolute;
  right: -90px;
  bottom: -250px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.ozyn-corporate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.55fr 1.55fr auto;
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.ozyn-corporate .ozyn-eyebrow {
  margin: 0;
  color: var(--ozyn-gold);
}

.ozyn-corporate h2 {
  max-width: 700px;
  font-size: clamp(34px, 4vw, 55px);
}

.ozyn-corporate h2 + p {
  max-width: 670px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

/* Footer */
.ozyn-footer {
  padding: 80px 0 26px;
  background: #111613;
  color: rgba(255, 255, 255, 0.68);
}

.ozyn-footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) 0.8fr 1fr minmax(220px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  padding-bottom: 68px;
}

.ozyn-footer-wordmark {
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--ozyn-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
}

.ozyn-footer-wordmark span {
  color: var(--ozyn-gold);
  font-size: 10px;
  font-weight: 600;
}

.ozyn-footer-brand p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.8;
}

.ozyn-footer-kicker,
.ozyn-footer-title {
  margin: 0 0 20px;
  color: var(--ozyn-gold);
  font-family: var(--ozyn-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ozyn-footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ozyn-footer-menu li + li {
  margin-top: 10px;
}

.ozyn-footer a:not(.ozyn-footer-wordmark) {
  color: inherit;
  font-size: 13px;
  text-decoration: none;
}

.ozyn-footer a:not(.ozyn-footer-wordmark):hover,
.ozyn-footer a:not(.ozyn-footer-wordmark):focus-visible {
  color: #fff;
}

.ozyn-footer-contact > a {
  display: block;
  margin-bottom: 10px;
}

.ozyn-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
}

.ozyn-footer-widget p,
.ozyn-footer-widget form {
  margin: 0;
}

.ozyn-footer-widget input[type="email"],
.ozyn-footer-widget input[type="text"] {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
}

.ozyn-footer-widget button,
.ozyn-footer-widget input[type="submit"] {
  margin-top: 12px;
  padding: 12px 18px;
  border: 1px solid var(--ozyn-gold);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--ozyn-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ozyn-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.035em;
}

/* Standard WordPress content */
.ozyn-content-shell {
  width: min(calc(100% - (var(--ozyn-gutter) * 2)), var(--ozyn-shell));
  min-height: 60vh;
  margin-inline: auto;
  padding-block: clamp(68px, 9vw, 126px);
}

.ozyn-page-header {
  max-width: 880px;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.ozyn-page-header h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.ozyn-page-header-compact {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.ozyn-page-header-compact .ozyn-eyebrow {
  justify-content: center;
}

.ozyn-single-byline,
.ozyn-archive-description {
  margin-top: 20px;
  color: var(--ozyn-muted);
}

.ozyn-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 28px;
}

.ozyn-post-card {
  border-bottom: 1px solid var(--ozyn-line);
  padding-bottom: 30px;
}

.ozyn-post-image {
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--ozyn-cream);
  color: var(--ozyn-clay);
  font-family: var(--ozyn-heading);
  font-size: 42px;
  text-decoration: none;
}

.ozyn-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.ozyn-post-image:hover img {
  transform: scale(1.03);
}

.ozyn-post-meta {
  margin-bottom: 10px;
  color: var(--ozyn-clay);
  font-family: var(--ozyn-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ozyn-post-content h2 {
  margin-bottom: 14px;
  font-size: 25px;
  line-height: 1.25;
}

.ozyn-post-content h2 a {
  text-decoration: none;
}

.ozyn-post-content > p:not(.ozyn-post-meta) {
  margin-bottom: 20px;
  color: var(--ozyn-muted);
  font-size: 14px;
}

.ozyn-pagination {
  margin-top: 60px;
}

.ozyn-pagination .nav-links {
  display: flex;
  gap: 8px;
}

.ozyn-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ozyn-line);
  font-family: var(--ozyn-heading);
  font-size: 12px;
  text-decoration: none;
}

.ozyn-pagination .current {
  border-color: var(--ozyn-forest);
  background: var(--ozyn-forest);
  color: #fff;
}

.ozyn-single-shell {
  max-width: 1100px;
}

.ozyn-single-image {
  max-width: 1040px;
  margin: 0 auto clamp(50px, 7vw, 84px);
}

.ozyn-single-image img {
  width: 100%;
}

.ozyn-entry-content {
  max-width: 760px;
  margin-inline: auto;
  color: #3e4540;
  font-size: 17px;
}

.ozyn-entry-content > * + * {
  margin-top: 1.4em;
}

.ozyn-entry-content h2,
.ozyn-entry-content h3,
.ozyn-entry-content h4 {
  margin-top: 1.8em;
  color: var(--ozyn-charcoal);
}

.ozyn-entry-content h2 { font-size: clamp(31px, 4vw, 43px); }
.ozyn-entry-content h3 { font-size: clamp(25px, 3vw, 33px); }
.ozyn-entry-content h4 { font-size: 22px; }

.ozyn-entry-content a {
  color: var(--ozyn-forest);
}

.ozyn-entry-content blockquote {
  margin: 2em 0;
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--ozyn-gold);
  color: var(--ozyn-forest);
  font-family: var(--ozyn-heading);
  font-size: 23px;
  line-height: 1.5;
}

.ozyn-entry-content ul,
.ozyn-entry-content ol {
  padding-left: 1.4em;
}

.ozyn-entry-content img,
.ozyn-entry-content .wp-block-image {
  height: auto;
}

.ozyn-entry-content .alignwide {
  width: min(1000px, calc(100vw - (var(--ozyn-gutter) * 2)));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.ozyn-entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.ozyn-post-footer,
.ozyn-post-navigation,
.ozyn-comments {
  max-width: 760px;
  margin: 54px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--ozyn-line);
}

.ozyn-post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ozyn-post-navigation a {
  display: block;
  font-family: var(--ozyn-heading);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.ozyn-post-navigation a span {
  display: block;
  margin-bottom: 6px;
  color: var(--ozyn-clay);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ozyn-post-navigation .nav-next {
  text-align: right;
}

.ozyn-comments h2,
.ozyn-comments .comment-reply-title {
  margin-bottom: 24px;
  font-size: 30px;
}

.ozyn-comments .comment-list {
  padding: 0;
  list-style: none;
}

.ozyn-comments .comment-body {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--ozyn-line);
}

.ozyn-comments input:not([type="submit"]),
.ozyn-comments textarea,
.search-form input[type="search"] {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--ozyn-line);
  border-radius: 0;
  background: #fff;
}

.ozyn-comments input[type="submit"],
.search-form input[type="submit"] {
  padding: 14px 22px;
  border: 0;
  border-radius: 0;
  background: var(--ozyn-charcoal);
  color: #fff;
  font-family: var(--ozyn-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ozyn-empty {
  max-width: 620px;
  padding: 50px;
  background: var(--ozyn-cream);
}

.ozyn-empty h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.ozyn-not-found {
  display: flex;
  min-height: 64vh;
  align-items: center;
  padding-block: 90px;
  background: var(--ozyn-cream);
  text-align: center;
}

.ozyn-not-found .ozyn-eyebrow {
  justify-content: center;
}

.ozyn-not-found h1 {
  font-size: clamp(44px, 7vw, 86px);
}

.ozyn-not-found p:not(.ozyn-eyebrow) {
  margin: 20px auto 30px;
  color: var(--ozyn-muted);
}

.ozyn-full-width-entry > .alignfull:first-child {
  margin-top: 0;
}

/* Forms and Ecwid */
.ec-store,
.ec-store .form-control,
.ec-store button,
.ec-store input,
.ec-store select,
.ec-store textarea {
  font-family: var(--ozyn-body) !important;
}

.ec-store h1,
.ec-store h2,
.ec-store h3,
.ec-store h4,
.ec-store .grid-product__title-inner,
.ec-store .product-details__product-title {
  font-family: var(--ozyn-heading) !important;
}

.ec-store .form-control,
.ec-store .form-control--primary,
.ec-store .ecwid-btn,
.ec-store button {
  border-radius: 0 !important;
}

.ec-store .form-control--primary .form-control__button,
.ec-store .ecwid-btn--primary,
.ec-store .details-product-purchase__add-buttons button {
  background: var(--ozyn-forest) !important;
}

.ec-store .grid-product__image,
.ec-store .grid-product__wrap-inner,
.ec-store .grid-product__picture {
  border-radius: 0 !important;
}

/* Responsive */
@media (max-width: 1120px) {
  .ozyn-header-inner {
    gap: 22px;
  }

  .ozyn-nav-list,
  .ozyn-nav-list ul {
    gap: 18px;
  }

  .ozyn-nav-list a {
    font-size: 11px;
  }

  .ozyn-expert-card {
    grid-template-columns: 160px 1fr;
  }

  .ozyn-footer-top {
    grid-template-columns: 1.5fr 0.8fr 1fr;
  }

  .ozyn-footer-newsletter {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 980px) {
  .ozyn-header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto auto;
  }

  .ozyn-menu-toggle {
    display: flex;
    grid-column: 3;
  }

  .ozyn-header-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .ozyn-primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(420px, 90vw);
    align-items: center;
    justify-content: center;
    padding: 90px 44px 50px;
    background: var(--ozyn-paper);
    box-shadow: -20px 0 60px rgba(18, 24, 20, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 280ms ease;
  }

  .ozyn-primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .ozyn-menu-toggle {
    position: relative;
    z-index: 2;
  }

  .ozyn-menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .ozyn-menu-toggle[aria-expanded="true"] > span:not(.screen-reader-text):nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .ozyn-nav-list,
  .ozyn-nav-list ul {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .ozyn-nav-list a {
    padding: 13px 0;
    border-bottom: 1px solid var(--ozyn-line);
    font-size: 17px;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .ozyn-nav-list > li > a::after {
    display: none;
  }

  .ozyn-nav-list .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .ozyn-nav-list .sub-menu a {
    font-size: 14px;
  }

  .ozyn-hero,
  .ozyn-hero-grid {
    min-height: 0;
  }

  .ozyn-hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 52px;
  }

  .ozyn-hero-visual {
    padding-left: 0;
  }

  .ozyn-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ozyn-trust-item:nth-child(2) {
    border-right: 0;
  }

  .ozyn-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--ozyn-line);
  }

  .ozyn-trust-item:first-child,
  .ozyn-trust-item:nth-child(3) {
    padding-left: 0;
  }

  .ozyn-trust-item:nth-child(2),
  .ozyn-trust-item:last-child {
    padding-right: 0;
  }

  .ozyn-story-grid {
    gap: 56px;
  }

  .ozyn-story-visual,
  .ozyn-story-visual > img {
    min-height: 500px;
    height: 500px;
  }

  .ozyn-expert-card {
    grid-template-columns: 1fr;
  }

  .ozyn-expert-image {
    max-height: 420px;
  }

  .ozyn-expert-content {
    padding: 26px 0 0;
  }

  .ozyn-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

  .ozyn-corporate-grid {
    grid-template-columns: 1fr 2fr;
  }

  .ozyn-corporate-grid .ozyn-button {
    grid-column: 2;
    justify-self: start;
  }

  .ozyn-post-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --ozyn-section: 76px;
  }

  .ozyn-announcement-inner {
    min-height: 34px;
    padding-block: 7px;
  }

  .ozyn-announcement-inner span:nth-child(n+2) {
    display: none;
  }

  .ozyn-header-cta {
    display: none;
  }

  .ozyn-header-inner {
    grid-template-columns: 1fr auto;
  }

  .ozyn-menu-toggle {
    grid-column: 2;
  }

  .ozyn-brand .custom-logo {
    max-width: 118px;
    max-height: 62px;
  }

  .ozyn-hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 58px 76px;
  }

  .ozyn-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .ozyn-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .ozyn-hero-visual {
    max-width: 520px;
    padding: 0 22px 42px 0;
    justify-self: start;
  }

  .ozyn-hero-visual::before {
    right: 0;
  }

  .ozyn-hero-note {
    right: 0;
    width: min(300px, 74%);
    min-height: 96px;
    padding: 18px;
  }

  .ozyn-trust-grid {
    grid-template-columns: 1fr;
  }

  .ozyn-trust-item,
  .ozyn-trust-item:first-child,
  .ozyn-trust-item:nth-child(2),
  .ozyn-trust-item:nth-child(3),
  .ozyn-trust-item:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ozyn-line);
  }

  .ozyn-trust-item:last-child {
    border-bottom: 0;
  }

  .ozyn-story-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .ozyn-story-visual {
    min-height: 430px;
    height: auto;
    padding: 0 30px 30px 0;
  }

  .ozyn-story-visual > img {
    min-height: 430px;
    height: 430px;
  }

  .ozyn-story-stamp {
    width: 108px;
    height: 108px;
  }

  .ozyn-story-stamp span {
    font-size: 31px;
  }

  .ozyn-story-copy h2,
  .ozyn-section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .ozyn-credentials {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ozyn-credentials > div + div {
    padding: 18px 0 0;
    border-top: 1px solid var(--ozyn-line);
    border-left: 0;
  }

  .ozyn-experts-grid,
  .ozyn-services-grid {
    grid-template-columns: 1fr;
  }

  .ozyn-expert-image {
    max-height: none;
  }

  .ozyn-services-grid {
    border: 0;
  }

  .ozyn-service-card,
  .ozyn-service-card:first-child,
  .ozyn-service-card:last-child {
    min-height: 360px;
    padding: 30px 0;
    border-top: 1px solid var(--ozyn-line);
    border-right: 0;
  }

  .ozyn-service-card:last-child {
    border-bottom: 1px solid var(--ozyn-line);
  }

  .ozyn-service-number {
    margin-bottom: 44px;
  }

  .ozyn-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ozyn-products-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ozyn-product-image {
    aspect-ratio: 5 / 6;
  }

  .ozyn-corporate-grid {
    grid-template-columns: 1fr;
  }

  .ozyn-corporate-grid .ozyn-button {
    grid-column: 1;
  }

  .ozyn-footer {
    padding-top: 66px;
  }

  .ozyn-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 42px 30px;
  }

  .ozyn-footer-brand,
  .ozyn-footer-newsletter {
    grid-column: 1 / -1;
  }

  .ozyn-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .ozyn-page-header-compact {
    text-align: left;
  }

  .ozyn-page-header-compact .ozyn-eyebrow {
    justify-content: flex-start;
  }

  .ozyn-post-grid {
    grid-template-columns: 1fr;
  }

  .ozyn-post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .ozyn-post-navigation .nav-next {
    text-align: left;
  }

  .ozyn-entry-content {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Full Site Editing templates, version 2.0 */
.wp-site-blocks {
  padding: 0;
}

.wp-site-blocks > * {
  margin-block-start: 0;
}

.ozyn-fse-announcement {
  padding: 10px var(--ozyn-gutter);
  background: var(--ozyn-forest-deep);
  color: rgba(255, 255, 255, 0.86);
}

.ozyn-fse-announcement p {
  margin: 0;
  font-family: var(--ozyn-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.ozyn-fse-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--ozyn-line);
  background: rgba(251, 249, 245, 0.97);
}

.ozyn-fse-header-inner {
  min-height: 88px;
  gap: 30px;
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-title {
  flex: 0 0 auto;
  margin: 0;
}

.ozyn-fse-brand {
  flex: 0 0 auto;
  gap: 12px;
}

.ozyn-fse-brand .wp-block-site-logo,
.ozyn-fse-brand .wp-block-site-logo a {
  margin: 0;
  line-height: 0;
}

.ozyn-fse-brand .custom-logo {
  width: auto;
  max-width: 132px;
  max-height: 70px;
  object-fit: contain;
}

.wp-custom-logo .ozyn-fse-brand .ozyn-fse-title {
  display: none;
}

.ozyn-fse-title a {
  color: var(--ozyn-charcoal);
  font-family: var(--ozyn-heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.ozyn-fse-navigation {
  font-family: var(--ozyn-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.ozyn-fse-navigation a {
  padding: 30px 0;
  text-decoration: none;
}

.ozyn-fse-navigation .wp-block-navigation__container {
  gap: clamp(18px, 2.1vw, 32px);
}

.ozyn-fse-header-button {
  flex: 0 0 auto;
}

.ozyn-fse-header-button .wp-block-button__link {
  padding: 13px 19px;
  border: 1px solid var(--ozyn-charcoal);
  border-radius: 0;
  color: var(--ozyn-charcoal);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.ozyn-fse-header-button .wp-block-button__link:hover {
  background: var(--ozyn-charcoal);
  color: #fff;
}

.ozyn-fse-section {
  padding-block: var(--ozyn-section);
}

.ozyn-fse-hero {
  position: relative;
  overflow: hidden;
  background: var(--ozyn-cream);
}

.ozyn-fse-hero::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(46, 68, 54, 0.12);
  border-radius: 50%;
  content: "";
}

.ozyn-fse-hero-inner {
  position: relative;
  display: grid;
  min-height: min(810px, calc(100vh - 126px));
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(50px, 8vw, 126px);
  padding: clamp(64px, 8vw, 110px) var(--ozyn-gutter);
}

.ozyn-fse-hero-copy {
  max-width: 610px;
}

.ozyn-fse-hero-copy > * {
  margin-block-start: 0;
}

.ozyn-fse-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.03;
}

.ozyn-fse-hero-copy h1 strong {
  color: var(--ozyn-forest);
  font-weight: 500;
}

.ozyn-fse-hero-text {
  max-width: 520px;
  margin-top: 28px !important;
  color: #4f5752;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.ozyn-fse-actions {
  gap: 18px 26px;
  margin-top: 38px !important;
}

.ozyn-fse-actions .wp-block-button__link,
.ozyn-fse-corporate .wp-block-button__link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 15px 27px;
  border-radius: 0;
  font-family: var(--ozyn-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ozyn-fse-button-dark .wp-block-button__link {
  border: 1px solid var(--ozyn-charcoal);
  background: var(--ozyn-charcoal);
  color: #fff;
}

.ozyn-fse-button-link .wp-block-button__link {
  min-height: 52px;
  padding-inline: 0;
  border: 0;
  border-bottom: 1px solid var(--ozyn-charcoal);
  background: transparent;
  color: var(--ozyn-charcoal);
}

.ozyn-fse-hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  justify-self: end;
  padding: 0 0 52px 48px;
}

.ozyn-fse-hero-visual > * {
  margin-block-start: 0;
}

.ozyn-fse-hero-visual::before {
  position: absolute;
  z-index: 0;
  top: 46px;
  right: -38px;
  bottom: 2px;
  left: 0;
  border: 1px solid rgba(46, 68, 54, 0.34);
  content: "";
}

.ozyn-fse-hero-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: var(--ozyn-sand);
}

.ozyn-fse-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ozyn-fse-hero-note {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 0;
  width: min(310px, 62%);
  min-height: 116px;
  gap: 18px;
  padding: 24px;
  background: var(--ozyn-forest);
  color: #fff;
}

.ozyn-fse-hero-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.ozyn-fse-hero-note .ozyn-fse-note-number,
.ozyn-fse-number {
  color: var(--ozyn-clay);
  font-family: var(--ozyn-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ozyn-fse-hero-note .ozyn-fse-note-number {
  color: var(--ozyn-gold);
}

.ozyn-fse-trust {
  border-top: 1px solid var(--ozyn-line);
  border-bottom: 1px solid var(--ozyn-line);
  background: var(--ozyn-paper);
}

.ozyn-fse-trust-grid {
  gap: 0;
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-trust-grid > .wp-block-column {
  min-height: 154px;
  padding: 30px clamp(18px, 2.2vw, 32px);
  border-right: 1px solid var(--ozyn-line);
}

.ozyn-fse-trust-grid > .wp-block-column:first-child {
  padding-left: 0;
}

.ozyn-fse-trust-grid > .wp-block-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.ozyn-fse-trust-grid p,
.ozyn-fse-trust-grid h3 {
  margin-block-start: 0;
}

.ozyn-fse-trust-grid h3 {
  margin: 10px 0 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ozyn-fse-trust-grid h3 + p {
  color: var(--ozyn-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ozyn-fse-story {
  background: var(--ozyn-paper);
}

.ozyn-fse-story-grid {
  gap: clamp(56px, 9vw, 130px);
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-story-grid > .wp-block-column:first-child {
  position: relative;
  padding: 0 48px 48px 0;
}

.ozyn-fse-story-grid > .wp-block-column:first-child::before {
  position: absolute;
  z-index: 0;
  top: 48px;
  right: 0;
  bottom: 0;
  left: 48px;
  background: var(--ozyn-sand);
  content: "";
}

.ozyn-fse-story-image {
  position: relative;
  z-index: 1;
  min-height: 590px;
  margin: 0;
}

.ozyn-fse-story-image img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.ozyn-fse-story-grid h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 59px);
}

.ozyn-fse-story-grid h2 strong {
  color: var(--ozyn-forest);
  font-weight: 500;
}

.ozyn-fse-story-grid .wp-block-column:last-child > * {
  margin-block-start: 20px;
}

.ozyn-fse-story-grid .wp-block-column:last-child > .ozyn-eyebrow,
.ozyn-fse-story-grid .wp-block-column:last-child > h2 {
  margin-block-start: 0;
}

.ozyn-fse-lead {
  color: var(--ozyn-forest);
  font-family: var(--ozyn-heading);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.ozyn-fse-credentials {
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--ozyn-line);
  border-bottom: 1px solid var(--ozyn-line);
}

.ozyn-fse-credentials h6,
.ozyn-fse-footer h6 {
  margin: 0 0 7px;
  color: var(--ozyn-clay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ozyn-fse-credentials p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.ozyn-fse-inline-link {
  font-family: var(--ozyn-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.ozyn-fse-inline-link a {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.ozyn-fse-experts {
  background: var(--ozyn-forest-deep);
  color: #fff;
}

.ozyn-fse-section-heading {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 76px);
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
}

.ozyn-fse-experts .ozyn-eyebrow {
  color: var(--ozyn-gold);
}

.ozyn-fse-experts-grid {
  gap: clamp(32px, 5vw, 70px);
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-expert-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  column-gap: clamp(22px, 3vw, 38px);
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ozyn-fse-expert-card > * {
  margin-block-start: 0;
}

.ozyn-fse-expert-image {
  grid-row: 1 / 6;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: #5a685f;
}

.ozyn-fse-expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ozyn-fse-experts-grid > .wp-block-column:first-child .ozyn-fse-expert-image img {
  object-position: left center;
}

.ozyn-fse-experts-grid > .wp-block-column:last-child .ozyn-fse-expert-image img {
  object-position: right center;
}

.ozyn-fse-expert-role {
  margin-bottom: 12px;
  color: var(--ozyn-gold);
  font-family: var(--ozyn-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ozyn-fse-expert-card h3 {
  margin-bottom: 17px;
  font-size: clamp(25px, 2.3vw, 34px);
}

.ozyn-fse-expert-card h3 + p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.ozyn-fse-expert-credentials {
  margin-top: 19px !important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.6;
}

.ozyn-fse-services {
  background: var(--ozyn-cream);
}

.ozyn-fse-services-grid {
  gap: 0;
  padding-inline: var(--ozyn-gutter);
  border-top: 1px solid var(--ozyn-line);
  border-bottom: 1px solid var(--ozyn-line);
}

.ozyn-fse-services-grid > .wp-block-column {
  border-right: 1px solid var(--ozyn-line);
}

.ozyn-fse-services-grid > .wp-block-column:last-child {
  border-right: 0;
}

.ozyn-fse-service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px clamp(24px, 3vw, 44px);
}

.ozyn-fse-services-grid > .wp-block-column:first-child .ozyn-fse-service-card {
  padding-left: 0;
}

.ozyn-fse-services-grid > .wp-block-column:last-child .ozyn-fse-service-card {
  padding-right: 0;
}

.ozyn-fse-service-card > * {
  margin-block-start: 0;
}

.ozyn-fse-service-card .ozyn-fse-number {
  margin-bottom: 68px;
}

.ozyn-fse-service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 2.4vw, 36px);
}

.ozyn-fse-service-card h3 + p {
  max-width: 335px;
  color: #5a625d;
  font-size: 15px;
}

.ozyn-fse-price {
  margin-top: 24px !important;
  color: var(--ozyn-forest);
  font-family: var(--ozyn-heading);
  font-size: 14px;
  font-weight: 700;
}

.ozyn-fse-service-card .ozyn-fse-inline-link {
  margin-top: auto !important;
  padding-top: 32px;
}

.ozyn-fse-products {
  background: var(--ozyn-paper);
}

.ozyn-fse-products-heading {
  gap: 36px;
  margin-bottom: clamp(48px, 6vw, 76px);
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-products-heading > .wp-block-group {
  max-width: 760px;
}

.ozyn-fse-products-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
}

.ozyn-fse-products-grid {
  gap: clamp(16px, 2.2vw, 30px);
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-products-grid > .wp-block-column {
  position: relative;
}

.ozyn-fse-products-grid > .wp-block-column > * {
  margin-block-start: 0;
}

.ozyn-fse-product-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 18px;
  background: var(--ozyn-cream);
}

.ozyn-fse-product-image a,
.ozyn-fse-product-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.ozyn-fse-product-image img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.ozyn-fse-product-image:hover img {
  transform: scale(1.035);
}

.ozyn-fse-product-intention {
  margin-bottom: 5px !important;
  color: var(--ozyn-clay);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ozyn-fse-products-grid h3 {
  max-width: calc(100% - 60px);
  font-size: 17px;
  line-height: 1.35;
}

.ozyn-fse-product-price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: var(--ozyn-heading);
  font-size: 14px;
  font-weight: 600;
}

.ozyn-fse-corporate {
  padding-block: clamp(74px, 8vw, 112px);
  background: var(--ozyn-forest);
  color: #fff;
}

.ozyn-fse-corporate-inner {
  display: grid;
  grid-template-columns: 0.55fr 1.55fr auto;
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding-inline: var(--ozyn-gutter);
}

.ozyn-fse-corporate-inner > * {
  margin-block-start: 0;
}

.ozyn-fse-corporate .ozyn-eyebrow {
  margin: 0;
  color: var(--ozyn-gold);
}

.ozyn-fse-corporate h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 55px);
}

.ozyn-fse-corporate h2 + p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.ozyn-fse-button-light .wp-block-button__link {
  background: var(--ozyn-cream);
  color: var(--ozyn-forest-deep);
}

.ozyn-fse-footer {
  padding: 80px var(--ozyn-gutter) 26px;
  background: #111613;
  color: rgba(255, 255, 255, 0.68);
}

.ozyn-fse-footer-grid {
  gap: clamp(34px, 6vw, 82px);
  margin-bottom: 58px;
}

.ozyn-fse-footer p,
.ozyn-fse-footer li,
.ozyn-fse-footer a {
  color: inherit;
  font-size: 13px;
  line-height: 1.75;
}

.ozyn-fse-footer-title a {
  color: #fff;
  font-family: var(--ozyn-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.ozyn-fse-footer h6 {
  color: var(--ozyn-gold);
}

.ozyn-fse-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ozyn-fse-footer li + li {
  margin-top: 7px;
}

.ozyn-fse-footer .wp-block-button__link {
  padding: 12px 17px;
  border: 1px solid var(--ozyn-gold);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 9px;
}

.ozyn-fse-footer .wp-block-separator {
  border-color: rgba(255, 255, 255, 0.12);
}

.ozyn-fse-footer-bottom {
  gap: 20px;
  padding-top: 10px;
}

.ozyn-fse-footer-bottom p {
  font-size: 11px;
}

.ozyn-fse-content {
  min-height: 60vh;
  padding: clamp(68px, 9vw, 126px) var(--ozyn-gutter);
}

.ozyn-fse-content > .wp-block-query-title,
.ozyn-fse-content > .wp-block-post-title {
  margin-bottom: clamp(44px, 6vw, 76px);
  font-size: clamp(42px, 6vw, 76px);
}

.ozyn-fse-content .wp-block-post-template {
  gap: 42px 28px;
}

.ozyn-fse-content .wp-block-post-featured-image img {
  object-fit: cover;
}

.ozyn-fse-content .wp-block-post-title a {
  text-decoration: none;
}

.ozyn-fse-single > .wp-block-post-date,
.ozyn-fse-single > .wp-block-post-author-name,
.ozyn-fse-single > .wp-block-post-title {
  text-align: center;
}

.ozyn-fse-single > .wp-block-post-featured-image {
  margin-block: 42px 70px;
}

.ozyn-fse-404 {
  min-height: 64vh;
  padding: 110px var(--ozyn-gutter);
  background: var(--ozyn-cream);
}

.ozyn-fse-404 h1 {
  font-size: clamp(44px, 7vw, 86px);
}

@media (max-width: 980px) {
  .ozyn-fse-header-inner {
    min-height: 76px;
  }

  .ozyn-fse-header-button {
    display: none;
  }

  .ozyn-fse-navigation {
    margin-left: auto;
  }

  .ozyn-fse-navigation .wp-block-navigation__responsive-container.is-menu-open {
    padding: 34px;
    background: var(--ozyn-paper);
    color: var(--ozyn-charcoal);
  }

  .ozyn-fse-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    align-items: flex-start;
    gap: 16px;
    font-size: 19px;
    text-transform: none;
  }

  .ozyn-fse-hero-inner {
    grid-template-columns: 1fr 0.86fr;
    gap: 52px;
  }

  .ozyn-fse-hero-visual {
    padding-left: 0;
  }

  .ozyn-fse-story-grid {
    gap: 56px;
  }

  .ozyn-fse-story-image,
  .ozyn-fse-story-image img {
    min-height: 500px;
    height: 500px;
  }

  .ozyn-fse-expert-card {
    grid-template-columns: 1fr;
  }

  .ozyn-fse-expert-image {
    grid-row: auto;
    max-height: 420px;
    margin-bottom: 24px;
  }

  .ozyn-fse-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

  .ozyn-fse-corporate-inner {
    grid-template-columns: 1fr 2fr;
  }

  .ozyn-fse-corporate-inner > .wp-block-buttons {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .ozyn-fse-announcement p {
    font-size: 9px;
  }

  .ozyn-fse-title a {
    font-size: 18px;
  }

  .ozyn-fse-hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 58px 76px;
  }

  .ozyn-fse-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .ozyn-fse-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ozyn-fse-hero-visual {
    max-width: 520px;
    padding: 0 22px 42px 0;
    justify-self: start;
  }

  .ozyn-fse-hero-note {
    right: 0;
    width: min(300px, 74%);
    min-height: 96px;
    padding: 18px;
  }

  .ozyn-fse-trust-grid,
  .ozyn-fse-story-grid,
  .ozyn-fse-experts-grid,
  .ozyn-fse-services-grid,
  .ozyn-fse-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ozyn-fse-trust-grid > .wp-block-column {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ozyn-line);
  }

  .ozyn-fse-trust-grid > .wp-block-column:last-child {
    border-bottom: 0;
  }

  .ozyn-fse-story-grid > .wp-block-column:first-child {
    padding: 0 30px 30px 0;
  }

  .ozyn-fse-story-image,
  .ozyn-fse-story-image img {
    min-height: 430px;
    height: 430px;
  }

  .ozyn-fse-story-grid h2,
  .ozyn-fse-section-heading h2,
  .ozyn-fse-products-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .ozyn-fse-expert-image {
    max-height: none;
  }

  .ozyn-fse-services-grid {
    border: 0;
  }

  .ozyn-fse-services-grid > .wp-block-column {
    border-right: 0;
    border-top: 1px solid var(--ozyn-line);
  }

  .ozyn-fse-service-card,
  .ozyn-fse-services-grid > .wp-block-column:first-child .ozyn-fse-service-card,
  .ozyn-fse-services-grid > .wp-block-column:last-child .ozyn-fse-service-card {
    min-height: 360px;
    padding: 30px 0;
  }

  .ozyn-fse-service-card .ozyn-fse-number {
    margin-bottom: 44px;
  }

  .ozyn-fse-products-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .ozyn-fse-products-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ozyn-fse-product-image {
    aspect-ratio: 5 / 6;
  }

  .ozyn-fse-corporate-inner {
    grid-template-columns: 1fr;
  }

  .ozyn-fse-corporate-inner > .wp-block-buttons {
    grid-column: 1;
  }

  .ozyn-fse-footer-grid {
    gap: 42px;
  }

  .ozyn-fse-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .ozyn-fse-content .wp-block-post-template {
    grid-template-columns: 1fr;
  }
}
