/*
Theme Name: Oasis Personal Training
Theme URI: https://example.com/oasis-personal-training
Author: BlackbookSilas
Author URI: https://example.com
Description: A serene, ocean-inspired personal training theme built exclusively for women. Features Home, Pricing, Services, and a built-in lead capture popup.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: oasis-personal-training
*/

:root {
  --opt-ink: #123c43;
  --opt-deep: #0b4f59;
  --opt-ocean: #167787;
  --opt-tide: #55aeb3;
  --opt-seafoam: #bfe1d9;
  --opt-mist: #eaf5f1;
  --opt-shell: #fffaf2;
  --opt-sand: #eadbc4;
  --opt-pearl: #ffffff;
  --opt-coral: #d9897f;
  --opt-shadow: 0 22px 60px rgba(13, 66, 73, 0.14);
  --opt-radius: 28px;
  --opt-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--opt-ink);
  background: var(--opt-shell);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.opt-modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.opt-wrap { width: min(calc(100% - 40px), var(--opt-max)); margin-inline: auto; }
.opt-section { padding: 104px 0; position: relative; }
.opt-section--mist { background: var(--opt-mist); }
.opt-section--ocean { background: var(--opt-deep); color: white; overflow: hidden; }
.opt-section--sand { background: linear-gradient(180deg, #f8f0e2 0%, var(--opt-shell) 100%); }
.opt-grid { display: grid; gap: 28px; }
.opt-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opt-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.opt-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.opt-eyebrow {
  margin: 0 0 15px;
  color: var(--opt-ocean);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.opt-section--ocean .opt-eyebrow { color: var(--opt-seafoam); }
h1, h2, h3, h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.25rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.65rem); }
h3 { font-size: clamp(1.55rem, 2vw, 2rem); }
p { margin: 0 0 1.2em; }
.opt-lead { font-size: clamp(1.08rem, 1.8vw, 1.35rem); max-width: 660px; color: #3e6468; }
.opt-section--ocean .opt-lead { color: rgba(255,255,255,.78); }
.opt-section-heading { max-width: 760px; margin-bottom: 48px; }
.opt-section-heading p:last-child { margin-bottom: 0; }

.opt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--opt-deep);
  color: white;
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: .025em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.opt-button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(11,79,89,.22); }
.opt-button--light { color: var(--opt-deep); background: white; }
.opt-button--outline { color: var(--opt-deep); background: transparent; border-color: rgba(11,79,89,.28); }
.opt-button--outline:hover { background: white; }
.opt-button--coral { background: var(--opt-coral); }
.opt-button svg { width: 18px; height: 18px; }
.opt-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }

/* Header */
.opt-site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 0;
}
.opt-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.opt-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--opt-deep); }
.opt-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--opt-ocean), var(--opt-tide));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 10px 24px rgba(11,79,89,.18);
}
.opt-brand-mark svg { width: 30px; height: 30px; }
.opt-brand-copy { display: grid; line-height: 1; }
.opt-brand-copy strong { font-family: Georgia, serif; font-size: 1.16rem; font-weight: 600; }
.opt-brand-copy small { margin-top: 5px; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.opt-nav { display: flex; align-items: center; gap: 32px; }
.opt-nav a { font-size: .9rem; font-weight: 750; color: #244f55; }
.opt-nav a:hover, .opt-nav .current-menu-item > a { color: var(--opt-ocean); }
.opt-mobile-toggle { display: none; border: 0; padding: 10px; border-radius: 50%; color: var(--opt-deep); background: rgba(255,255,255,.82); }

/* Hero */
.opt-hero {
  min-height: 820px;
  padding: 175px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.85) 0 5%, transparent 22%),
    linear-gradient(135deg, #f8efe1 0%, #e4f2ec 44%, #b8ddd7 100%);
}
.opt-hero::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  right: -220px;
  bottom: -390px;
  border-radius: 50%;
  border: 90px solid rgba(255,255,255,.22);
  box-shadow: 0 0 0 70px rgba(255,255,255,.11), 0 0 0 145px rgba(255,255,255,.07);
}
.opt-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 135px;
  background: var(--opt-shell);
  clip-path: ellipse(58% 52% at 50% 100%);
}
.opt-hero-grid { display: grid; grid-template-columns: 1.07fr .93fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.opt-hero h1 span { display: block; color: var(--opt-ocean); font-style: italic; }
.opt-hero-copy .opt-lead { margin: 28px 0 34px; }
.opt-hero-note { margin-top: 25px; display: flex; align-items: center; gap: 12px; color: #467077; font-size: .86rem; font-weight: 700; }
.opt-hero-note span { display: inline-flex; width: 29px; height: 29px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.7); }
.opt-hero-visual { position: relative; min-height: 545px; }
.opt-sun {
  position: absolute;
  top: 0;
  right: 30px;
  width: 310px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, #fffdf9, #fae8cf);
  box-shadow: 0 30px 80px rgba(126,113,84,.16);
}
.opt-photo-card {
  position: absolute;
  left: 5px;
  top: 48px;
  width: 78%;
  height: 440px;
  overflow: hidden;
  border-radius: 180px 180px 28px 28px;
  background:
    linear-gradient(180deg, rgba(10,67,75,0) 55%, rgba(10,67,75,.30) 100%),
    url('assets/images/hero-woman.svg') center 33% / cover no-repeat,
    linear-gradient(180deg, #a9d1d5 0%, #e6d6bd 71%, #d7c7ad 100%);
  box-shadow: var(--opt-shadow);
}
.opt-pearl-badge {
  position: absolute;
  right: 4px;
  bottom: 42px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(13,65,72,.18), inset 0 0 0 1px rgba(255,255,255,.8);
  font-family: Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.15;
}
.opt-pearl-badge strong { display: block; color: var(--opt-ocean); font-size: 2.1rem; margin-bottom: 6px; }
.opt-shell-line { position: absolute; left: -28px; bottom: 19px; width: 160px; opacity: .62; }

/* Trust bar */
.opt-trust { position: relative; z-index: 3; margin-top: -15px; padding-bottom: 48px; }
.opt-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid rgba(23,119,135,.12);
  border-radius: 24px;
  box-shadow: var(--opt-shadow);
}
.opt-trust-item { padding: 26px 30px; display: flex; align-items: center; gap: 14px; }
.opt-trust-item + .opt-trust-item { border-left: 1px solid rgba(23,119,135,.12); }
.opt-trust-icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; background: var(--opt-mist); color: var(--opt-ocean); }
.opt-trust-item strong { display: block; font-size: .98rem; }
.opt-trust-item small { display: block; color: #6d898d; }

/* Cards */
.opt-card {
  position: relative;
  padding: 34px;
  border-radius: var(--opt-radius);
  background: white;
  border: 1px solid rgba(11,79,89,.10);
  box-shadow: 0 14px 42px rgba(20,83,90,.08);
}
.opt-card-icon { width: 58px; height: 58px; margin-bottom: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--opt-ocean); background: var(--opt-mist); }
.opt-card-icon svg { width: 28px; height: 28px; }
.opt-card h3 { margin-bottom: 16px; }
.opt-card p { color: #607b7f; }
.opt-card-link { color: var(--opt-ocean); font-size: .9rem; font-weight: 800; }
.opt-card--featured { background: var(--opt-deep); color: white; transform: translateY(-16px); }
.opt-card--featured p { color: rgba(255,255,255,.72); }
.opt-card--featured .opt-card-icon { color: white; background: rgba(255,255,255,.12); }
.opt-card--featured .opt-card-link { color: var(--opt-seafoam); }

/* Split feature */
.opt-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.opt-story-art { min-height: 560px; position: relative; }
.opt-story-shape {
  position: absolute;
  inset: 0 65px 0 0;
  border-radius: 220px 220px 30px 30px;
  overflow: hidden;
  background:
    url('assets/images/strength-woman.svg') center 24% / cover no-repeat,
    linear-gradient(180deg, #c4e4df 0%, #80b8bb 55%, #ecdfcc 100%);
  box-shadow: var(--opt-shadow);
}
.opt-story-quote {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: 260px;
  padding: 26px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--opt-shadow);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.28;
}
.opt-story-quote span { display: block; margin-top: 14px; color: var(--opt-ocean); font-family: Arial, sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.opt-checks { display: grid; gap: 16px; margin: 30px 0 34px; }
.opt-check { display: flex; gap: 13px; align-items: flex-start; }
.opt-check i { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; border-radius: 50%; color: var(--opt-deep); background: var(--opt-seafoam); font-style: normal; font-weight: 900; }

/* Process */
.opt-process { counter-reset: optstep; }
.opt-step { padding: 20px 0 20px 82px; position: relative; }
.opt-step::before {
  counter-increment: optstep;
  content: "0" counter(optstep);
  position: absolute;
  left: 0;
  top: 15px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(191,225,217,.48);
  color: var(--opt-seafoam);
  font-size: .82rem;
  font-weight: 800;
}
.opt-step + .opt-step { border-top: 1px solid rgba(255,255,255,.12); }
.opt-step h3 { margin-bottom: 9px; }
.opt-step p { color: rgba(255,255,255,.67); }
.opt-bubble { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.opt-bubble--1 { width: 180px; height: 180px; right: 4%; top: -60px; }
.opt-bubble--2 { width: 80px; height: 80px; right: 16%; bottom: 10%; }
.opt-bubble--3 { width: 35px; height: 35px; right: 7%; bottom: 32%; }

/* Testimonial */
.opt-testimonial { text-align: center; max-width: 880px; margin-inline: auto; }
.opt-stars { letter-spacing: .35em; color: var(--opt-coral); margin-bottom: 25px; }
.opt-testimonial blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.18; letter-spacing: -.025em; }
.opt-testimonial cite { display: block; margin-top: 30px; color: #628084; font-style: normal; font-weight: 800; }

/* CTA */
.opt-cta {
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-radius: 36px;
  color: white;
  background: linear-gradient(115deg, var(--opt-deep), var(--opt-ocean));
  box-shadow: var(--opt-shadow);
  overflow: hidden;
  position: relative;
}
.opt-cta::after { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; top: -160px; border: 50px solid rgba(255,255,255,.08); border-radius: 50%; }
.opt-cta h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); max-width: 720px; position: relative; z-index: 2; }
.opt-cta p { margin: 16px 0 0; color: rgba(255,255,255,.75); position: relative; z-index: 2; }
.opt-cta .opt-button { position: relative; z-index: 2; }

/* Page hero */
.opt-page-hero { padding: 185px 0 96px; text-align: center; background: linear-gradient(145deg, #f8efe2, #d9eee8); position: relative; overflow: hidden; }
.opt-page-hero::after { content: ""; position: absolute; width: 500px; height: 500px; left: 50%; bottom: -405px; transform: translateX(-50%); border: 70px solid rgba(255,255,255,.3); border-radius: 50%; }
.opt-page-hero .opt-lead { margin: 24px auto 0; }

/* Pricing */
.opt-pricing-grid { align-items: stretch; }
.opt-price-card { display: flex; flex-direction: column; }
.opt-price-label { display: inline-flex; align-self: flex-start; margin-bottom: 22px; padding: 7px 12px; border-radius: 999px; color: var(--opt-ocean); background: var(--opt-mist); font-size: .71rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.opt-price { margin: 22px 0 5px; font-family: Georgia, serif; font-size: 3.55rem; line-height: 1; }
.opt-price small { font-family: Arial, sans-serif; font-size: .85rem; color: #6d898d; }
.opt-price-card ul { margin: 24px 0 32px; padding: 0; list-style: none; display: grid; gap: 12px; color: #58767a; }
.opt-price-card li { padding-left: 26px; position: relative; }
.opt-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--opt-ocean); font-weight: 900; }
.opt-price-card .opt-button { margin-top: auto; width: 100%; }
.opt-price-card.opt-card--featured .opt-price-label { background: rgba(255,255,255,.13); color: var(--opt-seafoam); }
.opt-price-card.opt-card--featured .opt-price small, .opt-price-card.opt-card--featured ul { color: rgba(255,255,255,.7); }
.opt-price-card.opt-card--featured li::before { color: var(--opt-seafoam); }
.opt-fineprint { text-align: center; max-width: 760px; margin: 38px auto 0; color: #6b888b; font-size: .9rem; }

/* Services */
.opt-service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 68px 0; }
.opt-service-row + .opt-service-row { border-top: 1px solid rgba(11,79,89,.13); }
.opt-service-row:nth-child(even) .opt-service-art { order: 2; }
.opt-service-art { min-height: 360px; border-radius: var(--opt-radius); display: grid; place-items: center; overflow: hidden; position: relative; background: linear-gradient(150deg, #b9ded8, #f0e4d2); }
.opt-service-art::before, .opt-service-art::after { content: ""; position: absolute; border-radius: 50%; border: 30px solid rgba(255,255,255,.26); }
.opt-service-art::before { width: 280px; height: 280px; top: -115px; right: -80px; }
.opt-service-art::after { width: 120px; height: 120px; bottom: -45px; left: -20px; }
.opt-service-art svg { width: 120px; height: 120px; color: var(--opt-deep); position: relative; z-index: 2; }
.opt-service-copy h2 { font-size: clamp(2.25rem, 4vw, 3.8rem); margin-bottom: 20px; }
.opt-service-copy p { color: #5e7c80; }

/* FAQ */
.opt-faq { max-width: 880px; margin-inline: auto; }
.opt-faq details { padding: 24px 0; border-bottom: 1px solid rgba(11,79,89,.16); }
.opt-faq summary { list-style: none; cursor: pointer; font-family: Georgia, serif; font-size: 1.35rem; position: relative; padding-right: 36px; }
.opt-faq summary::-webkit-details-marker { display: none; }
.opt-faq summary::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--opt-ocean); font-family: Arial, sans-serif; font-weight: 300; font-size: 1.6rem; }
.opt-faq details[open] summary::after { content: "–"; }
.opt-faq details p { color: #648084; margin: 16px 0 0; }

/* Footer */
.opt-site-footer { padding: 68px 0 30px; background: #083b43; color: white; }
.opt-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 52px; }
.opt-site-footer .opt-brand { color: white; }
.opt-site-footer p { max-width: 440px; color: rgba(255,255,255,.64); margin-top: 20px; }
.opt-site-footer h4 { margin-bottom: 18px; font-family: Arial, sans-serif; font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.opt-footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.72); }
.opt-footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.52); font-size: .82rem; }

/* Popup */
.opt-modal { display: none; position: fixed; inset: 0; z-index: 999; padding: 24px; place-items: center; background: rgba(5,44,50,.68); backdrop-filter: blur(10px); }
.opt-modal.is-open { display: grid; animation: optFade .22s ease both; }
.opt-modal-dialog { width: min(100%, 580px); max-height: calc(100vh - 48px); overflow-y: auto; border-radius: 30px; background: var(--opt-shell); box-shadow: 0 30px 100px rgba(0,0,0,.3); position: relative; }
.opt-modal-head { padding: 38px 42px 26px; color: white; background: linear-gradient(120deg, var(--opt-deep), var(--opt-ocean)); position: relative; overflow: hidden; }
.opt-modal-head::after { content: ""; position: absolute; width: 190px; height: 190px; right: -95px; top: -105px; border: 30px solid rgba(255,255,255,.1); border-radius: 50%; }
.opt-modal-head h2 { font-size: 2.65rem; position: relative; z-index: 2; }
.opt-modal-head p { margin: 12px 0 0; color: rgba(255,255,255,.75); position: relative; z-index: 2; }
.opt-modal-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 40px; height: 40px; border: 0; border-radius: 50%; color: white; background: rgba(255,255,255,.12); font-size: 1.5rem; }
.opt-form { padding: 30px 42px 42px; display: grid; gap: 18px; }
.opt-field { display: grid; gap: 7px; }
.opt-field label { font-size: .8rem; font-weight: 800; color: #345e63; }
.opt-field input, .opt-field textarea, .opt-field select { width: 100%; border: 1px solid rgba(11,79,89,.18); border-radius: 14px; padding: 13px 15px; color: var(--opt-ink); background: white; outline: none; }
.opt-field input:focus, .opt-field textarea:focus, .opt-field select:focus { border-color: var(--opt-ocean); box-shadow: 0 0 0 4px rgba(23,119,135,.1); }
.opt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.opt-form-note { color: #738b8e; font-size: .76rem; text-align: center; }
.opt-success { margin: 120px auto -40px; width: min(calc(100% - 40px), var(--opt-max)); padding: 16px 22px; border-radius: 15px; background: #dff3e8; color: #225f4e; font-weight: 700; position: relative; z-index: 20; }
.opt-honeypot { position: absolute !important; left: -9999px !important; }
@keyframes optFade { from { opacity: 0; } to { opacity: 1; } }

/* WordPress */
.alignwide { width: min(calc(100% - 40px), var(--opt-max)); margin-inline: auto; }
.alignfull { width: 100%; }
.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; }

@media (max-width: 960px) {
  .opt-nav { display: none; position: absolute; top: 74px; left: 20px; right: 20px; padding: 22px; border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: var(--opt-shadow); flex-direction: column; align-items: flex-start; }
  .opt-nav.is-open { display: flex; }
  .opt-mobile-toggle { display: inline-grid; place-items: center; }
  .opt-header-cta { display: none; }
  .opt-hero { min-height: auto; padding-top: 150px; }
  .opt-hero-grid, .opt-story-grid, .opt-service-row, .opt-cta { grid-template-columns: 1fr; }
  .opt-hero-visual { min-height: 510px; max-width: 620px; width: 100%; margin: 0 auto; }
  .opt-grid--3, .opt-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opt-story-art { min-height: 500px; }
  .opt-service-row:nth-child(even) .opt-service-art { order: 0; }
  .opt-footer-grid { grid-template-columns: 1fr 1fr; }
  .opt-footer-grid > div:first-child { grid-column: 1 / -1; }
  .opt-cta { text-align: center; }
  .opt-cta .opt-button { justify-self: center; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .opt-wrap { width: min(calc(100% - 28px), var(--opt-max)); }
  .opt-section { padding: 78px 0; }
  .opt-brand-copy small { display: none; }
  .opt-hero { padding-top: 128px; }
  .opt-hero-grid { gap: 36px; }
  .opt-hero-visual { min-height: 410px; }
  .opt-sun { width: 220px; right: 0; }
  .opt-photo-card { width: 82%; height: 350px; }
  .opt-pearl-badge { width: 130px; height: 130px; padding: 18px; font-size: .92rem; }
  .opt-pearl-badge strong { font-size: 1.6rem; }
  .opt-trust-inner, .opt-grid--2, .opt-grid--3, .opt-grid--4, .opt-form-grid, .opt-footer-grid { grid-template-columns: 1fr; }
  .opt-trust-item + .opt-trust-item { border-left: 0; border-top: 1px solid rgba(23,119,135,.12); }
  .opt-card--featured { transform: none; }
  .opt-story-grid { gap: 45px; }
  .opt-story-art { min-height: 430px; }
  .opt-story-shape { right: 30px; }
  .opt-story-quote { width: 220px; font-size: 1.12rem; }
  .opt-cta { padding: 38px 24px; }
  .opt-modal { padding: 12px; }
  .opt-modal-dialog { max-height: calc(100vh - 24px); }
  .opt-modal-head, .opt-form { padding-left: 24px; padding-right: 24px; }
  .opt-footer-grid > div:first-child { grid-column: auto; }
  .opt-footer-bottom { flex-direction: column; }
}
