:root {
  --cream: #f8f1e6;
  --paper: #fffdf8;
  --ink: #18211d;
  --muted: #5f6863;
  --red: #c83c2f;
  --red-dark: #9f2d24;
  --green: #264f3c;
  --green-soft: #dfe9df;
  --gold: #e9b44c;
  --line: rgba(24, 33, 29, 0.13);
  --shadow: 0 24px 70px rgba(48, 30, 18, 0.13);
  --shadow-soft: 0 12px 34px rgba(48, 30, 18, 0.08);
  --radius: 24px;
  --radius-small: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  color: white;
  background: var(--green);
}

.section-header {
  display: grid;
  max-width: 720px;
  gap: 12px;
  margin-bottom: 38px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--dark .eyebrow {
  color: #ffd98d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-sans-serif, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 7vw, 5.6rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #36423c;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.88rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(248, 241, 230, 0.88);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(48, 30, 18, 0.06);
}

.topbar__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand__text small {
  color: var(--red);
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav > a:not(.btn) {
  color: #303934;
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
}

.nav > a:not(.btn):hover {
  color: var(--red);
}

.language-link {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem !important;
  font-weight: 850 !important;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button span {
  grid-area: 1 / 1;
}

.menu-button::before {
  grid-area: 1 / 1;
  transform: translateY(-7px);
}

.menu-button::after {
  grid-area: 1 / 1;
  transform: translateY(7px);
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: white;
  padding: 12px 20px;
  font-weight: 830;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(200, 60, 47, 0.2);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.btn--light {
  border-color: white;
  background: white;
  color: var(--green);
  box-shadow: none;
}

.btn--small {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 72px;
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(233, 180, 76, 0.2);
  content: "";
  filter: blur(4px);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.hero__copy {
  z-index: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  color: #3d4842;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero__proof li::before {
  margin-right: 7px;
  color: var(--red);
  content: "✓";
}

.hero__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 248, 0.82);
  border-radius: 42px;
  background: #151b18;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(8, 13, 10, 0.67));
  content: "";
  pointer-events: none;
}

.hero__media-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: white;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.25;
}

.hero__media-label small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -24px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  padding: 22px 24px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 1.08rem;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.steps,
.pricing-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-weight: 900;
}

.step-card p,
.review-card footer {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 30px;
}

.price-card--featured {
  border-color: #ffd98d;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price-badge {
  align-self: flex-start;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #3d2a07;
  padding: 6px 11px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 22px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li::before {
  margin-right: 9px;
  color: #ffd98d;
  content: "✓";
}

.price-card--featured li::before {
  color: var(--red);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 820px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.experience-photo {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.experience-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-photo__note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(15, 24, 19, 0.77);
  color: white;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.feature-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.feature-list li::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
}

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 20px;
  background: #ddd;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.review-card {
  margin: 0;
}

.review-stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-card p {
  font-family: Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.65;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.area-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 52% 42%, rgba(233, 180, 76, 0.66) 0 6%, transparent 6.5%),
    radial-gradient(circle at 52% 42%, transparent 0 18%, rgba(255, 255, 255, 0.2) 18.5% 19%, transparent 19.5%),
    radial-gradient(circle at 52% 42%, transparent 0 34%, rgba(255, 255, 255, 0.14) 34.5% 35%, transparent 35.5%),
    linear-gradient(145deg, #1e4433, #315e48);
  box-shadow: var(--shadow);
}

.area-card::before,
.area-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 45% 55% 57% 43% / 54% 40% 60% 46%;
  content: "";
}

.area-card::before {
  inset: 40px 54px 72px 36px;
  transform: rotate(-9deg);
}

.area-card::after {
  inset: 70px 28px 38px 84px;
  transform: rotate(17deg);
}

.area-card__label {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 52%;
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  padding: 10px 15px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transform: translate(-50%, -50%);
}

.area-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.area-points li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 760;
}

.instagram-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.instagram-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1;
  background: #ddd;
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.instagram-grid a::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(24, 33, 29, 0.45);
  color: white;
  content: "↗";
  font-size: 1.5rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity 200ms ease;
}

.instagram-grid a:hover img {
  transform: scale(1.05);
}

.instagram-grid a:hover::after {
  opacity: 1;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--red);
  content: "+";
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
}

.contact-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.contact-list a:hover {
  color: var(--red);
}

.response-chip {
  display: inline-flex;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 850;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.86rem;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 4px rgba(38, 79, 60, 0.12);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.privacy-note {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.privacy-note a {
  color: var(--green);
  font-weight: 800;
}

.terms-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  padding: 30px;
}

.terms-banner h3,
.terms-banner p {
  margin-bottom: 0;
}

.terms-banner p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.footer {
  border-top: 1px solid var(--line);
  background: #efe6d8;
  padding: 42px 0 110px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.footer__legal {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.mobile-cta {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  border-radius: 999px;
  background: var(--red);
  color: white;
  padding: 13px 18px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(65, 24, 19, 0.36);
}

.legal-page {
  min-height: 70vh;
  padding: 72px 0 100px;
}

.legal-page__content {
  max-width: 820px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-page h2 {
  margin: 38px 0 12px;
  font-size: 1.55rem;
}

.legal-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
  padding: 20px;
}

@media (max-width: 1020px) {
  .nav {
    gap: 14px;
  }

  .nav > a:not(.btn) {
    font-size: 0.84rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 340px;
    gap: 36px;
  }

  .hero__media,
  .hero__media video,
  .hero__media img {
    min-height: 520px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .menu-button {
    display: grid;
  }

  .nav {
    position: fixed;
    z-index: 90;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 78px);
    overflow: auto;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav > a:not(.btn),
  .language-link {
    min-height: 48px;
    width: 100%;
    place-items: center start;
    padding: 10px 12px;
    font-size: 1rem !important;
  }

  .language-link {
    display: grid;
    border-radius: 12px;
  }

  .nav .btn {
    margin-top: 8px;
  }

  .hero__grid,
  .experience-grid,
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 740px;
  }

  .hero__media {
    width: min(100%, 480px);
    min-height: 600px;
    margin-inline: auto;
  }

  .hero__media video,
  .hero__media img {
    min-height: 600px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .steps,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .price-card--featured {
    transform: none;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar__inner {
    min-height: 70px;
  }

  .brand img {
    width: 47px;
    height: 47px;
  }

  .nav {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .hero {
    padding-top: 40px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    gap: 8px;
  }

  .hero__media,
  .hero__media video,
  .hero__media img {
    min-height: 510px;
  }

  .hero__media {
    border-width: 5px;
    border-radius: 30px;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: 1 / -1;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .instagram-head,
  .form-footer,
  .terms-banner,
  .footer__grid {
    align-items: stretch;
    flex-direction: column;
  }

  .instagram-head {
    display: grid;
  }

  .instagram-head .btn {
    justify-self: start;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .form-footer {
    display: grid;
  }

  .form-footer .btn {
    width: 100%;
  }

  .terms-banner {
    display: grid;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
