@font-face {
  font-family: "Somar Sans";
  src: url("/fonts/somar/SomarSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Somar Sans";
  src: url("/fonts/somar/SomarSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Somar Sans";
  src: url("/fonts/somar/SomarSans-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ome-bg: #2d2d32;
  --ome-text: #d3d3d3;
  --ome-white: #ffffff;
  --ome-muted: rgba(211, 211, 211, 0.82);
  --ome-pink: #ff0055;
  --ome-logo-pink: #ff32ab;
  --ome-orange: #ffa40e;
  --ome-blue: #1178ff;
  --ome-border: rgba(255, 255, 255, 0.12);
  --ome-glass: rgba(45, 45, 50, 0.64);
  --ome-container: min(1200px, calc(100% - 40px));
  --ome-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ome-bg);
  color: var(--ome-text);
  font-family: "Somar Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, video { display: block; max-width: 100%; }
.ome-container { width: var(--ome-container); margin-inline: auto; }

.ome-header {
  position: fixed;
  top: 28px;
  right: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}
.ome-header.is-scrolled {
  top: 16px;
  background: var(--ome-glass);
  border-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
  box-shadow: var(--ome-shadow);
}
.ome-logo img { width: 118px; height: auto; }
.ome-nav { display: flex; align-items: center; gap: 8px; }
.ome-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}
.ome-nav a:hover { color: var(--ome-white); background: rgba(255, 255, 255, 0.09); }
.ome-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ome-border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.ome-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 20px;
  background: var(--ome-white);
}

.ome-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.ome-hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.72);
}
.ome-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(45, 45, 50, 0.92) 0%, rgba(45, 45, 50, 0.58) 48%, rgba(45, 45, 50, 0.9) 100%), linear-gradient(180deg, rgba(45, 45, 50, 0.18) 0%, #2d2d32 100%);
}
.ome-hero-content {
    width: var(--ome-container);
    padding-top: 320px;
}
.ome-hero h1 {
    max-width: 320px;
    margin: 0;
    color: var(--ome-white);
    font-size: clamp(52px, 2vw, 118px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0;
}
.ome-hero p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.2vw, 25px);
}
.ome-button {
  display: inline-flex;
  margin-top: 34px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ome-white);
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.ome-button:hover { transform: translateY(-2px); background: var(--ome-pink); }

.ome-about-original { padding: 115px 0 78px; }
.ome-about-wrap {
  width: min(1500px, calc(100% - 72px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content logo";
  align-items: center;
  gap: 60px;
}
.ome-about-content { grid-area: content; justify-self: end; width: min(640px, 100%); }
.ome-about-logo { grid-area: logo; justify-self: center; width: min(590px, 100%); }
.ome-about-logo img {
    width: 70%;
    margin: 0 auto;
}
.ome-about-content h2 {
    margin: 0 0 30px;
    color: var(--ome-text);
    font-size: clamp(72px, 5vw, 132px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    white-space: nowrap;
}
.ome-about-content p {
  margin: 0;
  color: var(--ome-muted);
  font-size: clamp(17px, 1.28vw, 24px);
  line-height: 1.55;
  text-align: right;
}
.ome-about-statements {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 14vw, 230px);
  align-items: start;
}
.ome-about-statements article { text-align: right; }
.ome-about-statements h3 {
  margin: 0 0 8px;
  color: var(--ome-text);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
}
.ome-about-statements p {
  margin: 0;
  color: var(--ome-muted);
  font-size: clamp(17px, 1.35vw, 25px);
  line-height: 1.52;
}

.ome-image-title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  color: var(--ome-text);
  font-size: clamp(36px, 4.2vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: center;
  z-index: 1;
}
.ome-image-title::before, .ome-image-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
}
.ome-image-title::before {
  width: 78px;
  height: 58px;
  right: -24px;
  bottom: -6px;
  background: var(--ome-orange);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 0 100%);
}
.ome-image-title::after {
  width: 54px;
  height: 54px;
  left: -28px;
  top: 12px;
  background: var(--ome-pink);
}

.ome-tracks-original { padding: 70px 0 95px; }
.ome-tracks-title { margin-bottom: 70px; }
.ome-tracks-title::after { left: -42px; width: 58px; height: 58px; }
.ome-track-stack {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.ome-track-strip {
  position: relative;
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: clamp(145px, 16vw, 218px);
  padding: 34px clamp(32px, 8vw, 150px);
  overflow: hidden;
  background-image: var(--track-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
  cursor: pointer;
  transition: filter 0.45s ease, min-height 0.45s ease;
}
.ome-track-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.ome-track-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 164, 14, 0.35);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(2px);
}
.ome-track-strip:hover { filter: grayscale(0); min-height: clamp(160px, 18vw, 250px); }
.ome-track-strip:hover::after { transform: translateX(0); }
.ome-track-strip span {
  position: relative;
  z-index: 2;
  color: var(--ome-white);
  font-size: clamp(44px, 4.8vw, 78px);
  font-weight: 900;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.38);
}

.ome-method-original { padding: 78px 0 105px; text-align: center; }
.ome-method-title { margin-bottom: 42px; }
.ome-method-title::before { right: -62px; bottom: -5px; }
.ome-method-title::after { left: -70px; top: -6px; width: 40px; height: 74px; }
.ome-method-copy {
  max-width: 1350px;
  margin: 0 auto;
  color: var(--ome-muted);
  font-size: clamp(26px, 3.1vw, 50px);
  font-weight: 400;
  line-height: 1.45;
}

.ome-projects-original { padding: 20px 0 120px; }
.ome-projects-title { margin-bottom: 78px; }
.ome-projects-title::before { right: 15%; bottom: -8px; }
.ome-projects-title::after { left: -52px; top: 20px; width: 36px; height: 72px; }
.ome-project-bg {
  width: min(1300px, 95%);
  margin: 0 auto;
  padding: 22px 0;
  background-image: url("/wp-content/uploads/2023/03/omeBg04.svg");
  background-position: top center;
  background-repeat: repeat;
  background-size: auto;
}
.ome-project-list-original { width: min(1200px, 90%); margin: 0 auto; display: grid; gap: 0; }
.ome-project-item {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-image: var(--project-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
  transition: filter 0.45s ease, transform 0.45s ease;
}
.ome-project-item:hover { filter: grayscale(0.2); transform: translateY(-4px); }
.ome-project-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -58px;
  top: -34px;
  width: 84px;
  height: 300px;
  background: var(--ome-pink);
  clip-path: polygon(30% 0, 100% 0, 72% 100%, 0 100%);
}
.ome-project-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -60px;
  bottom: -36px;
  width: 190px;
  height: 78px;
  background: var(--ome-orange);
}
.ome-project-item:nth-child(even)::before { right: auto; left: -58px; background: var(--ome-blue); }
.ome-project-item:nth-child(even)::after { left: auto; right: -60px; background: var(--ome-pink); }
.ome-project-details {
  width: min(520px, calc(100% - 40px));
  margin-inline: auto 90px;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(63, 63, 68, 0.62);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  text-align: center;
}
.ome-project-item:nth-child(even) .ome-project-details { margin-inline: 90px auto; }
.ome-project-details h3 {
  margin: 0 0 12px;
  color: var(--ome-text);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.1;
}
.ome-project-details p {
  margin: 0;
  color: var(--ome-muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
}

.ome-partners-original { padding: 25px 0 125px; }
.ome-partners-title { margin-bottom: 120px; }
.ome-partners-title::before { right: 34%; bottom: -10px; width: 76px; height: 68px; }
.ome-partners-title::after { left: 4%; top: 42px; width: 70px; height: 36px; background: var(--ome-pink); }
.ome-partner-logos {
  width: min(1720px, calc(100% - 110px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: clamp(40px, 9vw, 180px);
  direction: ltr;
}
.ome-partner-logos button {
  display: grid;
  place-items: center;
  min-height: 140px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.ome-partner-logos img {
  max-width: 210px;
  max-height: 120px;
  object-fit: contain;
  filter: brightness(1.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ome-partner-logos button:hover img { transform: translateY(-5px) scale(1.04); }

.ome-contact { padding: 70px 0 90px; text-align: center; }
.ome-contact h2 {
  margin: 0 0 26px;
  color: var(--ome-text);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.1;
}
.ome-contact-form {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: right;
}
.ome-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ome-contact-form label { display: grid; gap: 8px; color: rgba(255, 255, 255, 0.78); font-size: 15px; }
.ome-contact-form input, .ome-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ome-white);
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ome-contact-form textarea { resize: vertical; min-height: 135px; }
.ome-contact-form input:focus, .ome-contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}
.ome-contact-form button {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  padding: 12px 28px;
  background: var(--ome-pink);
  color: var(--ome-white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.ome-contact-form button:hover { transform: translateY(-2px); filter: brightness(1.05); }

.ome-footer {
  padding: 38px 0 54px;
  border-top: 1px solid var(--ome-border);
}
.ome-footer-grid {
  width: var(--ome-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ome-footer p {
    margin: 0;
    color: var(--ome-muted);
    font-size: clamp(16px, 1vw, 24px);
}
.ome-footer-actions { display: flex; align-items: center; gap: 18px; direction: ltr; }
.ome-footer-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 1vw, 24px);
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}
.ome-footer-actions a:hover { color: var(--ome-white); transform: translateY(-2px); }

.ome-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(55, 55, 60, 0.62);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.ome-modal.is-open { opacity: 1; pointer-events: auto; }
.ome-modal-card {
  position: relative;
  width: min(640px, 100%);
  min-height: 260px;
  padding: 42px 32px 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(63, 63, 68, 0.7);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.36);
  transform: translateY(34px) scale(0.98);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}
.ome-modal.is-open .ome-modal-card { transform: translateY(0) scale(1); }
.ome-modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--modal-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.55);
  transform: scale(1.04);
}
.ome-modal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(45, 45, 50, 0.58);
  backdrop-filter: blur(2px);
}
.ome-modal-close {
  position: absolute;
  top: 10px;
  left: 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.ome-modal-close:hover { color: var(--ome-pink); }
.ome-modal-card h2 {
  margin: 0 0 18px;
  color: var(--ome-white);
  text-align: center;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
}
.ome-modal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}
.ome-modal-partner { text-align: center; }
.ome-modal-partner img {
  width: min(230px, 70%);
  max-height: 130px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(9px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

@media (max-width: 1040px) {
  .ome-about-wrap, .ome-about-statements { grid-template-columns: 1fr; gap: 45px; }
  .ome-about-wrap { grid-template-areas: "logo" "content"; margin-bottom: 70px; }
  .ome-about-content, .ome-about-logo { justify-self: center; }
  .ome-about-content h2, .ome-about-content p, .ome-about-statements article { text-align: center; }
  .ome-partner-logos { grid-template-columns: repeat(2, 1fr); width: min(880px, calc(100% - 40px)); }
}

@media (max-width: 820px) {
  :root { --ome-container: min(100% - 28px, 1180px); }
  .ome-header { top: 14px; width: calc(100% - 28px); }
  .ome-menu-button { display: block; }
  .ome-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--ome-border);
    border-radius: 24px;
    background: rgba(35, 35, 40, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--ome-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .ome-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .ome-nav a { padding: 14px 16px; font-size: 17px; }
  .ome-hero { min-height: 92svh; }
  .ome-hero-content { padding-top: 96px; }
  .ome-hero h1 { font-size: clamp(48px, 15vw, 78px); }
  .ome-about-original { padding-top: 84px; }
  .ome-about-wrap { width: min(100% - 28px, 780px); }
  .ome-about-logo { width: min(380px, 90%); }
  .ome-about-content h2 { white-space: normal; }
  .ome-track-strip { justify-content: center; min-height: 138px; }
  .ome-track-strip:hover { min-height: 155px; }
  .ome-track-strip span { text-align: center; }
  .ome-method-copy { font-size: clamp(24px, 7vw, 38px); }
  .ome-project-bg { width: 100%; }
  .ome-project-list-original { width: 100%; }
  .ome-project-item { min-height: 450px; padding: 52px 20px; }
  .ome-project-item::before, .ome-project-item::after { display: none; }
  .ome-project-details, .ome-project-item:nth-child(even) .ome-project-details { margin-inline: auto; }
  .ome-footer-grid { flex-direction: column-reverse; text-align: center; }
  .ome-footer-actions { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  .ome-logo img { width: 106px; }
  .ome-about-content p, .ome-about-statements p { font-size: 18px; }
  .ome-image-title::before { width: 56px; height: 44px; right: -16px; }
  .ome-image-title::after { width: 38px; height: 38px; left: -18px; }
  .ome-tracks-title, .ome-projects-title, .ome-partners-title { margin-bottom: 48px; }
  .ome-track-strip span { font-size: 42px; }
  .ome-form-row { grid-template-columns: 1fr; }
  .ome-partner-logos { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ome-partner-logos img { max-width: 150px; }
  .ome-modal { padding: 14px; }
  .ome-modal-card { padding: 42px 20px 28px; }
}
/* === OME original title styles only + current section layouts === */
.sf-ome-s-1 {
  width: 100%;
  margin: 0;
}

p.sf-ome-w-s-1 {
  background-image: url(/wp-content/uploads/2023/03/ome01.svg);
  width: 393px;
  height: 84px;
  margin: 30px auto;
  font-size: 54px;
  text-align: center;
  font-weight: 900;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sf-ome-track-1 {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0;
  filter: grayscale(100%);
  transition: filter 0.5s ease-in-out;
  overflow: hidden;
}

.sf-ome-track-1:hover { filter: grayscale(0%); }

.sf-ome-track-1::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 164, 14, 0.35);
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(2px);
}

.sf-ome-track-1:hover::after {
  visibility: visible;
  transform: translateX(0%);
}

.sf-ome-track-1-span {
  position: relative;
  z-index: 2;
  font-size: 70px;
  font-weight: 800;
  padding: 0 25px;
  color: white;
}

.sf-ome-tra-1 {
  padding: 0;
  margin: 0;
  display: block;
}

.sf-ome-s-2 {
  width: 97%;
  max-width: 1100px;
  margin: 0;
}

p.sf-ome-w-s-2 {
  background-image: url(/wp-content/uploads/2023/03/ome02.svg);
  width: 414.97px;
  height: 54.74;
  margin: 30px 20px;
  font-size: 54px;
  text-align: right;
  font-weight: 900;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

p.sf-ome-w-p-1 {
  font-size: 36px;
  margin: 30px 20px;
  max-width: 950px;
  width: 95%;
}

.sf-ome-s-3 {
  width: 97%;
  max-width: 1100px;
  margin: 0 auto;
}

p.sf-ome-w-s-3 {
  background-image: url(/wp-content/uploads/2023/03/ome03.svg);
  width: 460px;
  height: 80px;
  margin: 30px auto;
  font-size: 59px;
  text-align: center;
  font-weight: 900;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

p.sf-ome-w-p-2 {
  font-size: 36px;
  margin: 30px 20px;
  max-width: 950px;
  width: 95%;
}

.sf-ome-bg-01 {
  background-image: url(/wp-content/uploads/2023/03/omeBg04.svg);
  background-position: top center;
  background-repeat: repeat;
  background-size: auto;
  max-width: 1300px;
  top: 0;
  margin: 0 auto;
  padding-top: 20px;
  width: 95%;
}

.sf-ome-bg-01-in {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  grid-auto-flow: row;
  grid-template-areas: ".";
}

.sf-ome-p-1 {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0;
  filter: grayscale(100%);
  transition: filter 0.5s ease-in-out;
}

.sf-ome-p-1:hover { filter: grayscale(0%); }

.sf-ome-p-in-details {
  height: auto;
  margin: 0 auto;
  position: relative;
  top: 0;
  padding: 10px 20px;
  max-width: 400px;
  background: rgba(63, 63, 68, 0.6);
  border: 1px solid rgba(55, 55, 60, 0.72);
  backdrop-filter: blur(5.5px);
  border-radius: 15px;
}

.sf-ome-bg-01-in div:first-child .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(3) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(5) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(7) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(9) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(11) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(13) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(15) .sf-ome-p-in-details {
  right: 50px;
  float: right;
}

.sf-ome-bg-01-in div:nth-child(2) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(4) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(6) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(8) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(10) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(12) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(14) .sf-ome-p-in-details,
.sf-ome-bg-01-in div:nth-child(16) .sf-ome-p-in-details {
  left: 50px;
  float: left;
}

.sf-ome-p-in-details h2 {
  font-size: 35px;
  font-weight: 700;
  margin-top: 25px;
  text-align: center;
}

.sf-ome-p-in-details p {
  font-size: 17px;
  font-weight: 400;
}

.sf-ome-s-4 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sf-ome-s-4-in {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 25px 20px;
  margin: 0 auto;
  width: 100%;
  grid-auto-flow: row;
  grid-template-areas: ".";
}

.sf-ome-s-4-in img {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

p.sf-ome-w-s-4 {
  background-image: url(/wp-content/uploads/2023/03/ome04.svg);
  width: 249.55px;
  height: 92px;
  margin: 90px auto;
  font-size: 65px;
  text-align: center;
  font-weight: 900;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

.sf-ome-s-4-in a { display: block; }

.sf-ome-s-1,
.sf-ome-s-2,
.sf-ome-s-3,
.sf-ome-bg-01,
.sf-ome-s-4,
.sf-ome-bg-01-in {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(9px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.sf-ome-s-1.is-visible,
.sf-ome-s-2.is-visible,
.sf-ome-s-3.is-visible,
.sf-ome-bg-01.is-visible,
.sf-ome-s-4.is-visible,
.sf-ome-bg-01-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media only screen and (max-width: 768px) {
  .sf-ome-track-1-span {
    position: relative;
    z-index: 2;
    font-size: 70px;
    font-weight: 800;
    text-align: center;
    padding: 0 25px;
    color: white;
  }

  p.sf-ome-w-s-1 {
    background-image: url(/wp-content/uploads/2023/03/ome01.svg);
    max-width: 231px;
    width: 100%;
    max-height: 48px;
    margin: 30px auto;
    font-size: 30px;
    text-align: center;
    font-weight: 900;
  }

  p.sf-ome-w-s-2 {
    background-image: url(/wp-content/uploads/2023/03/ome02.svg);
    width: 100%;
    max-width: 230px;
    max-height: 48px;
    margin: 30px auto;
    font-size: 30px;
    text-align: right;
    font-weight: 900;
  }

  p.sf-ome-w-p-1 {
    font-size: 23px;
    margin: 30px auto;
    max-width: 950px;
    width: 95%;
  }

  p.sf-ome-w-s-3 {
    background-image: url(/wp-content/uploads/2023/03/ome03.svg);
    width: 100%;
    max-width: 230px;
    max-height: 48px;
    margin: 30px auto;
    font-size: 30px;
    text-align: right;
    font-weight: 900;
  }

  p.sf-ome-w-p-2 {
    font-size: 23px;
    margin: 30px auto;
    max-width: 950px;
    width: 95%;
  }

  .sf-ome-bg-01 {
    width: 100%;
    margin: 0 auto;
  }

  .sf-ome-bg-01-in {
    width: 100%;
    margin: 0 auto;
  }

  .sf-ome-p-1 {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px 0;
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out;
  }

  .sf-ome-p-in-details {
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 0;
    padding: 10px 20px;
    max-width: 250px;
    background: rgba(63, 63, 68, 0.6);
    border: 1px solid rgba(55, 55, 60, 0.72);
    backdrop-filter: blur(5.5px);
    border-radius: 15px;
  }

  .sf-ome-p-in-details h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
  }

  .sf-ome-p-in-details p {
    font-size: 16px;
    font-weight: 400;
  }

  .sf-ome-bg-01-in div:first-child .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(3) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(5) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(7) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(9) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(11) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(13) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(15) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(2) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(4) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(6) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(8) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(10) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(12) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(14) .sf-ome-p-in-details,
  .sf-ome-bg-01-in div:nth-child(16) .sf-ome-p-in-details {
    right: 0;
    left: 0;
    float: none;
  }

  p.sf-ome-w-s-4 {
    background-image: url(/wp-content/uploads/2023/03/ome04.svg);
    width: 100%;
    max-width: 140px;
    max-height: 48px;
    margin: 60px auto;
    font-size: 30px;
    text-align: center;
    font-weight: 900;
  }

  .sf-ome-s-4-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    margin: 0 auto;
    width: 95%;
    grid-auto-flow: row;
    grid-template-areas: ".";
  }

  .sf-ome-s-4-in img {
    max-width: 180px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

/* === section spacing adjustment === */
.ome-about-original {
  margin-bottom: 56px;
}

.sf-ome-s-1 {
  margin: 44px 0 88px;
}

.sf-ome-s-2 {
  margin: 88px 0 82px;
}

.sf-ome-s-3 {
  margin: 82px auto 34px;
}

.sf-ome-bg-01 {
  margin: 0 auto 92px;
}

.sf-ome-s-4 {
  margin: 82px auto 88px;
}

.ome-contact {
  margin-top: 54px;
}

@media only screen and (max-width: 768px) {
  .ome-about-original {
    margin-bottom: 36px;
  }

  .sf-ome-s-1 {
    margin: 30px 0 58px;
  }

  .sf-ome-s-2 {
    margin: 58px auto 56px;
  }

  .sf-ome-s-3 {
    margin: 56px auto 26px;
  }

  .sf-ome-bg-01 {
    margin: 0 auto 64px;
  }

  .sf-ome-s-4 {
    margin: 58px auto 64px;
  }

  .ome-contact {
    margin-top: 36px;
  }
}
