:root {
  --lavender: #c1a6e3;
  --black: #000000;
  --glass: rgba(255, 255, 255, 0.35);
  --border: rgba(0, 0, 0, 0.12);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--lavender);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  -webkit-user-drag: none;
  display: block;
  max-width: 100%;
  user-select: none;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--black);
  background: var(--lavender);
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--border);
  background: var(--lavender);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  padding: 18px clamp(18px, 4vw, 56px);
  transition:
    box-shadow 220ms ease,
    transform 260ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header:focus-within {
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(260px, 46vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-menu a {
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--black);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  z-index: 40;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--lavender);
  box-shadow: var(--shadow);
}

.mobile-menu nav {
  display: grid;
  gap: 0;
  padding: 20px clamp(18px, 6vw, 40px);
}

.mobile-menu a {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 12vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.06em;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  place-items: center;
  padding: 100px clamp(20px, 5vw, 80px) 84px;
  text-align: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(193, 166, 227, 0.34);
  content: "";
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1200px);
  min-width: 0;
  justify-items: center;
}

.hero-mark {
  width: clamp(112px, 19vw, 220px);
  height: auto;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.hero h1,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 14ch;
  font-size: 8rem;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.hero-location,
.hero-meta {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-location {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 600;
}

.hero-meta {
  margin-top: 10px;
  font-size: clamp(0.72rem, 1.3vw, 0.88rem);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  transform: translateX(-50%);
  animation: bounce 1.8s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.section {
  width: 100%;
  min-width: 0;
  padding: clamp(72px, 10vw, 144px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(100%, 1440px);
  min-width: 0;
  margin: 0 auto;
}

.section-narrow {
  width: min(100%, 980px);
}

.section-title {
  width: 100%;
  max-width: 100%;
  margin-bottom: clamp(32px, 5vw, 56px);
  font-size: 6.5rem;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.section-copy {
  max-width: 760px;
  margin: -18px 0 clamp(34px, 5vw, 58px);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.masonry,
.gallery-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  align-items: start;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.gallery-item {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 0;
  margin: 0;
}

.gallery-item .media-link,
.video-card .media-link {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--glass);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  color: inherit;
  cursor: zoom-in;
  text-decoration: none;
}

.gallery-item .media-link::after,
.video-card .media-link::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  image-orientation: from-image;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: filter 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-item--contain img {
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.gallery-item .media-link:hover img,
.gallery-item .media-link:focus-visible img,
.video-card .media-link:hover img,
.video-card .media-link:focus-visible img {
  filter: brightness(0.94);
}

.gallery-item .media-link:hover::after,
.gallery-item .media-link:focus-visible::after,
.video-card .media-link:hover::after,
.video-card .media-link:focus-visible::after {
  opacity: 1;
}

.video-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(46px, 7vw, 88px);
}

.video-card {
  display: grid;
  gap: 0;
  margin: 0;
}

.video-card .media-link {
  position: relative;
  display: grid;
  width: 100%;
  place-items: center;
  background: var(--black);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 220ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: clamp(44px, 7vw, 62px);
  height: clamp(44px, 7vw, 62px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  transform: translate(-50%, -50%);
}

.video-play svg {
  width: 44%;
  height: 44%;
  margin-left: 4px;
  fill: currentColor;
}

.viewer-open {
  overflow: hidden;
}

.media-viewer[hidden] {
  display: none;
}

.media-viewer {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: clamp(52px, 8vw, 88px) minmax(0, 1fr) clamp(52px, 8vw, 88px);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  background: rgba(12, 12, 12, 0.96);
}

.media-viewer__stage {
  display: flex;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 42px) 0;
}

.media-viewer__image,
.media-viewer__video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - clamp(36px, 6vw, 84px));
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  image-orientation: from-image;
  object-fit: contain;
  object-position: center;
  transform: none;
  user-select: none;
  -webkit-user-drag: none;
}

.media-viewer__image[hidden],
.media-viewer__video[hidden] {
  display: none;
}

.media-viewer__control {
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.media-viewer__control:hover,
.media-viewer__control:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.72);
}

.media-viewer__control svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.media-viewer__previous,
.media-viewer__next {
  justify-self: center;
}

.media-viewer__close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
}

.details-card,
.contact-card,
.plan-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.details-card {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  overflow: hidden;
}

.details-card div {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: clamp(20px, 4vw, 34px);
  border-bottom: 1px solid var(--border);
}

.details-card div:last-child {
  border-bottom: 0;
}

.details-card dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.details-card dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.plans-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.plan-card {
  display: grid;
  min-width: 0;
  min-height: 230px;
  align-content: start;
  gap: 10px;
  padding: 18px;
  color: var(--black);
  text-decoration: none;
}

.plan-placeholder {
  align-content: center;
  border-style: dashed;
  text-align: center;
}

.document-card {
  align-content: start;
  overflow: hidden;
  padding: 0;
}

.document-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  object-fit: contain;
}

.document-card__label {
  padding: 14px 18px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.viewing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.viewing-date-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.viewing-date-card:only-child {
  width: min(100%, 620px);
  grid-column: 1 / -1;
  justify-self: center;
}

.viewing-date-card__header {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--border);
}

.viewing-date-card__slots {
  display: grid;
}

.viewing-slot {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--border);
}

.viewing-slot:last-child {
  border-bottom: 0;
}

.viewing-slot__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.viewing-date-card__header time {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.viewing-slot__time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.viewing-slot__time svg,
.calendar-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.calendar-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--black);
  padding: 0 20px;
  color: var(--lavender);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.calendar-button:hover {
  background: transparent;
  color: var(--black);
}

.viewing-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 56px);
  margin-top: clamp(32px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 48px);
  backdrop-filter: blur(18px);
}

.viewing-signup__intro {
  min-width: 0;
}

.viewing-signup__intro h3 {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 0.98;
}

.viewing-signup__intro p {
  max-width: 38ch;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.viewing-form {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.52);
  padding: 0 14px;
  color: var(--black);
  font: inherit;
  font-size: 0.92rem;
}

.form-field select {
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--black);
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.viewing-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.viewing-form__footer p {
  max-width: 38ch;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

.viewing-form__submit {
  min-height: 56px;
  flex: 0 0 auto;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: var(--black);
  padding: 0 20px;
  color: var(--lavender);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.viewing-form__submit:hover {
  background: transparent;
  color: var(--black);
}

.viewing-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.viewing-form__status {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.viewing-form__status.is-success {
  background: rgba(255, 255, 255, 0.48);
}

.viewing-form__status.is-error {
  border-color: rgba(112, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.32);
  color: #700000;
}

.viewing-form__calendar {
  width: fit-content;
  justify-self: start;
}

.viewing-form__calendar[hidden] {
  display: none;
}

.netlify-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.plan-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
}

.plan-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-card {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 14px;
  padding: clamp(18px, 4vw, 34px);
}

.contact-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  gap: 12px;
  border: 1px solid var(--black);
  border-radius: 16px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.contact-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-link:hover {
  background: var(--black);
  color: var(--lavender);
}

.broker-notice {
  max-width: 72ch;
  margin: clamp(18px, 3vw, 28px) auto 0;
  padding-inline: clamp(4px, 1vw, 10px);
  color: color-mix(in srgb, var(--black) 72%, transparent);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px clamp(18px, 4vw, 56px) 52px;
  text-align: center;
}

.site-footer img {
  width: min(220px, 54vw);
  height: auto;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
}

.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .contact-card {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  .hero h1 {
    font-size: 6.5rem;
  }

  .section-title {
    font-size: 5.25rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 900px) {
  .section-title {
    font-size: 4.75rem;
  }

  .viewing-list {
    grid-template-columns: 1fr;
  }

  .viewing-signup {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .details-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-card div:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .details-card div:nth-child(3) {
    border-bottom: 0;
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .brand {
    width: 54px;
  }

  .site-header {
    min-height: 76px;
  }

  .mobile-menu {
    top: 76px;
  }

  .hero h1 {
    font-size: 4.75rem;
  }

  .section-title {
    font-size: 4rem;
  }

  .viewing-slot {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calendar-button {
    width: 100%;
  }

  .viewing-form {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .viewing-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .viewing-form__submit {
    width: 100%;
  }

  .viewing-form__calendar {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.7rem;
    letter-spacing: 0.04em;
  }

  .video-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.85rem;
  }

  .section-title {
    font-size: 1.85rem;
  }
}
