:root {
  --ink: #22201f;
  --muted: #6f6761;
  --paper: #fffaf3;
  --cream: #f5eee4;
  --coral: #f26f55;
  --coral-dark: #c84f38;
  --lime: #9bbf58;
  --gold: #d7a84c;
  --line: rgba(34, 32, 31, 0.13);
  --shadow: 0 24px 70px rgba(34, 32, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  color: #fff;
  background: var(--coral);
}

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

[aria-disabled="true"] {
  cursor: pointer;
}

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

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 18, 16, 0.76) 0%, rgba(18, 18, 16, 0.49) 34%, rgba(18, 18, 16, 0.13) 72%),
    linear-gradient(0deg, rgba(18, 18, 16, 0.45) 0%, rgba(18, 18, 16, 0) 42%),
    url("../assets/afterglow-hero.png") center / cover;
}

.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1460px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(22, 20, 18, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 128px !important;
  width: 128px !important;
  min-width: 128px !important;
  max-width: 128px !important;
}

.brand-logo {
  flex: 0 0 128px !important;
  width: 128px !important;
  min-width: 128px !important;
  max-width: none !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1.12vw, 14px);
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-menu-enquire {
  display: none;
}

.nav-toggle {
  position: relative;
  display: none;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.38);
  outline-offset: 3px;
}

.nav.is-menu-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-menu-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 16px 32px rgba(242, 111, 85, 0.24);
}

.nav-cta {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  color: #fff;
  background: var(--coral-dark);
  box-shadow: 0 20px 40px rgba(200, 79, 56, 0.3);
  transform: translateY(-2px);
}

.nav-cta:focus-visible,
.button.primary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.48);
  outline-offset: 3px;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.11);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 46px;
  display: grid;
  align-content: center;
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 700px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.quick-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-cues span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.hero-contact {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 32px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: min(360px, calc(100% - 40px));
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  text-align: right;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.hero-contact span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact a {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero-contact a:hover {
  color: var(--gold);
}

.hero-socials {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.hero-social {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.hero-social svg,
.hero-social img {
  width: 30px;
  height: 30px;
}

.hero-social svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-social img {
  object-fit: contain;
}

.hero-social-whatsapp svg {
  color: #25d366;
  fill: none;
  stroke: none;
}

.hero-social-whatsapp path {
  fill: currentColor;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 28px;
}

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

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

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

.section-kicker {
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  max-width: 680px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.offer {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.offer-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.offer h3,
.package h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
}

.offer p,
.package p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.photo-panel {
  min-height: 570px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(34, 32, 31, 0.2), rgba(34, 32, 31, 0.02)),
    url("../assets/afterglow-hero.png") 70% center / cover;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}

.step h3 {
  margin-bottom: 6px;
  font-size: 24px;
}

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

.package {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  scroll-margin-top: 28px;
}

.package.featured {
  border-color: rgba(242, 111, 85, 0.45);
  box-shadow: 0 24px 60px rgba(242, 111, 85, 0.14);
}

.tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--coral-dark);
  background: rgba(242, 111, 85, 0.11);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.package li {
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.package li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.package-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(242, 111, 85, 0.28);
  border-radius: 8px;
  color: var(--coral-dark);
  background: rgba(242, 111, 85, 0.09);
  font-weight: 900;
}

.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(242, 111, 85, 0.3);
  border-radius: 8px;
  color: var(--coral-dark);
  background: rgba(242, 111, 85, 0.1);
  font-size: 14px;
  font-weight: 900;
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.section-link-row .section-more {
  margin-top: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.gallery-main,
.gallery-side {
  min-height: 410px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(34, 32, 31, 0.38), rgba(34, 32, 31, 0.03)),
    url("../assets/afterglow-hero.png") center / cover;
}

.gallery-side {
  display: grid;
  align-content: end;
  padding: 28px;
  color: #fff;
  background-position: 83% center;
}

.gallery-side h2 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.gallery-side p {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.enquiry {
  padding: 58px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(34, 32, 31, 0.96), rgba(62, 46, 36, 0.94)),
    var(--ink);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.enquiry h2 {
  margin-bottom: 14px;
}

.enquiry p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.modal-open {
  overflow: hidden;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(22, 20, 18, 0.66);
  backdrop-filter: blur(10px);
}

.enquiry-modal.is-open {
  display: flex;
}

.enquiry-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px 30px 30px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: color 180ms ease;
}

.modal-close-icon {
  position: relative;
  top: -3px;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--coral);
}

.modal-close:focus-visible {
  outline: 3px solid rgba(242, 111, 85, 0.28);
  outline-offset: 3px;
}

.enquiry-panel h2 {
  margin-bottom: 8px;
  padding-right: 48px;
  font-size: clamp(28px, 3.5vw, 40px);
}

.enquiry-intro {
  max-width: 570px;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.45;
}

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

.field {
  display: grid;
  grid-column: span 3;
  align-content: start;
  gap: 6px;
}

.field-half {
  grid-column: span 3;
}

.field-third {
  grid-column: span 2;
}

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

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.required-mark {
  color: var(--coral-dark);
}

.field-feedback {
  min-height: 0;
  margin: 0;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--coral);
}

.checkbox-field label {
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(242, 111, 85, 0.22);
  border-color: rgba(242, 111, 85, 0.58);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 250, 243, 0.78);
  background: #22201f;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(260px, 1fr) minmax(230px, 0.9fr);
  gap: 12px;
  align-items: start;
}

.footer-brand img {
  width: 148px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-brand p {
  max-width: 220px;
  color: rgba(255, 250, 243, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: start;
  gap: 14px 84px;
}

.footer-nav a,
.footer-contact a,
.footer-legal a {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-nav span,
.footer-legal span,
.footer-contact span {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-nav a,
.footer-nav span,
.footer-contact a,
.footer-contact span {
  color: #fffaf3;
  font-size: 14px;
  font-weight: 800;
}

.footer-nav span,
.footer-contact span,
.footer-legal span {
  cursor: default;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav span:hover,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-contact span:hover,
.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal span:hover {
  color: var(--coral);
}

.footer-enquire {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px;
  margin-left: -22px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 8px;
}

.footer-enquire:hover,
.footer-enquire:focus-visible {
  border-color: var(--coral);
  background: rgba(242, 111, 85, 0.12);
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: #fffaf3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-socials img,
.footer-socials svg {
  width: 24px;
  height: 24px;
}

.footer-socials img {
  object-fit: contain;
}

.footer-social-whatsapp svg {
  color: #25d366;
}

.footer-social-whatsapp path {
  fill: currentColor;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 0.72;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 250, 243, 0.14);
  color: rgba(255, 250, 243, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(242, 111, 85, 0.78);
  box-shadow: 0 16px 32px rgba(242, 111, 85, 0.28);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 0.72;
  pointer-events: auto;
  transform: translateY(0);
}

body.modal-open .back-to-top,
body.modal-open .back-to-top.is-visible {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  opacity: 1;
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(242, 111, 85, 0.28);
  outline-offset: 3px;
}

.coming-soon-popup {
  position: fixed;
  z-index: 40;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 8px;
  color: #fffaf3;
  background: rgba(34, 32, 31, 0.94);
  box-shadow: 0 18px 45px rgba(34, 32, 31, 0.24);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.coming-soon-popup.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 780px) {
  .nav {
    position: absolute;
  }

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

  .nav-links {
    display: none;
  }

  .nav.is-menu-open .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(22, 20, 18, 0.92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links .nav-menu-enquire {
    display: none;
  }

  .nav-cta {
    order: 2;
    margin-left: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-toggle {
    order: 3;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    background-position: 64% center;
  }

  .hero-inner {
    width: min(100% - 28px, 680px);
    padding-top: 130px;
    padding-bottom: 170px;
  }

  .hero-contact {
    right: 14px;
    bottom: 24px;
    max-width: min(360px, calc(100% - 28px));
  }

  .container {
    width: min(100% - 28px, 680px);
  }

  .section {
    padding: 68px 0;
  }

  .section-head,
  .experience,
  .gallery-strip,
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .offer-grid,
  .packages {
    grid-template-columns: 1fr 1fr;
  }

  .photo-panel,
  .gallery-main,
  .gallery-side {
    min-height: 360px;
  }

  .enquiry {
    padding: 34px 24px;
  }

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

  .field,
  .field-half,
  .field-third,
  .field.full {
    grid-column: 1 / -1;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 620px) {
  .nav {
    width: min(680px, calc(100% - 28px));
    margin-top: 14px;
    gap: 16px;
    padding: 12px;
  }

  .nav.is-menu-open .nav-links {
    top: calc(100% + 10px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    background:
      linear-gradient(90deg, rgba(18, 18, 16, 0.78) 0%, rgba(18, 18, 16, 0.42) 76%),
      linear-gradient(0deg, rgba(18, 18, 16, 0.55) 0%, rgba(18, 18, 16, 0) 52%),
      url("../assets/afterglow-hero.png") 67% center / cover;
  }

  .hero-inner {
    padding-bottom: 54px;
  }

  .hero-contact {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 28px, 680px);
    max-width: none;
    margin: -48px auto 12px;
    text-align: left;
  }

  .hero-socials {
    justify-self: start;
  }

  h1 {
    font-size: clamp(43px, 15vw, 62px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-cues {
    display: none;
  }

  .offer-grid,
  .packages {
    grid-template-columns: 1fr;
  }

  .offer {
    min-height: auto;
  }

  .offer-number {
    margin-bottom: 22px;
  }

  .step {
    grid-template-columns: 44px 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-enquire {
    margin-left: 0;
  }

  .enquiry-modal {
    padding: 12px;
  }

  .enquiry-panel {
    max-height: calc(100vh - 24px);
    padding: 26px 18px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 459px) {
  .nav-cta {
    display: none;
  }

  .nav.is-menu-open .nav-links .nav-menu-enquire {
    display: flex;
  }
}

@media (max-width: 360px) {
  .nav {
    gap: 8px;
    padding: 8px;
  }

}
