:root {
  --ink: #070708;
  --charcoal: #111113;
  --smoke: #1a1a1d;
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 230, 198, 0.18);
  --text: #f7efe8;
  --muted: #c6b8ad;
  --rosegold: #c98983;
  --rosegold-light: #f0bdb4;
  --rosegold-deep: #9f5f5d;
  --rose: #e7a8a8;
  --nude: #d9bea8;
  --pink-glow: rgba(232, 144, 166, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(231, 168, 168, 0.12), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(201, 137, 131, 0.16), transparent 26%),
    linear-gradient(135deg, #070708 0%, #111113 45%, #0c0b0c 100%);
  line-height: 1.6;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(201, 137, 131, 0.2), transparent 28%),
    radial-gradient(circle at 42% 58%, rgba(232, 144, 166, 0.14), transparent 24%),
    linear-gradient(145deg, #060607 0%, #121113 55%, #070708 100%);
  transition: opacity 620ms ease, visibility 620ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-card {
  width: min(360px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(255, 230, 198, 0.2);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(22px);
}

.preloader-mark {
  position: relative;
  width: 180px;
  height: 92px;
  filter: drop-shadow(0 0 22px rgba(201, 137, 131, 0.32));
}

.preloader-eye {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.preloader-eye path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eye-brow {
  stroke: var(--rosegold-deep);
  stroke-width: 11;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: drawLine 1.2s ease forwards, browPulse 2.4s ease-in-out 1.2s infinite;
}

.eye-liner {
  stroke: var(--rosegold-light);
  stroke-width: 5;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  filter: drop-shadow(0 0 12px rgba(240, 189, 180, 0.55));
  animation: drawLine 1.55s ease 0.25s forwards, linerGlow 2.2s ease-in-out 1.7s infinite;
}

.eye-crease {
  stroke: rgba(240, 189, 180, 0.48);
  stroke-width: 2.5;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: drawLine 1.1s ease 0.7s forwards;
}

.eye-iris {
  fill: rgba(240, 189, 180, 0.12);
  stroke: var(--rosegold);
  stroke-width: 3;
  opacity: 0;
  transform: scale(0.7);
  transform-origin: 88px 48px;
  animation: irisReveal 760ms ease 1.3s forwards;
}

.eye-lash {
  stroke: var(--rosegold-light);
  stroke-width: 3.2;
  opacity: 0;
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: drawLash 540ms ease forwards;
}

.lash-one {
  animation-delay: 1.2s;
}

.lash-two {
  animation-delay: 1.32s;
}

.lash-three {
  animation-delay: 1.44s;
}

.lash-four {
  animation-delay: 1.56s;
}

.lash-five {
  animation-delay: 1.68s;
}

.preloader-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.preloader-card p span {
  color: var(--rosegold);
  font-size: 2.2rem;
}

.preloader-card p em {
  color: var(--text);
  font-size: 1.05rem;
  font-style: normal;
}

.preloader-card small {
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section-pad {
  padding: 108px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.brand-petra {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: 0;
  color: var(--rosegold);
  text-shadow: 0 0 22px rgba(201, 137, 131, 0.38);
}

.brand-rest {
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--rose), var(--rosegold-light));
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-toggle {
  min-width: 76px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 137, 131, 0.55);
  background: rgba(201, 137, 131, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.ambient {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.44;
  pointer-events: none;
}

.ambient-one {
  top: 12%;
  right: 10%;
  background: radial-gradient(circle, rgba(201, 137, 131, 0.3), transparent 70%);
}

.ambient-two {
  bottom: 10%;
  left: 6%;
  background: radial-gradient(circle, var(--pink-glow), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rosegold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 9vw, 8.4rem);
  line-height: 0.9;
  font-weight: 400;
}

h1 span {
  display: block;
  color: var(--rosegold);
  text-shadow: 0 0 32px rgba(201, 137, 131, 0.34);
}

h1 em {
  display: block;
  color: var(--text);
  font-style: normal;
  font-size: 0.62em;
  line-height: 1.02;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: var(--rose);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #1a1110;
  background: linear-gradient(135deg, var(--rosegold-light), var(--rosegold), var(--rose));
  box-shadow: 0 18px 42px rgba(201, 137, 131, 0.24);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(201, 137, 131, 0.48);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.hero-visual {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.logo-orbit {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #252420;
}

.logo-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 58%);
  transform: translateX(-100%);
  animation: sheen 5.8s ease-in-out infinite;
}

.logo-orbit img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  right: -14px;
  bottom: 34px;
  max-width: 240px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 11, 12, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.visual-caption span,
.visual-caption strong {
  display: block;
}

.visual-caption span {
  color: var(--rose);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-caption strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 68px;
  align-items: start;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 1;
  font-weight: 400;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--glass), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.about-panel {
  padding: clamp(28px, 4vw, 48px);
  color: var(--muted);
  font-size: 1.05rem;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

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

.service-card,
.testimonial-card {
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 137, 131, 0.42);
  background: linear-gradient(145deg, var(--glass-strong), rgba(255, 255, 255, 0.045));
}

.icon-wrap {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 137, 131, 0.42);
  border-radius: var(--radius);
  background: rgba(201, 137, 131, 0.12);
  box-shadow: 0 0 28px rgba(232, 144, 166, 0.12);
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--rosegold-light);
}

.service-card h3,
.testimonial-card h3 {
  margin-bottom: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.service-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
  margin-top: 38px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 30% 20%, rgba(255, 232, 207, 0.22), transparent 30%);
  transition: opacity 240ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent, rgba(201, 137, 131, 0.22), transparent);
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.02);
}

.gallery-one {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-two {
  grid-column: span 2;
}

.gallery-three {
  grid-column: span 2;
}

.gallery-four {
  grid-column: span 2;
}

.gallery-five {
  grid-column: span 2;
}

.gallery-six {
  grid-column: span 2;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.why-item span {
  color: var(--rosegold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.why-item p {
  margin: 0;
  color: var(--muted);
}

.testimonial-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

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

.booking-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 46px;
  align-items: start;
}

.booking-copy h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 400;
}

.booking-copy p,
.booking-copy address {
  color: var(--muted);
  font-style: normal;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.contact-details i {
  color: var(--rosegold-light);
  font-size: 1.05rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.extras-field {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 230, 198, 0.16);
  border-radius: var(--radius);
}

.extras-field legend {
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-row {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.check-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--rosegold);
}

.check-row strong {
  color: var(--rosegold-light);
  font-size: 0.88rem;
  white-space: nowrap;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 230, 198, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form .check-row input {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 4px;
}

.booking-form select {
  color-scheme: dark;
  background-color: #111113;
}

.booking-form option {
  color: var(--text);
  background-color: #111113;
}

.booking-form option:checked,
.booking-form option:hover {
  color: #1a1110;
  background-color: var(--rosegold-light);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(201, 137, 131, 0.76);
  box-shadow: 0 0 0 4px rgba(201, 137, 131, 0.13);
}

.price-summary {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid rgba(201, 137, 131, 0.4);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 137, 131, 0.17), rgba(231, 168, 168, 0.09));
}

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

.price-summary strong {
  color: var(--rosegold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.price-summary small {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 0;
  background: #070708;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: right;
  font-size: 0.9rem;
}

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

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

@keyframes sheen {
  0%, 45% {
    transform: translateX(-110%);
  }
  70%, 100% {
    transform: translateX(110%);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLash {
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes irisReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes browPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(201, 137, 131, 0));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(201, 137, 131, 0.4));
  }
}

@keyframes linerGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(240, 189, 180, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(240, 189, 180, 0.75));
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 84px 0;
  }

  .hero-grid,
  .split-layout,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-visual {
    max-width: 560px;
  }

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

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

  .gallery-item,
  .gallery-one,
  .gallery-two,
  .gallery-three,
  .gallery-four,
  .gallery-five,
  .gallery-six {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid .brand-mark {
    justify-content: center;
  }

  .site-footer p {
    text-align: center;
  }
}

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

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: rgba(8, 8, 9, 0.94);
    backdrop-filter: blur(18px);
    transition: max-height 250ms ease, border-color 250ms ease;
  }

  .nav-links.is-open {
    max-height: 340px;
    border-color: var(--line);
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child {
    border-bottom: 0;
  }

  .nav-links a {
    display: block;
    padding: 16px;
  }

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

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .visual-caption {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .card-grid,
  .gallery-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .why-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .section-pad {
    padding: 68px 0;
  }

  .brand-mark {
    gap: 7px;
  }

  .brand-petra {
    font-size: 1.35rem;
  }

  .brand-rest {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

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

  .section-heading h2,
  .booking-copy h2 {
    font-size: 2.35rem;
  }

  .service-card,
  .testimonial-card {
    padding: 22px;
  }
}

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

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

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