:root {
  --bg-main: #f3eee7;
  --bg-soft: #efe7dc;
  --bg-dark: #1a211e;
  --bg-card: #fffbf7;
  --ink: #1f1a16;
  --ink-soft: #665e58;
  --ink-light: #f7f2eb;
  --accent: #a17a4c;
  --accent-soft: #d3b184;
  --line: rgba(73, 57, 41, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 24px 60px rgba(23, 17, 13, 0.12);
  --shadow-strong: 0 28px 80px rgba(15, 10, 6, 0.28);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 18% 12%, #fff8ef 0%, transparent 40%),
    radial-gradient(circle at 90% 18%, #efe3d1 0%, transparent 35%),
    linear-gradient(180deg, #faf5ee 0%, #f3eee7 38%, #f1e9dc 100%);
  min-height: 100vh;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(161, 122, 76, 0.07), transparent 30%, rgba(26, 33, 30, 0.05));
  mix-blend-mode: multiply;
  z-index: -2;
}

.site-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  z-index: 20;
  background-image: radial-gradient(rgba(24, 16, 12, 0.12) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 0.6rem 1rem;
  border-radius: 10px;
}

.skip-link:focus {
  left: 1rem;
}

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

img,
iframe {
  max-width: 100%;
}

.section {
  position: relative;
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2rem));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(246, 238, 227, 0.72);
  box-shadow: 0 12px 40px rgba(24, 18, 12, 0.12);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar nav a {
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  color: rgba(23, 18, 14, 0.78);
  transition: background-color 0.28s ease, color 0.28s ease;
}

.topbar nav a.is-active,
.topbar nav a:hover {
  background: rgba(26, 33, 30, 0.11);
  color: var(--ink);
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.nav-cta {
  background: rgba(161, 122, 76, 0.18);
  color: #2b221a;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--progress, 0) * 100%);
  height: 3px;
  z-index: 80;
  background: linear-gradient(90deg, #9f7747, #d2b189);
  box-shadow: 0 0 20px rgba(159, 119, 71, 0.6);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 2rem;
  padding-top: 7.2rem;
  padding-bottom: 5.8rem;
}

.hero-side {
  display: grid;
  gap: 1rem;
  width: min(100%, 420px);
  justify-self: end;
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 249, 242, 0.78);
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

#ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-glow {
  position: absolute;
  width: min(50vw, 620px);
  aspect-ratio: 1;
  right: -12%;
  top: 10%;
  border-radius: 50%;
  filter: blur(40px);
  background: radial-gradient(circle at 45% 40%, rgba(213, 178, 132, 0.44), rgba(161, 122, 76, 0.08) 68%, transparent 73%);
  z-index: -1;
  transform: translate3d(0, var(--parallax, 0px), 0);
}

.hero-copy h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.9vw, 5.3rem);
  line-height: 0.97;
  letter-spacing: 0.01em;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(35, 27, 20, 0.72);
}

.lead {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 56ch;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, color 0.28s ease,
    box-shadow 0.28s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  color: #fdf8f2;
  background: linear-gradient(120deg, #33271d 0%, #9f7849 55%, #af8758 100%);
  box-shadow: 0 18px 34px rgba(38, 27, 17, 0.24);
}

.btn-ghost {
  color: #2f261d;
  border-color: rgba(53, 39, 25, 0.3);
  background: rgba(255, 252, 247, 0.66);
}

.hero-card {
  width: 100%;
  background: rgba(255, 249, 242, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  animation: float-card 6.2s ease-in-out infinite;
}

.hero-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.hero-card-main {
  margin: 0.4rem 0 0.65rem !important;
  font-size: 1.55rem !important;
  font-weight: 600;
  color: var(--ink);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 36px;
  height: 58px;
  border: 1px solid rgba(53, 40, 29, 0.4);
  border-radius: 50px;
  display: grid;
  place-items: center;
  background: rgba(255, 252, 247, 0.56);
}

.scroll-cue span {
  width: 5px;
  height: 13px;
  border-radius: 50px;
  background: rgba(52, 38, 27, 0.62);
  animation: cue 1.7s cubic-bezier(0.32, 0.01, 0.3, 1) infinite;
}

.panel {
  margin-top: 5.2rem;
  padding: clamp(2rem, 3vw, 3.2rem);
  border-radius: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  overflow: clip;
  isolation: isolate;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.panel-light {
  background: linear-gradient(165deg, rgba(255, 253, 248, 0.9) 0%, rgba(248, 241, 232, 0.85) 55%, rgba(242, 233, 220, 0.76) 100%);
  box-shadow: var(--shadow-soft);
}

.panel-dark {
  color: var(--ink-light);
  background: radial-gradient(circle at 85% 10%, rgba(171, 133, 89, 0.3), transparent 30%),
    linear-gradient(150deg, #1f2723 0%, #131915 60%, #0f140f 100%);
  box-shadow: var(--shadow-strong);
  border-color: rgba(209, 180, 145, 0.2);
}

.panel-soft {
  background: linear-gradient(130deg, rgba(250, 244, 234, 0.85) 0%, rgba(236, 227, 213, 0.86) 90%);
  box-shadow: var(--shadow-soft);
}

.panel-dark .eyebrow,
.panel-dark p {
  color: rgba(242, 235, 224, 0.78);
}

.panel-dark h2,
.panel-dark h3,
.panel-dark .service-meta,
.panel-dark .service-type {
  color: #f7f1e9;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h1,
.section-head h2 {
  margin: 0.55rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
}

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

.about-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(94, 72, 49, 0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  min-height: 215px;
}

.about-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
}

.about-card p {
  margin-top: 0.7rem;
  line-height: 1.72;
  color: var(--ink-soft);
}

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

.service-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(228, 210, 183, 0.2);
  background: linear-gradient(130deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.04));
  padding: 1.3rem 1.3rem 1.4rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent, rgba(214, 184, 148, 0.38), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(218, 187, 148, 0.48);
  box-shadow: 0 24px 44px rgba(5, 7, 6, 0.28);
}

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

.services-grid .service-card:last-child {
  grid-column: 1 / -1;
}

.service-card h3 {
  margin: 0.3rem 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  line-height: 1.65;
}

.service-offers {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(228, 210, 183, 0.34);
  background: linear-gradient(130deg, rgba(255, 253, 248, 0.16), rgba(255, 253, 248, 0.08));
  padding: 1.2rem;
}

.service-offers h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.service-offers p {
  margin: 0.55rem 0 0;
  line-height: 1.6;
  color: rgba(247, 241, 233, 0.86);
}

.service-type {
  display: inline-block;
  margin-bottom: 0.45rem !important;
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-meta {
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem !important;
}

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

.timeline-item {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(108, 83, 58, 0.15);
  background: rgba(255, 255, 255, 0.75);
  padding: 1.2rem;
}

.timeline-item span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f6f1ea;
  background: #2c362f;
}

.timeline-item h3 {
  margin: 0.7rem 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.timeline-item p {
  margin: 0;
  line-height: 1.65;
  color: var(--ink-soft);
}

.assurance {
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.7rem;
}

.assurance li {
  color: var(--ink-soft);
}

.gift-note {
  margin-top: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(108, 83, 58, 0.22);
  background: rgba(255, 252, 247, 0.86);
  padding: 1.2rem;
}

.gift-note h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.gift-note p {
  margin: 0.6rem 0 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

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

.quote-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(106, 83, 58, 0.14);
  padding: 1.3rem;
  box-shadow: 0 12px 40px rgba(23, 16, 12, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.quote-card.is-current {
  transform: translateY(-5px);
  border-color: rgba(161, 122, 76, 0.42);
  box-shadow: 0 24px 48px rgba(20, 13, 7, 0.12);
}

.quote-card p {
  margin: 0;
  line-height: 1.72;
}

.quote-author {
  margin-top: 0.85rem !important;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(57, 44, 30, 0.76);
}

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

.practical-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(108, 83, 58, 0.17);
  background: rgba(255, 254, 252, 0.84);
  padding: 1.2rem;
}

.practical-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
}

.practical-card p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.practical-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.map-wrap {
  margin-top: 1rem;
  border-radius: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(101, 77, 50, 0.2);
  overflow: hidden;
  min-height: 310px;
  box-shadow: 0 25px 55px rgba(19, 14, 10, 0.15);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: sepia(0.2) saturate(0.76) contrast(1.04);
}

.legal {
  margin-top: 4.2rem;
}

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

.legal-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(106, 83, 58, 0.17);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.2rem;
}

.legal-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
}

.legal-card p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.legal-list {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.5rem;
}

.legal-list li {
  color: var(--ink-soft);
  line-height: 1.5;
}

.booking {
  margin-top: 5rem;
  margin-bottom: 4.2rem;
}

.booking-inner {
  border-radius: clamp(24px, 3vw, 42px);
  padding: clamp(2.1rem, 4vw, 4rem);
  background: radial-gradient(circle at 20% 0%, rgba(205, 169, 121, 0.25), transparent 45%),
    linear-gradient(145deg, #1d2520 0%, #101612 85%);
  color: #f7f1e9;
  border: 1px solid rgba(209, 180, 146, 0.28);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.booking-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  margin: 0.6rem auto 0.7rem;
  font-weight: 500;
  line-height: 1.08;
  max-width: 17ch;
}

.booking-inner p {
  margin: 0 auto;
  max-width: 64ch;
  color: rgba(247, 241, 233, 0.82);
  line-height: 1.75;
}

.booking-actions {
  margin-top: 1.55rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(91, 70, 47, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.footer p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.mobile-cta {
  display: none;
}

.reveal {
  --reveal-y: 32px;
  --reveal-scale: 0.985;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax, 0px)), 0) scale(var(--reveal-scale));
  transition: opacity 0.86s cubic-bezier(0.19, 1, 0.22, 1), transform 0.86s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.86s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  --reveal-y: 0px;
  --reveal-scale: 1;
  opacity: 1;
  filter: blur(0);
}

.magnetic {
  --mx: 50%;
  --my: 50%;
  overflow: hidden;
}

.magnetic::before {
  content: "";
  position: absolute;
  left: var(--mx);
  top: var(--my);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

.magnetic:hover::before {
  opacity: 0.8;
}

[data-parallax] {
  will-change: transform;
}

body.is-loading .topbar,
body.is-loading .hero .reveal,
body.is-loading .scroll-cue {
  opacity: 0;
}

body.is-loading {
  overflow: hidden;
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translateY(-7px);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6.8rem;
    padding-bottom: 4.8rem;
  }

  .hero-side {
    width: min(100%, 560px);
    justify-self: start;
  }

  .hero-card {
    max-width: none;
  }

  .about-grid,
  .services-grid,
  .timeline,
  .quotes,
  .practical-grid,
  .legal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .section,
  .footer {
    width: min(var(--max-width), calc(100% - 1.4rem));
  }

  .topbar {
    top: 0.45rem;
    width: calc(100% - 0.8rem);
    border-radius: 20px;
    padding: 0.7rem 0.7rem 0.8rem;
    align-items: center;
    flex-direction: column;
    gap: 0.55rem;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .topbar nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .topbar nav::-webkit-scrollbar {
    display: none;
  }

  .topbar nav a {
    white-space: nowrap;
  }

  .hero {
    gap: 1.45rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-side {
    width: 100%;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .btn {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .panel {
    margin-top: 3rem;
    padding: 1.35rem;
    border-radius: 24px;
  }

  .map-wrap {
    min-height: 250px;
  }

  .about-grid,
  .services-grid,
  .timeline,
  .quotes,
  .practical-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .booking {
    margin-top: 3rem;
  }

  .footer {
    margin-bottom: 1.2rem;
    padding-top: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer p {
    flex-wrap: wrap;
  }

  body {
    padding-bottom: 4.7rem;
  }

  .mobile-cta {
    display: inline-flex;
    position: fixed;
    left: 50%;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 70;
    min-width: min(92vw, 360px);
    justify-content: center;
    padding: 0.88rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: #fdf8f2;
    background: linear-gradient(120deg, #33271d 0%, #9f7849 55%, #af8758 100%);
    box-shadow: 0 18px 40px rgba(27, 19, 12, 0.36);
    font-weight: 600;
    letter-spacing: 0.01em;
  }
}

@media (max-width: 480px) {
  .section,
  .footer {
    width: calc(100% - 1rem);
  }

  .topbar {
    top: 0.35rem;
    width: calc(100% - 0.55rem);
    padding: 0.62rem;
    border-radius: 16px;
    gap: 0.45rem;
  }

  .brand {
    font-size: 1.08rem;
  }

  .topbar nav {
    gap: 0.35rem;
  }

  .topbar nav a {
    font-size: 0.8rem;
    padding: 0.42rem 0.6rem;
  }

  .hero {
    padding-top: 6.15rem;
    padding-bottom: 3.6rem;
    gap: 1.15rem;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .hero-copy h1 {
    font-size: clamp(1.88rem, 10.8vw, 2.45rem);
    line-height: 1.01;
  }

  .lead {
    margin-top: 0.95rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .hero-card-main {
    font-size: 1.35rem !important;
  }

  .panel {
    margin-top: 2.4rem;
    padding: 1.08rem;
    border-radius: 20px;
  }

  .section-head {
    margin-bottom: 1.4rem;
  }

  .section-head h1,
  .section-head h2 {
    font-size: clamp(1.45rem, 8.4vw, 1.95rem);
  }

  .about-card,
  .service-card,
  .timeline-item,
  .quote-card,
  .practical-card,
  .legal-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .service-card h3,
  .practical-card h3,
  .legal-card h3,
  .timeline-item h3 {
    font-size: 1.2rem;
  }

  .map-wrap {
    min-height: 220px;
    border-radius: 18px;
  }

  .booking-inner {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .booking-inner h2 {
    font-size: clamp(1.55rem, 8.8vw, 2.1rem);
  }

  .booking-inner p {
    line-height: 1.66;
  }

  .footer {
    margin-bottom: 1rem;
    font-size: 0.79rem;
  }

  body {
    padding-bottom: 5.3rem;
  }

  .mobile-cta {
    min-width: calc(100% - 1rem);
    padding: 0.82rem 1rem;
  }
}

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

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  [data-parallax],
  .hero-glow {
    transform: none !important;
  }
}
