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

:root {
  --cream: #f8f4eb;
  --paper: #fffdf8;
  --white: #ffffff;
  --green-900: #063f2d;
  --green-800: #07583d;
  --green-700: #0b7650;
  --green-100: #dfeee6;
  --mint: #eef8f0;
  --gold: #d9aa55;
  --clay: #d98258;
  --ink: #17201c;
  --muted: #65716b;
  --line: rgba(6, 63, 45, 0.12);
  --shadow: 0 26px 70px rgba(18, 39, 30, 0.12);
  --soft-shadow: 0 14px 36px rgba(18, 39, 30, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 44%, #f6f7f1 100%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  overflow-x: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 235, 0.86);
  border-bottom: 1px solid rgba(6, 63, 45, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 132px;
  gap: 22px;
}

.brand {
  width: 154px;
  height: 128px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(23, 32, 28, 0.68);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-900);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  place-items: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(7, 88, 61, 0.22);
}

.btn-ghost {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.btn-light {
  color: var(--green-900);
  background: var(--white);
}

.section {
  padding: 84px 0;
}

.hero {
  position: relative;
  padding: 66px 0 86px;
}

.hero::before,
.hero::after,
.page-hero::before,
.feature-band::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  right: -140px;
  top: 160px;
  width: 300px;
  height: 300px;
  background: rgba(217, 170, 85, 0.16);
}

.hero::after {
  display: none;
}

.hero-grid,
.page-hero-grid,
.feature-grid,
.testimonial-layout,
.support-grid,
.contact-grid,
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.hero-copy,
.hero-media,
.page-hero-grid > *,
.feature-grid > *,
.testimonial-layout > *,
.contact-grid > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 118, 80, 0.1);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  max-width: 740px;
}

h2 {
  margin-top: 14px;
  font-size: clamp(1.95rem, 3.7vw, 3.1rem);
}

h3 {
  font-size: 1.05rem;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy p {
  max-width: 560px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--green-900);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-media {
  min-height: 570px;
}

.hero-image-card {
  position: absolute;
  inset: 0 26px 18px 50px;
  overflow: hidden;
  border-radius: 34px 34px 130px 34px;
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.hero-image-card::after,
.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(6, 63, 45, 0.22));
}

.hero-image-card img,
.testimonial-image img,
.page-hero-image,
.feature-collage img,
.cta-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  color: var(--green-900);
  font-size: 1.35rem;
}

.floating-note span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
}

.note-top {
  top: 58px;
  left: 0;
}

.note-bottom {
  right: 0;
  bottom: 72px;
}

.section-heading {
  max-width: 760px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered .eyebrow {
  margin-inline: auto;
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 580px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.why-card,
.service-card,
.future-service-card,
.story-card,
.contact-form,
.contact-panel,
.support-list,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.why-card {
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-card:hover,
.service-card:hover,
.future-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 15px;
  color: var(--green-900);
  background: linear-gradient(135deg, var(--mint), rgba(217, 170, 85, 0.34));
  font-size: 1rem;
  font-weight: 900;
}

.why-card p,
.service-card p,
.future-service-card p,
.story-card p {
  margin-bottom: 0;
}

.feature-band,
.values-section,
.service-support {
  position: relative;
  background: rgba(238, 248, 240, 0.5);
}

.feature-band::before {
  display: none;
}

.feature-collage {
  position: relative;
  min-height: 520px;
}

.feature-main {
  position: absolute;
  inset: 0 auto 0 88px;
  width: min(78%, 410px);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.feature-small {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: 44%;
  height: 240px;
  border: 8px solid var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.check-list,
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 5px rgba(11, 118, 80, 0.12);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.split-heading h2 {
  max-width: 720px;
}

.service-strip,
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 63, 45, 0), rgba(6, 63, 45, 0.06));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  transition: transform 320ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card-body {
  padding: 22px;
  position: relative;
  z-index: 1;
}

.service-card--compact {
  display: flex;
  min-height: 300px;
}

.service-card--compact .service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.service-card--compact .service-meta {
  margin-top: auto;
  padding-top: 20px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--green-900);
  background: linear-gradient(135deg, #ffd37a, #f4ae42);
  font-size: 0.88rem;
  font-weight: 900;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.service-meta span {
  color: var(--green-800);
  font-weight: 900;
}

.circle-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-weight: 900;
}

.testimonial-layout {
  grid-template-columns: 0.86fr 1.14fr;
}

.testimonial-image {
  height: 500px;
  overflow: hidden;
  border-radius: 30px 100px 30px 30px;
  box-shadow: var(--shadow);
}

.testimonial-card {
  margin-top: 26px;
  padding: 26px;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.06rem;
}

.testimonial-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.stats-band {
  background: var(--green-800);
  color: var(--white);
}

.future-services {
  background:
    radial-gradient(circle at 88% 10%, rgba(217, 170, 85, 0.16), transparent 32%),
    linear-gradient(135deg, var(--green-900), #14315d);
  color: var(--white);
}

.future-services-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 54px;
  align-items: center;
}

.future-services .eyebrow {
  background: rgba(255, 255, 255, 0.13);
  color: #ffd37a;
}

.future-services-copy h2 {
  max-width: 650px;
}

.future-services-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.future-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.future-service-card {
  min-height: 220px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.future-service-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.future-service-card-body {
  padding: 24px 28px 28px;
}

.future-service-card .service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.future-service-card p {
  color: #5f6c82;
}

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

.stats-grid div {
  padding: 30px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.cta-banner {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 42px;
  border-radius: 26px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-banner img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.95);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 63, 45, 0.86), rgba(6, 63, 45, 0.38));
}

.cta-banner > div {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.cta-banner .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  padding: 64px 0 46px;
}

.page-hero::before {
  right: -130px;
  top: 20px;
  width: 260px;
  height: 260px;
  background: rgba(217, 170, 85, 0.14);
}

.page-hero p {
  max-width: 560px;
  font-size: 1.02rem;
}

.page-hero-image {
  height: 400px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.compact-hero {
  padding-bottom: 22px;
}

.support-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.support-list div {
  padding: 16px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--green-900);
  font-weight: 900;
}

.detail-hero {
  padding: 62px 0 42px;
}

.detail-hero-card {
  position: relative;
  min-height: 490px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-hero-card--icon {
  background:
    radial-gradient(circle at 82% 42%, rgba(217, 170, 85, 0.22), transparent 32%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
}

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

.detail-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 63, 45, 0.88), rgba(6, 63, 45, 0.22));
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 730px;
  padding: 46px;
  color: var(--white);
}

.detail-hero-icon {
  position: absolute;
  right: clamp(26px, 7vw, 86px);
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(118px, 18vw, 210px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 34px;
  color: var(--green-900);
  background: linear-gradient(135deg, #ffd37a, #f4ae42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 900;
  transform: translateY(-50%);
  opacity: 0.9;
}

.detail-hero-content p {
  color: rgba(255, 255, 255, 0.82);
}

.detail-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.detail-copy,
.booking-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.about-story {
  align-items: stretch;
}

.story-card {
  padding: 28px;
}

.contact-section {
  padding-top: 42px;
}

.contact-grid {
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.contact-detail-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.contact-detail-list a,
.contact-detail-list div {
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.contact-detail-list span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label,
.newsletter label {
  display: grid;
  gap: 8px;
}

.contact-form label span,
.newsletter label span {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--green-900);
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.newsletter input:focus {
  border-color: rgba(11, 118, 80, 0.58);
  box-shadow: 0 0 0 4px rgba(11, 118, 80, 0.11);
}

.form-honey {
  position: absolute;
  left: -9999px;
}

.form-note,
.form-feedback {
  margin: 0;
  font-size: 0.92rem;
}

.form-feedback {
  min-height: 24px;
  color: var(--green-800);
  font-weight: 900;
}

.site-footer {
  padding: 60px 0 0;
  background: #f2efe6;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr 1fr;
  gap: 32px;
}

.footer-grid p {
  max-width: 330px;
}

.footer-grid img {
  width: 156px;
  height: 160px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid h3 {
  margin-bottom: 16px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.newsletter {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.developer-credit {
  padding: 16px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.developer-credit a {
  color: var(--green-800);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
  color: var(--green-900);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 12px);
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .feature-grid,
  .testimonial-layout,
  .support-grid,
  .future-services-layout,
  .contact-grid,
  .about-story,
  .detail-content {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .nav-wrap {
    min-height: 108px;
  }

  .brand {
    width: 122px;
    height: 100px;
  }

  .section,
  .hero,
  .page-hero {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.28rem, 12vw, 3.5rem);
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-image-card {
    position: relative;
    inset: auto;
    height: 430px;
    border-radius: 28px 28px 94px 28px;
  }

  .floating-note {
    position: relative;
    display: inline-grid;
    margin-top: 12px;
  }

  .note-top,
  .note-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .why-grid,
  .service-strip,
  .services-page-grid,
  .future-services-grid,
  .support-list,
  .stats-grid,
  .footer-grid,
  .check-list,
  .feature-list,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-collage {
    min-height: 460px;
  }

  .feature-main {
    left: 44px;
    width: calc(100% - 44px);
  }

  .feature-small {
    width: 54%;
    height: 210px;
    bottom: 32px;
  }

  .testimonial-image,
  .page-hero-image {
    height: 380px;
  }

  .detail-hero-card {
    min-height: 520px;
    border-radius: 24px;
  }

  .detail-hero-content,
  .cta-banner {
    padding: 28px;
  }

  .detail-hero-icon {
    right: 18px;
    top: 70%;
    width: 150px;
    opacity: 0.2;
  }

  .cta-banner {
    min-height: 430px;
  }

  .contact-panel,
  .contact-form,
  .detail-copy,
  .booking-card,
  .story-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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