@import url("https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap");
:root {
  --cream: #faf7f6;
  --gold: #9f7641;
  --brown: #866042;
  --ink: #332d29;
  --line: rgba(134, 96, 66, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
}

.site-header {
  width: 100%;
  padding: 28px 4.5%;
  border-bottom: 1px solid var(--line);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;

  text-decoration: none;
}

.site-logo-image {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .site-logo-image {
    height: 40px;
  }
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold);
}

main {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 80px;
  align-items: center;

  max-width: none;
  padding: 90px 0 60px;
}

.hero-copy {
  max-width: 720px;
}

.hero-image {
  height: 680px;
  overflow: hidden;
  border-radius: 0 0 180px 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 26px;

  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;

  font-family: "Ibarra Real Nova", serif;
  font-size: clamp(4.4rem, 7vw, 7.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.intro {
  max-width: 680px;
  margin: 38px 0 0;

  font-size: 1.1rem;
  line-height: 1.85;
}

.button {
  display: inline-block;
  margin-top: 42px;
  padding: 17px 36px;

  background: var(--gold);
  color: #fff;

  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.92rem;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.button:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .site-header {
    padding: 22px 6%;
  }

  .logo-main {
    font-size: 0.85rem;
  }

  .logo-script {
    font-size: 2rem;
  }

  .site-nav a {
    font-size: 0.75rem;
  }

  main {
    width: 88%;
  }

  .hero {
    padding: 90px 0 110px;
  }

  h1 {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
    line-height: 0.98;
  }

  .intro {
    font-size: 1rem;
  }
}
/* ---------- Content Sections ---------- */

.content-section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.6fr);
  gap: 80px;
  align-items: start;
}

.section-label {
  margin: 0;
  color: var(--gold);
  font-family: "Ibarra Real Nova", serif;
  font-size: 2rem;
  line-height: 1.2;
}

.section-copy {
  max-width: 680px;
}

.section-copy p {
  margin: 0 0 26px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .content-section {
    padding: 80px 0;
  }

  .section-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-label {
    font-size: 1.7rem;
  }

  .section-copy p {
    font-size: 1rem;
  }
}
.content-section-soft {
  background: #f8e4d9;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(5vw, calc((100vw - 1200px) / 2));
  padding-right: max(5vw, calc((100vw - 1200px) / 2));
}
.investment {
    margin: 32px 0 0;

    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--ink);

    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

.section-copy .button {
  margin-top: 28px;
}
/* ---------- Footer ---------- */

.site-footer {

    margin-top: 90px;
    padding: 22px 5%;

    background: #78564b;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {

    color: #FAF7F6;
    text-decoration: none;

    font-family: "Ibarra Real Nova", serif;
    font-size: 1.25rem;
    font-weight: 500;

    transition: opacity .3s ease;
}

.footer-logo:hover {

    opacity: .75;
}

.footer-links {

    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {

    color: #FAF7F6;
    text-decoration: none;

    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;

    transition: opacity .3s ease;
}

.footer-links a:hover {

    opacity: .75;
}

.instagram-link {

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-link svg {

    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

@media (max-width: 700px) {

    .site-footer {

        flex-direction: column;
        gap: 20px;

        text-align: center;
    }

}
/* ---------- Editorial Feature ---------- */

.editorial-feature {
  position: relative;
  min-height: 720px;
  margin: 20px 0 45px;
}

.editorial-image {
  width: 78%;
  height: 700px;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editorial-card {
  position: absolute;
  right: 0;
  bottom: 70px;

  width: min(48%, 580px);
  padding: 58px 54px;

  background: var(--cream);
  box-shadow: 0 22px 55px rgba(51, 45, 41, 0.08);
}

.editorial-card .section-label {
  margin-bottom: 28px;
}

.editorial-card p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.85;
}

.editorial-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .editorial-feature {
    min-height: 0;
    margin-bottom: 90px;
  }

  .editorial-image {
    width: 100%;
    height: 520px;
  }

  .editorial-card {
    position: relative;
    right: auto;
    bottom: auto;

    width: 92%;
    margin: -70px 0 0 auto;
    padding: 38px 32px;
  }
}
/* ---------- Split Editorial Feature ---------- */

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 90px;
  align-items: center;

  margin: 0 0 80px;
  padding: 45px 0 70px;
}

.split-feature-copy {
  max-width: 650px;
}

.split-feature-copy .section-label {
  margin: 0 0 34px;
}

.split-feature-copy p {
  margin: 0 0 25px;
  font-size: 1.03rem;
  line-height: 1.9;
}

.split-feature-copy p:last-child {
  margin-bottom: 0;
}

.split-feature-image {
  height: 600px;
  overflow: hidden;
}

.split-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .split-feature {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 95px;
    padding: 80px 0;
  }

  .split-feature-image {
    height: 460px;
  }
}
/* ---------- Process ---------- */

.process-section{

    margin:120px 0;

}

.process-intro{

    max-width:720px;
    margin:0 auto 90px;

    text-align:center;

}

.process-intro h2{

    margin:22px 0 26px;

    font-family:"Ibarra Real Nova",serif;
    font-size:clamp(2.5rem,4vw,4rem);
    font-weight:500;
    line-height:1.1;

}

.process-intro p{

    line-height:1.9;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:50px;

}

.process-step{

    padding-top:34px;

    border-top:1px solid var(--line);

}

.process-step span{

    display:block;

    margin-bottom:18px;

    color:var(--gold);

    font-size:.9rem;
    letter-spacing:.15em;

}

.process-step h3{

    margin:0 0 18px;

    font-family:"Ibarra Real Nova",serif;
    font-size:2rem;
    font-weight:500;

}

.process-step p{

    line-height:1.9;

}

@media(max-width:900px){

.process-grid{

grid-template-columns:1fr;
gap:55px;

}

.process-intro{

margin-bottom:60px;

}

}
/* ---------- Trust Section ---------- */

.trust-section{

    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:90px;
    align-items:center;

    margin:120px 0;
    padding-top:100px;

    border-top:1px solid var(--line);

}

.trust-copy{

    max-width:620px;

}

.trust-copy h2{

    margin:18px 0 28px;

    font-family:"Ibarra Real Nova", serif;
    font-size:clamp(2.8rem,4vw,4.2rem);
    line-height:1.08;
    font-weight:500;

}

.trust-copy p{

    margin:0 0 24px;
    line-height:1.9;
    font-size:1.05rem;

}

.trust-image{

    overflow:hidden;
    border-radius:22px;

}

.trust-image img{

    width:100%;
    display:block;
    object-fit:cover;

}
.investment-note{

    margin:34px 0 24px;

    font-family:"Ibarra Real Nova", serif;
    font-style:italic;
    font-size:.98rem;
    font-weight:400;

    color:rgba(51,45,41,.62);

}
/* ---------- Legal Pages ---------- */

.legal-main {
  width: min(88%, 900px);
  margin: 0 auto;
}

.legal-page {
  padding: 100px 0 130px;
}

.legal-header {
  max-width: 760px;
  margin-bottom: 80px;
}

.legal-header h1 {
  margin-top: 18px;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 1;
}

.legal-date {
  margin: 28px 0 0;
  color: rgba(51, 45, 41, 0.62);
  font-family: "Ibarra Real Nova", serif;
  font-size: 1rem;
  font-style: italic;
}

.legal-content {
  max-width: 760px;
}

.legal-introduction {
  margin-bottom: 70px;
}

.legal-content p,
.legal-contact {
  margin: 0 0 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.9;
}

.legal-section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 28px;
  color: var(--gold);
  font-family: "Ibarra Real Nova", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-contact {
  color: var(--ink);
}

.legal-copyright {
  margin-top: 70px !important;
  color: rgba(51, 45, 41, 0.55);
  font-size: 0.88rem !important;
}

@media (max-width: 760px) {
  .legal-page {
    padding: 75px 0 95px;
  }

  .legal-header {
    margin-bottom: 55px;
  }

  .legal-section {
    padding: 42px 0;
  }

  .legal-section h2 {
    font-size: 1.7rem;
  }
}
.legal-list {
  margin: 0 0 28px;
  padding-left: 1.35rem;
}

.legal-list li {
  margin-bottom: 12px;
  padding-left: 6px;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-contact a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.legal-contact a:hover {
  color: var(--gold);
}
/* =========================================================
   PAIN-FREE LATCH GUIDE LANDING PAGE
   ========================================================= */

.guide-main {
  width: 100%;
  margin: 0;
}

.guide-landing {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);

  padding:
    clamp(38px, 5vh, 64px)
    max(5vw, calc((100vw - 1380px) / 2))
    clamp(42px, 6vh, 72px);

  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(207, 162, 151, 0.24),
      transparent 32%
    ),
    linear-gradient(
      120deg,
      #f7f1ee 0%,
      var(--cream) 54%,
      #eee4df 100%
    );
}

/* ---------- Copy ---------- */

.guide-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
}

.guide-label {
  margin: 0 0 14px;

  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.guide-copy h1 {
  margin: 0 0 20px;

  font-family: "Ibarra Real Nova", serif;
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.guide-lead {
  max-width: 610px;
  margin: 0 0 26px;

  color: var(--gold);
  font-family: "Ibarra Real Nova", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.38;
}

.guide-supporting-copy {
  max-width: 650px;
  margin-top: 24px;
}

.guide-supporting-copy p {
  margin: 0 0 12px;
  font-size: 0.89rem;
  line-height: 1.68;
}

.guide-supporting-copy p:last-child {
  margin-bottom: 0;
}

/* ---------- Photograph ---------- */

.guide-visual {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 520px;
  justify-self: end;
  padding: 28px 22px 18px 0;
}

.guide-visual-backdrop {
  position: absolute;
  inset: 0 0 62px 56px;

  background: #78564b;
  border-radius: 240px 240px 20px 20px;
  opacity: 0.9;
}

.guide-photo {
  position: relative;
  z-index: 2;

  height: min(65vh, 630px);
  min-height: 470px;
  overflow: hidden;

  border-radius: 240px 240px 18px 18px;
  box-shadow: 0 26px 60px rgba(51, 45, 41, 0.18);
}

.guide-photo img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center 42%;
}

.guide-photo-note {
  position: relative;
  z-index: 2;

  margin: 15px 0 0 58px;

  color: rgba(51, 45, 41, 0.7);
  font-family: "Ibarra Real Nova", serif;
  font-size: 0.92rem;
  font-style: italic;
}

/* =========================================================
   KIT FORM OVERRIDES
   ========================================================= */

.guide-form-wrap {
  width: 100%;
  max-width: 680px;
}

.guide-form-wrap .formkit-form[data-uid="97e562346c"] {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  [data-style="clean"] {
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-fields {
  width: 100% !important;

  display: grid !important;
  grid-template-columns:
    minmax(145px, 0.9fr)
    minmax(190px, 1.1fr)
    auto !important;

  gap: 10px !important;
  align-items: stretch !important;

  margin: 0 !important;
  padding: 0 !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-field,
.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-submit {
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  flex: none !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-input {
  width: 100% !important;
  height: 52px !important;

  margin: 0 !important;
  padding: 0 15px !important;

  border: 1px solid rgba(120, 86, 75, 0.65) !important;
  border-radius: 2px !important;

  background: rgba(255, 255, 255, 0.82) !important;
  color: var(--ink) !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 52px !important;

  box-shadow: none !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-input::placeholder {
  color: rgba(51, 45, 41, 0.58) !important;
  opacity: 1 !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-input:focus {
  outline: 1px solid #78564b !important;
  outline-offset: 2px !important;
  border-color: #78564b !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-submit {
  min-width: 164px !important;
  height: 52px !important;

  border: 0 !important;
  border-radius: 999px !important;

  background: #78564b !important;
  color: #ffffff !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;

  cursor: pointer !important;
  box-shadow: none !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-submit > span {
  width: 100% !important;
  height: 52px !important;

  padding: 0 25px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: transparent !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-submit:hover,
.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-submit:focus {
  background: var(--brown) !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-alert {
  grid-column: 1 / -1 !important;

  width: 100% !important;
  margin: 10px 0 0 !important;
  padding: 9px 12px !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
}

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-powered-by-convertkit-container {
  display: none !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .guide-landing {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 42px;
  }

  .guide-copy h1 {
    font-size: clamp(3.7rem, 6vw, 5.8rem);
  }

  .guide-form-wrap
    .formkit-form[data-uid="97e562346c"]
    .formkit-fields {
    grid-template-columns: 1fr 1fr !important;
  }

  .guide-form-wrap
    .formkit-form[data-uid="97e562346c"]
    .formkit-submit {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 820px) {
  .guide-landing {
    min-height: auto;

    grid-template-columns: 1fr;
    gap: 48px;

    padding-top: 48px;
    padding-bottom: 75px;
  }

  .guide-copy {
    max-width: 680px;
  }

  .guide-visual {
    width: min(92%, 520px);
    justify-self: center;
  }

  .guide-photo {
    height: 540px;
  }
}

@media (max-width: 600px) {
  .guide-landing {
    padding-left: 6%;
    padding-right: 6%;
  }

  .guide-copy h1 {
    font-size: clamp(3.3rem, 16vw, 4.7rem);
    line-height: 0.92;
  }

  .guide-lead {
    font-size: 1.22rem;
  }

  .guide-form-wrap
    .formkit-form[data-uid="97e562346c"]
    .formkit-fields {
    grid-template-columns: 1fr !important;
  }

  .guide-form-wrap
    .formkit-form[data-uid="97e562346c"]
    .formkit-submit {
    grid-column: auto !important;
    width: 100% !important;
  }

  .guide-visual {
    padding-right: 0;
  }

  .guide-visual-backdrop {
    inset: 0 0 55px 26px;
  }

  .guide-photo {
    height: 460px;
    min-height: 0;
  }

  .guide-photo-note {
    margin-left: 28px;
  }
}
/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thank-you-main {
  width: 100%;
  margin: 0;
}

.thank-you-section {
  min-height: calc(100vh - 92px);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 70px 6%;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(207, 162, 151, 0.22),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #f7f1ee 0%,
      var(--cream) 55%,
      #eee4df 100%
    );
}

.thank-you-content {
  width: 100%;
  max-width: 720px;
}

.thank-you-content .eyebrow {
  margin-bottom: 22px;
}

.thank-you-content h1 {
  margin: 0;

  font-family: "Ibarra Real Nova", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.thank-you-lead {
  margin: 32px auto 0;
  max-width: 600px;

  color: var(--gold);
  font-family: "Ibarra Real Nova", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.thank-you-copy {
  max-width: 540px;
  margin: 22px auto 0;

  font-size: 0.98rem;
  line-height: 1.8;
}

.thank-you-content .button {
  margin-top: 34px;
}

@media (max-width: 600px) {
  .thank-you-section {
    min-height: calc(100vh - 80px);
    padding: 55px 7%;
  }

  .thank-you-content h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .thank-you-lead {
    font-size: 1.25rem;
  }
}
/* ---------- Kit Success Message ---------- */

.guide-form-wrap
  .formkit-form[data-uid="97e562346c"]
  .formkit-alert-success {
  background: rgba(120, 86, 75, 0.08) !important;
  border: 1px solid rgba(120, 86, 75, 0.35) !important;
  color: #78564b !important;

  border-radius: 3px !important;

  padding: 14px 18px !important;
  margin: 0 !important;

  font-family: "Montserrat", sans-serif !important;
  font-size: 0.84rem !important;
  line-height: 1.5 !important;
  text-align: center !important;

  box-shadow: none !important;
}
.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.instagram-link svg {
  display: block;
}

.instagram-link:hover {
  opacity: 0.7;
}
/* =========================================================
   LATCH VIDEO PAGE
   ========================================================= */

.video-page {
  width: min(88%, 820px);
  margin: 0 auto;
}

.video-section {
  padding: 55px 0 75px;
}

.video-copy {
  max-width: 620px;
  margin: 0 auto 28px;
  text-align: center;
}

.video-copy h1 {
  margin: 0 0 16px;

  font-family: "Ibarra Real Nova", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1;
}

.video-copy p {
  max-width: 560px;
  margin: 0 auto;

  font-size: 0.96rem;
  line-height: 1.75;
}

.video-frame {
  width: min(100%, 560px);
  margin: 0 auto;

  background: #000;
  overflow: hidden;
}

.video-frame video {
  width: 100%;
  max-height: 620px;
  display: block;

  object-fit: contain;
}

@media (max-width: 760px) {
  .video-page {
    width: 90%;
  }

  .video-section {
    padding: 42px 0 60px;
  }

  .video-frame {
    width: 100%;
  }

  .video-frame video {
    max-height: 520px;
  }
}