/* @font-face {
  font-family: "Futura";
  src: url("../fonts/Futura.woff2") format("woff2"),
       url("../fonts/Futura.woff") format("woff"),
       url("../fonts/Futura.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
} */
@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura-Medium.eot');
    src: url('../fonts/Futura-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Futura-Medium.woff2') format('woff2'),
        url('../fonts/Futura-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura-Bold.woff2") format("woff2"),
       url("../fonts/Futura-Bold.woff") format("woff"),
       url("../fonts/Futura-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Billy Ohio";
  src: url("../fonts/BillyOhio.woff2") format("woff2"),
       url("../fonts/BillyOhio.woff") format("woff"),
       url("../fonts/BillyOhio.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --color-primary: #1c9ed4;
  --color-primary-deep: #0875a4;
  --color-ink: #31586b;
  --color-muted: #7e919a;
  --color-soft: #eef8fc;
  --color-surface: #ffffff;
  --color-white: #ffffff;
  --text-color: #696969;
  --font-body: "Futura", "Futura PT", "Trebuchet MS", Arial, sans-serif;
  --font-heading: "Billy Ohio", "Brush Script MT", "Segoe Script", cursive;
  --shadow-card: 0 22px 42px rgba(29, 76, 92, 0.18);
  --shadow-soft: 0 18px 34px rgba(29, 76, 92, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--color-surface);
  overflow-x: hidden;
  font-weight: 500;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 1.3rem;
}

h1,
h2 {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0 0 1rem;
}

h1 {
  color: var(--color-white);
  font-size: clamp(4.1rem, 9vw, 6.5rem);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

h2 {
  font-size: clamp(3.5rem, 6.6vw, 4.65rem);
}

h3 {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.section-pad {
  padding: clamp(80px, 10vw, 150px) 0;
  /* padding-bottom: 10px; */
}

.section-kicker {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 40px;
  padding: 0.75rem 1.15rem;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-riva {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-riva:hover,
.btn-riva:focus {
  background: var(--color-primary-deep);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(28, 158, 212, 0.28);
}

.btn-light-riva {
  background: var(--color-white);
  color: var(--color-primary-deep);
}

.btn-light-riva:hover,
.btn-light-riva:focus {
  background: #e9f8fe;
  color: var(--color-primary-deep);
}

.image-card {
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.site-header {
  padding-top: 10px;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  z-index: 1000;
}

.site-header.is-scrolled {
  background: rgba(19, 48, 58, 0.88);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  padding-top: 0;
}

.navbar {
  min-height: 76px;
}

.brand-mark {
  color: var(--color-white);
  display: grid;
  line-height: 1;
  min-width: 92px;
  text-align: center;
}

.brand-mark span {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.brand-mark small {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0;
  margin-top: -2px;
}

.navbar-nav {
  gap: 1.1rem;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-inline: 0;
}
.navbar-dark .navbar-nav .nav-item {
  margin: 0 0.5rem;
}

.navbar-dark .navbar-nav .nav-link.active::before {
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 30px;
  content: '';
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--color-white);
}

.nav-social,
.footer-social {
  align-items: center;
  display: flex;
  gap: 0.85rem;
  margin-left: 1.3rem;
}

.nav-social a,
.footer-social a {
  align-items: center;
  color: var(--color-white);
  display: inline-flex;
  font-size: 0.9rem;
  justify-content: center;
  opacity: 0.9;
}

.tripadvisor-icon {
  display: inline-block;
  fill: currentColor;
  height: 1.2em;
  width: 1.2em;
}

.hero-section {
  align-items: center;
  display: flex;
  min-height: 920px;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media {
  overflow: hidden;
  transform: scale(1.03);
}

.hero-poster,
.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  width: 100%;
}

.hero-poster {
  opacity: 1;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.hero-video {
  z-index: 2;
}

.hero-section.is-video-ready .hero-poster {
  opacity: 0;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(14, 31, 37, 0.62), rgba(14, 31, 37, 0.2) 48%, rgba(14, 31, 37, 0.08));
  z-index: 2;
}

.hero-content {
  padding-top: 90px;
  position: relative;
  z-index: 3;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
}
.hero-content h1 span {
  display: block;
  font-size: 0.72em;
  margin-top: 0.28em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  bottom: 42px;
  color: var(--color-white);
  display: grid;
  font-size: 0.68rem;
  gap: 8px;
  justify-items: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-cue span {
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  height: 34px;
  position: relative;
  width: 22px;
}

.scroll-cue span::after {
  animation: scrollDot 1.7s infinite;
  background: var(--color-white);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  top: 7px;
  transform: translateX(-50%);
  width: 4px;
}

.story-section {
  background: var(--color-white);
  padding-bottom: clamp(92px, 10vw, 155px);
}

.story-section .container {
  max-width: 1280px;
}

.story-layout {
  --bs-gutter-x: 4.25rem;
}

.story-title {
  padding-top: 22px;
}

.story-copy {
  padding-top: 24px;
}

.story-copy p {
  margin-bottom: 1rem;
}

.story-tag {
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.2;
}

.story-image-wrap {
  border-radius: 7px;
  overflow: visible;
  position: relative;
}

.story-image {
  aspect-ratio: 0.83;
  border-radius: 7px;
  box-shadow: none;
  max-height: 640px;
  position: relative;
  z-index: 2;
}

.story-image-wrap::before,
.story-image-wrap::after {
  border-radius: 50%;
  content: "";
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}

.story-image-wrap::before {
  background: radial-gradient(ellipse at center, rgba(28, 158, 212, 0.34) 0%, rgba(28, 158, 212, 0.18) 36%, rgba(28, 158, 212, 0) 72%);
  bottom: -74px;
  filter: blur(14px);
  height: 150px;
  width: 92%;
}

.story-image-wrap::after {
  background: rgba(28, 158, 212, 0.16);
  bottom: -34px;
  filter: blur(24px);
  height: 84px;
  width: 74%;
}
.about-bg-text {
  color: rgba(28, 158, 212, 0.2);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 2vw, 8rem);
  font-weight: 500;
  line-height: 1;
 
}
.stat-row {
  margin-top: -108px;
  max-width: 760px;
}

.stat-row strong {
  color: var(--color-primary);
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
  min-height: 1em;
  white-space: nowrap;
}

.stat-row span {
  color: var(--color-ink);
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}

.quote-section {
  padding-top: 70px;
}

.script-quote {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--color-ink) 0%,
    var(--color-ink) var(--quote-fill, 0%),
    #aeb8bf var(--quote-fill, 0%),
    #aeb8bf 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6.8vw, 4.7rem);
  line-height: 1.15;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 0.15em;
  -webkit-text-fill-color: transparent;
}

/* .script-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  filter: blur(18px);
  z-index: -1;
  transform: translateY(10%);
  border-radius: 1.25rem;
  opacity: 0.9;
} */

.quote-divider {
  background: #f4a0b1;
  height: 92px;
  margin: 70px auto;
  width: 2px;
}

.quote-divider.bottom {
  margin-bottom: 0;
}

.portrait-wrap {
  margin-left: 50%;
  max-width: none;
  overflow: visible;
  width: var(--expand-width, min(600px, 82vw));
}

.portrait-wrap.is-visible {
  transform: translateX(-50%);
}

.portrait-image {
  aspect-ratio: 16 / 7;
  border-radius: 0;
  box-shadow: 0 38px 58px -24px rgba(42, 171, 188, 0.58);
  height: min(760px, calc(100vw * 7 / 16));
  max-height: 760px;
  object-fit: cover;
  object-position: center 42%;
}

.section-blue {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-blue h2,
.section-blue p {
  color: var(--color-white);
}

.pricing-section {
  padding: 144px 0 104px;
}

.pricing-layout {
  align-items: start;
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: minmax(250px, 318px) minmax(0, 1fr);
  margin-inline: auto;
  width: 100%;
}

.pricing-copy {
  padding-top: 64px;
}

.pricing-copy .section-kicker {
  margin-bottom: 15px;
  font-weight: 500;
}

.pricing-copy h2 {
  color: var(--color-white);
  font-size: 4.95rem;
  line-height: 0.9;
  margin-bottom: 30px;
}

.pricing-copy p {
  color: var(--color-white);
  font-size: 0.94rem;
  line-height: 1.62;
  margin-bottom: 28px;
  max-width: 300px;
}

.pricing-copy .btn {
  min-height: 52px;
  padding-inline: 28px;
  font-weight: 500;
}

.pricing-panel {
  min-width: 0;
  width: 100%;
}

.pricing-cards {
  display: grid;
  gap: clamp(24px, 3vw, 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.pricing-copy[data-animate] {
  transition-delay: 0s;
}

.pricing-copy[data-animate],
.pricing-cards [data-animate] {
  transform: translateY(70px);
}

.pricing-copy[data-animate].is-visible,
.pricing-cards [data-animate].is-visible {
  transform: translateY(0);
}

.pricing-cards [data-animate]:nth-child(1) {
  transition-delay: 0.18s;
}

.pricing-cards [data-animate]:nth-child(2) {
  transition-delay: 0.36s;
}

.price-card {
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 28px 38px -18px rgba(0, 51, 72, 0.55);
  color: var(--color-ink);
  overflow: hidden;
  min-width: 0;
}

.price-card-media {
  overflow: hidden;
  position: relative;
}

.price-card-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}

.price-card:hover {
  transform: scale(1.05) !important;
}

.price-card img {
  aspect-ratio: 1.48;
  object-fit: cover;
  width: 100%;
}

.price-card-label {
  font-family: var(--font-heading);
  font-size: clamp(4.1rem, 5vw, 5.7rem);
  font-weight: 500;
  line-height: 1;
  position: absolute;
  right: -22px;
  top: 48%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  z-index: 2;
}

.label-weekdays {
  color: var(--color-primary);
}

.label-weekends {
  color: #ef2d71;
  /* right: 13px;
  top: 45%; */
}

.price-card-body {
  padding: 26px 38px 29px;
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.28rem;
}

.price-card p {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.price-card.red p {
  color: #e33563;
}

.price-card ul {
  color: var(--color-ink);
  font-size: 0.9rem;
  line-height: 1.9;
  margin: 0;
  padding-left: 1rem;
}

.price-card li::marker {
  color: #e33563;
}

.price-card hr {
  border: 0;
  border-top: 1px solid #e8edf0;
  margin: 26px 0 23px;
  opacity: 1;
}

.pricing-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1;
  margin: 22px 0 0;
  text-align: right;
}

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

.tall-image {
  aspect-ratio: 0.8;
  box-shadow: 0 34px 56px -28px rgba(63, 148, 164, 0.32);
}

.wide-image {
  aspect-ratio: 1.6;
  box-shadow: 0 34px 54px -20px rgba(0, 0, 0, 0.34);
}

.section-soft {
  background: var(--color-soft);
}

.guest-image {
  aspect-ratio: 1.58;
}

.restaurant-image {
  aspect-ratio: 0.76;
}

.moments-section {
  background: var(--color-white) url("../images/moments-bg.png") center top / 100% auto no-repeat;
  padding-top: 104px;
  padding-bottom: 50px;
}

.moments-section .tiny-copy {
  font-size: 0.82rem;
  margin-inline: auto;
  max-width: 520px;
}

.gallery-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  margin-top: 58px;
  overflow: hidden;
}

.gallery-strip figure {
  margin: 0;
}

.gallery-strip img {
  aspect-ratio: 1.25;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.gallery-strip figure:hover img {
  transform: scale(1.04);
}
.newsletter-section {
  padding-bottom: 50px;
}
.newsletter-section h2 {
  font-size: clamp(3.1rem, 5.2vw, 5.8rem);
  margin-bottom: 2.2rem;
}

.newsletter-form {
  display: flex;
  background: var(--color-white);
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  max-width: 620px;
  padding: 4px;
}

.newsletter-form .form-control {
  border: 0;
  border-radius: 6px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  min-height: 42px;
  padding: 0.7rem 1.6rem;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
}

.newsletter-form .form-control::placeholder {
  color: #d7d7d7;
  opacity: 1;
}

.newsletter-form .btn {
  border-radius: 7px;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.08em;
  min-height: 40px;
  min-width: 238px;
  padding-inline: 1.6rem;
}

.site-footer {
  background: #07394a;
  color: var(--color-white);
  min-height: 475px;
  overflow: hidden;
  position: relative;
}

.footer-bg {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 1%, rgba(5, 51, 67, 0.22) 22%, rgba(5, 42, 56, 0.4) 100%),
    url("../images/footer-water.jpg") center 33% / cover no-repeat;
  inset: 0;
  position: absolute;
}

.footer-content {
  padding: 136px 0 58px;
  position: relative;
  z-index: 1;
}

.site-footer .container {
  /* max-width: 1624px; */
  padding-inline: 0;
  width: calc(100% - 200px);
}

.footer-content .row {
  display: grid;
  gap: 56px;
  grid-template-columns: 260px 190px 295px 265px;
  justify-content: space-between;
  margin-inline: 0;
  --bs-gutter-x: 0;
}

.footer-content [class*="col-"] {
  max-width: none;
  padding-inline: 0;
  width: auto;
}

.footer-content [data-animate]:nth-child(1) {
  transition-delay: 0s;
}

.footer-content [data-animate]:nth-child(2) {
  transition-delay: 0.16s;
}

.footer-content [data-animate]:nth-child(3) {
  transition-delay: 0.32s;
}

.footer-content [data-animate]:nth-child(4) {
  transition-delay: 0.48s;
}

.site-footer h3 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 2.05rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
  position: relative;
}

.site-footer h3::after {
  background: rgba(255, 255, 255, 0.8);
  bottom: -12px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 70px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.9;
}

.site-footer p {
  margin-bottom: 1rem;
}
.site-footer a:hover {
  color: var(--color-white);
}

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

.site-footer li {
  margin-bottom: 8px;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.88);
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.25;
}

.site-footer .btn {
  font-size: 0.68rem;
  min-height: 34px;
  padding: 0.58rem 1rem;
}

.contact-list i {
  color: white;
  display: inline-block;
  font-size: 0.74rem;
  flex: 0 0 12px;
  margin-right: 14px;
  width: 12px;
}

.contact-list li {
  align-items: baseline;
  display: flex;
}

.footer-bottom {
  /* background: rgba(0, 31, 43, 0.28); */
  border-top: 1px solid #5c7079;
  border-bottom: 5px solid var(--color-primary);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
}

.footer-bottom .footer-social {
  gap: 0.72rem;
  margin-left: 0;
}

.footer-bottom .footer-social a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.portrait-wrap[data-animate].is-visible {
  transform: translateX(-50%);
}

.row [data-animate]:nth-child(2),
.gallery-strip figure:nth-child(2) {
  transition-delay: 0.08s;
}

.row [data-animate]:nth-child(3),
.gallery-strip figure:nth-child(3) {
  transition-delay: 0.16s;
}

.row [data-animate]:nth-child(4),
.gallery-strip figure:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 0.75rem;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 0.68rem;
  }

  .hero-section {
    min-height: 780px;
  }

  .pricing-layout {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  }

  .pricing-copy h2 {
    font-size: 4.25rem;
  }

  .price-card-body {
    padding-inline: 28px;
  }

  .footer-content .row {
    gap: 42px;
    grid-template-columns: 230px 170px 260px 230px;
  }

  .site-footer .container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(19, 48, 58, 0.9);
    padding-top: 0;
  }

  .navbar-collapse {
    padding: 1rem 0 1.35rem;
  }

  .navbar-nav {
    align-items: flex-start;
    gap: 0.35rem;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 0.82rem;
    padding: 0.42rem 0;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(14, 31, 37, 0.72), rgba(14, 31, 37, 0.24));
  }

  .story-layout {
    --bs-gutter-x: 1.5rem;
    row-gap: 2.5rem;
  }

  .story-title,
  .story-copy {
    padding-top: 0;
  }

  .story-image-wrap {
    margin-inline: auto;
    max-width: 560px;
  }

  .stat-row {
    margin-top: 58px;
    max-width: none;
  }

  .pricing-note {
    text-align: center;
  }

  .pricing-section {
    padding: 90px 0 76px;
  }

  .pricing-layout {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .pricing-copy {
    padding-top: 0;
    text-align: center;
  }

  .pricing-copy p {
    margin-inline: auto;
    max-width: 560px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .moments-section {
    background-size: auto 360px;
    padding-top: 86px;
  }

  .footer-content .row {
    gap: 42px 56px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  p {
    font-size: 14px;
  }

  .section-pad {
    padding: 72px 0;
    padding-bottom: 40px;
  }

  .hero-section {
    min-height: 660px;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-copy {
    max-width: 92%;
  }

  .scroll-cue {
    bottom: 24px;
  }

  .stat-row {
    text-align: center;
  }

  .script-quote {
    font-size: 3.35rem;
  }

  .quote-divider {
    height: 70px;
    margin: 46px auto;
  }

  .portrait-image {
    aspect-ratio: 4 / 3;
    height: calc(100vw * 3 / 4);
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    margin-inline: auto;
    max-width: 500px;
  }

  .newsletter-form {
    display: grid;
    gap: 8px;
    padding: 4px;
  }

  .newsletter-form .btn {
    font-size: 1rem;
    min-height: 54px;
    min-width: 0;
    width: 100%;
  }

  .newsletter-form .form-control {
    font-size: 1rem;
    min-height: 54px;
    padding-inline: 1rem;
  }

  .footer-content {
    padding: 110px 0 56px;
  }

  .footer-content .row {
    grid-template-columns: 1fr;
  }
  .address-block h3, .address-block p {
    color: var(--text-color);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portrait-wrap {
    margin-left: auto;
    margin-right: auto;
    width: min(600px, 82vw);
  }

  .portrait-wrap.is-visible {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 3.7rem;
  }

  h2,
  .newsletter-section h2 {
    font-size: 3.15rem;
  }

  .section-kicker {
    font-size: 0.68rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 230px;
  }

  .stat-row strong {
    font-size: 2.55rem;
  }

  .stat-row span {
    font-size: 0.68rem;
  }

  .price-card-body {
    padding: 24px;
  }

  .price-card-label {
    font-size: 4rem;
    right: 14px;
  }

  .pricing-copy h2 {
    font-size: 3.8rem;
  }

  .pricing-copy .btn {
    min-height: 46px;
  }

  .gallery-strip {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .moments-section {
    background-size: auto 280px;
    padding-top: 72px;
  }
}
