@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");

:root {
  --ink: #102033;
  --muted: #5b6b7f;
  --line: #d9e4ea;
  --lake: #0b5d75;
  --lake-dark: #073f55;
  --teal: #0e8f8f;
  --sun: #f4b84a;
  --coral: #ee6b4d;
  --brand-orange-light: #fc8d4f;
  --foam: #f5fbfd;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.contact-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-page .nav {
  width: min(1360px, calc(100% - 48px));
  min-height: 96px;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0;
  line-height: 1.15;
  font-weight: 800;
}

.contact-page .brand {
  position: relative;
  padding-left: 78px;
  color: #071b45;
  font-size: 1.36rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.contact-page .brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    linear-gradient(180deg, transparent 44%, #ffffff 44% 53%, transparent 53%),
    linear-gradient(180deg, #ff5038 0 46%, #0b5d75 46% 100%);
  box-shadow: inset 0 0 0 5px #ffffff, 0 8px 20px rgba(16, 32, 51, 0.12);
}

.brand small {
  color: var(--lake);
  font-weight: 700;
  font-size: 0.76rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: min(413px, 52vw);
  max-height: 88px;
  object-fit: contain;
}

.contact-page .brand.brand-logo-link {
  padding-left: 0;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.contact-page .brand.brand-logo-link::before {
  content: none;
}

.contact-page .brand small {
  color: #006bd6;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-page .nav-links a {
  color: #071b45;
  font-weight: 800;
}

.contact-page .nav-actions .btn {
  min-height: 56px;
  padding-inline: 22px;
  border-color: #cbd8e8;
  box-shadow: none;
}

.contact-page .nav-actions .btn-primary {
  border-color: transparent;
  background: var(--brand-orange-light);
  box-shadow: 0 12px 24px rgba(252, 141, 79, 0.24);
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--lake-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-orange-light);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(252, 141, 79, 0.28);
}

.btn-secondary {
  background: var(--lake-dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--lake-dark);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline {
  background: var(--white);
  color: var(--lake-dark);
  border-color: var(--line);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 34px rgba(16, 32, 51, 0.14);
}

.mobile-cta a {
  min-height: 58px;
  border-radius: 0;
  padding: 8px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 24, 36, 0.86), rgba(4, 24, 36, 0.42) 56%, rgba(4, 24, 36, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.hero-script-tagline {
  position: relative;
  display: inline-block;
  margin: 0.8rem 0 1.35rem;
  color: var(--white);
  font-family: "Allura", "Great Vibes", cursive;
  font-size: clamp(3.3rem, 5.4vw, 5.9rem);
  line-height: 0.88;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.hero-script-tagline::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 3%;
  bottom: -0.32rem;
  height: 0.24rem;
  border-radius: 999px;
  background: var(--brand-orange-light);
  box-shadow: 0 3px 10px rgba(252, 141, 79, 0.28);
  transform: rotate(-2deg);
}

.hero .eyebrow {
  color: var(--brand-orange-light);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 690px;
  margin-top: 18px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  max-width: 930px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
}

.hero-panel div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel strong {
  display: block;
  font-size: 1.02rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
}

main {
  padding-bottom: 70px;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--foam);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 7px 22px rgba(16, 32, 51, 0.06);
}

.card.feature {
  border-top: 5px solid var(--teal);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0;
}

.price strong {
  font-size: 2rem;
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

.media-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.media-band img,
.photo-placeholder {
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed #aac4d0;
  background: linear-gradient(135deg, #eff8fb, #ffffff);
  color: var(--lake-dark);
  font-weight: 900;
  text-align: center;
  padding: 28px;
}

.banner {
  background: var(--lake-dark);
  color: var(--white);
  padding: 42px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.banner p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 660px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stars {
  color: #d98b12;
  font-weight: 900;
}

.form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.booking-section {
  position: relative;
  min-height: calc(100vh - 96px);
  padding: 44px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(239, 248, 252, 0.84), rgba(255, 255, 255, 0.72)),
    url("../images/lake-lewisville-boat-jet-ski-hero.png") center bottom / cover no-repeat;
}

.booking-section::before,
.booking-section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  height: 180px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50% 50% 0 0;
}

.booking-section::before {
  bottom: -78px;
  transform: rotate(4deg);
}

.booking-section::after {
  bottom: -116px;
  opacity: 0.55;
  transform: rotate(-5deg);
}

.booking-panel {
  position: relative;
  z-index: 1;
  align-items: start;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 38px;
}

.booking-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 0;
  padding: 34px;
  border: 1px solid rgba(205, 218, 232, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.16);
  backdrop-filter: blur(14px);
}

.booking-card-head {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.booking-head-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #ff4f33;
  background: #ffece8;
  font-size: 1.5rem;
  font-weight: 900;
}

.booking-calendar-card .booking-head-icon {
  color: #0b66c3;
  background: #eaf3ff;
}

.booking-card h2 {
  max-width: 420px;
  color: #071b45;
  font-size: clamp(2rem, 3.3vw, 2.75rem);
  letter-spacing: 0;
}

.booking-card-head p:not(.eyebrow) {
  margin-top: 12px;
  color: #536582;
  font-size: 1.04rem;
}

.booking-form-card form {
  border-top: 1px solid #dce7ef;
  padding-top: 24px;
}

.booking-form-card .form {
  gap: 16px;
}

.booking-form-card .form-grid {
  gap: 14px 16px;
}

.booking-form-card label {
  position: relative;
  gap: 0;
  color: #22364a;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.booking-form-card input,
.booking-form-card select,
.booking-form-card textarea {
  min-height: 60px;
  border-color: #d3dfeb;
  border-radius: 9px;
  padding: 16px 16px 16px 62px;
  background: rgba(255, 255, 255, 0.94);
  color: #10244a;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.booking-form-card select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #071b45 50%), linear-gradient(135deg, #071b45 50%, transparent 50%);
  background-position: calc(100% - 22px) 26px, calc(100% - 16px) 26px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.booking-form-card input:focus,
.booking-form-card select:focus,
.booking-form-card textarea:focus {
  outline: none;
  border-color: #87a9cb;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(28, 112, 196, 0.12), 0 10px 24px rgba(16, 32, 51, 0.08);
}

.booking-form-card input::placeholder,
.booking-form-card textarea::placeholder {
  color: #536582;
  opacity: 1;
}

.booking-form-card select:invalid {
  color: #536582;
}

.booking-form-card select option {
  color: var(--ink);
}

.booking-form-card input[type="date"] {
  color: #536582;
}

.booking-form-card input[type="date"]:valid,
.booking-form-card input[type="date"]:focus {
  color: var(--ink);
}

.booking-form-card textarea {
  min-height: 118px;
  padding-top: 18px;
}

.booking-form-card .btn-primary {
  min-height: 64px;
  width: 100%;
  padding-inline: 24px;
  border-radius: 9px;
  background: var(--brand-orange-light);
  font-size: 1.05rem;
  box-shadow: 0 18px 34px rgba(252, 141, 79, 0.32);
}

.booking-form-card .form-helper {
  position: relative;
  margin-left: 48px;
  color: #536582;
  font-size: 0.96rem;
}

.booking-form-card .form-helper::before {
  content: "✓";
  position: absolute;
  left: -32px;
  top: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d2b5c;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.field-icon {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 1;
  color: #0d2b5c;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.field-control-full .field-icon {
  top: 20px;
}

.booking-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 10px;
  background: #dce7ef;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.06);
}

.booking-trust span {
  display: grid;
  place-items: center;
  min-height: 66px;
  padding: 12px;
  background: #f6faff;
  color: #20395f;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.booking-calendar {
  border: 1px solid #d8e3ed;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.84);
  padding: 20px 14px 14px;
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0.04);
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.calendar-toolbar h3 {
  text-align: center;
  color: #071b45;
  font-size: 1.35rem;
  font-weight: 900;
}

.calendar-toolbar .btn {
  min-height: 44px;
  padding: 9px 15px;
  border-color: #d3dfeb;
  border-radius: 8px;
  color: #071b45;
  font-size: 0.88rem;
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.04);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 18px 10px;
  color: #20395f;
  font-size: 0.88rem;
  font-weight: 900;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
}

.calendar-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
  border: 2px solid #1f7bff;
}

.calendar-dot.available {
  background: var(--white);
}

.calendar-dot.booked {
  background: var(--coral);
  border-color: var(--coral);
}

.calendar-dot.unavailable {
  background: var(--muted);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekday,
.calendar-day {
  min-height: 56px;
  border: 1px solid #dbe5ee;
  border-radius: 7px;
  padding: 8px;
}

.calendar-weekday {
  min-height: 0;
  background: #eaf3ff;
  color: #071b45;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  align-content: space-between;
  background: var(--white);
  color: #071b45;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(16, 32, 51, 0.03);
}

.calendar-day span {
  width: fit-content;
  border-radius: 999px;
  background: transparent;
  color: #ff4f33;
  padding: 2px 6px;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: capitalize;
}

.calendar-day.is-booked {
  background: #fff2ee;
  border-color: #ffc7bc;
  color: #ff4f33;
  box-shadow: inset 0 0 0 1px rgba(255, 79, 51, 0.14);
}

.calendar-day.is-unavailable {
  background: #edf1f4;
  border-color: #b7c4ce;
}

.calendar-day.is-empty {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.admin-card {
  max-width: 480px;
  margin: 0 auto;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.alert {
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 800;
}

.alert.success {
  background: #e8f7ef;
  color: #166534;
}

.alert.error {
  background: #fdecea;
  color: #9f2415;
}

.inline-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inline-control input {
  width: auto;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-actions .btn {
  min-height: 38px;
  padding: 8px 12px;
}

.status-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--foam);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.status-booked {
  background: rgba(238, 107, 77, 0.16);
}

.status-unavailable {
  background: #edf1f4;
}

.status-pending {
  background: rgba(244, 184, 74, 0.22);
}

.page-hero {
  background: linear-gradient(135deg, var(--lake-dark), var(--lake));
  color: var(--white);
  padding: 86px 0 56px;
}

.contact-page .page-hero {
  display: none;
}

.page-hero p {
  max-width: 720px;
  margin-top: 16px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.84);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  margin-top: 10px;
}

.site-footer {
  background: #0b1d2d;
  color: var(--white);
  padding: 46px 0 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}



.photo-card {
  border-radius: 14px;
  overflow: hidden;
  height: 260px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}




@media (max-width: 980px) {
  .nav {
    min-height: 66px;
  }

  .contact-page .nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
  }

  .contact-page .brand {
    padding-left: 58px;
    font-size: 1rem;
  }

  .contact-page .brand::before {
    width: 44px;
    height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-actions {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: grid;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav-actions {
    top: 288px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(4, 24, 36, 0.88), rgba(4, 24, 36, 0.44));
  }

  .hero-panel,
  .grid-4,
  .grid-3,
  .grid-2,
  .media-band,
  .reviews,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .banner,
  .admin-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 24px;
  }

  .booking-card-head {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
  }

  .booking-head-icon {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 981px) {
  .nav-actions a[href^="sms:"] {
    display: none;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 76px 0 42px;
  }

  .hero-script-tagline {
    margin: 0.65rem 0 1rem;
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-script-tagline::after {
    left: 12%;
    right: 8%;
    bottom: -0.22rem;
    height: 0.18rem;
  }

  .hero-panel {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .booking-section {
    padding-top: 28px;
  }

  .booking-card {
    padding: 20px;
  }

  .booking-card h2 {
    font-size: 1.85rem;
  }

  .booking-trust {
    grid-template-columns: 1fr;
  }

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

  .calendar-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .calendar-toolbar h3 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .calendar-weekday,
  .calendar-day {
    min-height: 52px;
    padding: 5px;
    font-size: 0.82rem;
  }

  .calendar-day span {
    font-size: 0.62rem;
    padding-inline: 5px;
  }

  .card,
  .banner {
    padding: 20px;
  }
}
