:root {
  --bg: #fffaf7;
  --bg-soft: #f8eee9;
  --bg-warm: #f1ded5;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --ink: #342723;
  --muted: #806f68;
  --rose: #d9929d;
  --rose-soft: #f7d6dc;
  --champagne: #dbc2a3;
  --sage: #9ba98f;
  --line: rgba(100, 72, 60, 0.14);
  --shadow: 0 24px 70px rgba(89, 53, 42, 0.14);
  --radius: 8px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 247, 0.94), rgba(255, 255, 255, 1) 46%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--rose-soft);
  color: var(--ink);
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(16px, calc((100vw - 1160px) / 2));
  background: rgba(255, 250, 247, 0.64);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(255, 250, 247, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(75, 45, 34, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(217, 146, 157, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(52, 39, 35, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  background: rgba(247, 214, 220, 0.6);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: 116px 154px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.02);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.96) 0%, rgba(255, 250, 247, 0.84) 44%, rgba(255, 250, 247, 0.36) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(255, 250, 247, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: #a06d59;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 11vw, 8.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 500px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 23px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--ink);
  color: #fffaf7;
  box-shadow: 0 16px 34px rgba(52, 39, 35, 0.16);
}

.btn-primary:hover {
  background: #4b3832;
}

.btn-ghost {
  border-color: rgba(217, 146, 157, 0.42);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(217, 146, 157, 0.8);
  background: rgba(247, 214, 220, 0.46);
}

.hero-stats {
  position: absolute;
  right: max(16px, calc((100vw - 1160px) / 2));
  bottom: 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, calc(100% - 32px));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  padding: 18px;
}

.hero-stats article + article {
  border-left: 1px solid var(--line);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.float-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(217, 146, 157, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(8px);
  animation: floatShape 7s ease-in-out infinite;
}

.float-shape-one {
  top: 22%;
  right: 16%;
  width: 120px;
  height: 38px;
  transform: rotate(-16deg);
}

.float-shape-two {
  right: 8%;
  bottom: 28%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  animation-delay: -2s;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 138px) 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading p:last-child,
.about-copy p,
.booking-copy p,
.offer-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
}

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

.service-card,
.team-card,
.compare-card,
.insta-card,
.review-card,
.booking-form,
.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(103, 68, 55, 0.08);
}

.service-card {
  position: relative;
  min-height: 336px;
  overflow: hidden;
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(217, 146, 157, 0.34);
  border-radius: 50%;
  opacity: 0.62;
  transition: transform 220ms ease, opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 146, 157, 0.58);
  background: #fffefe;
  box-shadow: 0 26px 70px rgba(103, 68, 55, 0.14);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1.16);
}

.service-card span,
.offer-card span {
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-card li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--champagne);
  vertical-align: middle;
}

.service-card strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 1rem;
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(247, 214, 220, 0.62), rgba(255, 255, 255, 0.82)),
    var(--panel);
}

.about {
  background:
    linear-gradient(120deg, rgba(241, 222, 213, 0.54), rgba(255, 255, 255, 0.2) 52%, rgba(247, 214, 220, 0.38)),
    var(--bg);
}

.about-layout,
.booking-layout,
.location-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 22px -18px -22px 18px;
  border: 1px solid rgba(217, 146, 157, 0.34);
  border-radius: var(--radius);
}

.about-image img,
.team-card img,
.insta-card img,
.compare-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  right: -10px;
  bottom: 30px;
  max-width: 230px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.84);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.about-copy {
  max-width: 590px;
}

.about-signature {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-signature span {
  display: block;
  font-family: var(--font-display);
  color: var(--rose);
  font-size: 3rem;
  line-height: 1;
}

.about-signature small {
  display: block;
  max-width: 420px;
  margin-top: 10px;
  color: var(--muted);
}

.team {
  background: var(--panel-strong);
}

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

.team-card {
  overflow: hidden;
  background: #fff;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(103, 68, 55, 0.14);
}

.team-card img {
  aspect-ratio: 5 / 3;
  filter: saturate(0.92) contrast(0.96);
  transition: transform 360ms ease, filter 360ms ease;
}

.team-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1);
}

.team-info {
  position: relative;
  min-height: 220px;
  padding: 24px;
}

.team-info p {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
}

.team-info span {
  display: block;
  max-width: 330px;
  color: var(--muted);
  font-size: 0.94rem;
}

.icon-link {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.icon-link:hover {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
}

.results,
.offers {
  background:
    linear-gradient(180deg, rgba(248, 238, 233, 0.7), rgba(255, 255, 255, 0.86)),
    var(--bg-soft);
}

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

.compare-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.compare-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.compare-media img:first-child {
  filter: grayscale(0.42) saturate(0.72) brightness(1.05);
}

.compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--position));
  filter: saturate(1.12) contrast(1.02);
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(52, 39, 35, 0.12);
}

.compare-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(52, 39, 35, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  transform: translate(-50%, -50%);
}

.compare-card input {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.compare-card:focus-within .compare-line::after {
  box-shadow: 0 0 0 5px rgba(247, 214, 220, 0.42);
}

.compare-caption {
  padding: 20px;
}

.compare-caption h3 {
  margin-bottom: 5px;
  font-family: var(--font-display);
}

.compare-caption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.instagram {
  background: #fff;
}

.insta-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.insta-heading h2 {
  margin-bottom: 0;
}

.insta-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
}

.insta-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: none;
}

.insta-card img {
  transition: transform 340ms ease, filter 340ms ease;
}

.insta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(52, 39, 35, 0.38), transparent 56%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.insta-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

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

.insta-card span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(52, 39, 35, 0.44);
}

.insta-card.tall {
  grid-row: span 2;
}

.insta-card.wide {
  grid-column: span 2;
}

.reviews {
  background:
    linear-gradient(120deg, rgba(247, 214, 220, 0.36), rgba(255, 255, 255, 0.84) 44%, rgba(241, 222, 213, 0.42)),
    var(--bg);
}

.review-card {
  min-height: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.stars {
  color: #bd8470;
  letter-spacing: 0.08em;
}

blockquote {
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.review-card span {
  color: var(--muted);
  font-weight: 700;
}

.booking {
  background: #fff;
}

.booking-copy {
  align-self: start;
  position: sticky;
  top: 108px;
}

.booking-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  border-left: 2px solid var(--rose);
  padding-left: 18px;
}

.booking-note span {
  color: var(--muted);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 4vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 238, 233, 0.72)),
    var(--panel);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  outline: 0;
  padding: 14px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 146, 157, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(247, 214, 220, 0.42);
}

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

.form-success {
  display: none;
  margin: 0;
  border: 1px solid rgba(155, 169, 143, 0.38);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(155, 169, 143, 0.14);
  color: #627157;
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.offer-card {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 146, 157, 0.48);
  box-shadow: 0 28px 76px rgba(103, 68, 55, 0.14);
}

.offer-card h3 {
  margin: 52px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.location-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

address,
.hours,
.contact-list {
  display: grid;
  gap: 5px;
  margin: 24px 0;
  color: var(--muted);
  font-style: normal;
}

.location-details strong {
  color: var(--ink);
}

.location-details p {
  margin-bottom: 4px;
  color: var(--muted);
}

.contact-list a {
  color: var(--muted);
  transition: color 180ms ease;
}

.contact-list a:hover {
  color: var(--rose);
}

.map-placeholder {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 214, 220, 0.58), rgba(255, 255, 255, 0.86) 42%, rgba(155, 169, 143, 0.3)),
    #fff;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: -42px;
  background-image:
    linear-gradient(rgba(100, 72, 60, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 72, 60, 0.11) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: rotate(-7deg) scale(1.1);
}

.map-pin {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: var(--rose);
  box-shadow: 0 0 0 12px rgba(217, 146, 157, 0.18);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-placeholder p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

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

.site-footer .brand-mark {
	margin-bottom: 12px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr;
  gap: 32px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.83rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--rose);
}

.footer-cta {
  width: max-content;
  margin-top: 18px;
  border-bottom: 1px solid rgba(217, 146, 157, 0.5);
  color: var(--ink) !important;
  font-weight: 800;
}

.copyright {
  width: min(1160px, calc(100% - 32px));
  margin: 34px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.copyright span {
  display: inline-block;
  margin-left: 8px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

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

.back-to-top:hover {
  background: var(--ink);
  color: #fff;
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes floatShape {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

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

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

@media (max-width: 1040px) {
  .service-grid,
  .compare-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    padding-inline: 9px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(255, 250, 247, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 14px;
  }

  .hero {
    align-items: end;
    min-height: 100svh;
    padding-bottom: 255px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(255, 250, 247, 0.76) 38%, rgba(255, 250, 247, 0.48) 100%),
      linear-gradient(90deg, rgba(255, 250, 247, 0.94), rgba(255, 250, 247, 0.24));
  }

  .hero-media img {
    object-position: 62% center;
  }

  .float-shape {
    display: none;
  }

  .hero-stats {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .review-grid,
  .about-layout,
  .booking-layout,
  .location-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

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

  .about-image img {
  	aspect-ratio: 5 / 3;
  }

  .booking-copy {
    position: static;
  }

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

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

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-block: 120px 330px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.7rem);
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.65rem);
  }

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

  .hero-actions .btn,
  .insta-heading .btn {
    width: 100%;
  }

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

  .hero-stats article {
    padding: 16px;
  }

  .hero-stats article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-grid,
  .compare-grid,
  .offer-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .about-image img {
  	aspect-ratio: 4 / 5;
  }

  .about-image::before {
    inset: 12px -8px -12px 8px;
  }

  .image-badge {
    right: 12px;
  }

  .insta-grid {
    grid-auto-rows: 220px;
    grid-template-columns: 1fr;
  }

  .insta-card.tall,
  .insta-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .copyright span {
    display: block;
    margin: 6px 0 0;
  }
}

@media (max-width: 500px) {
	.team-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

	 
