:root {
  --color-primary: #a55f69;
  --color-primary-dark: #82434d;
  --color-primary-soft: #d9a7aa;
  --color-ink: #443d3a;
  --color-muted: #726a66;
  --color-background: #fffdfb;
  --color-surface: #fffaf7;
  --color-tinted: #f8f1ed;
  --color-line: #dbcac3;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(83, 55, 47, 0.09);
  --shadow-card: 0 20px 55px rgba(83, 55, 47, 0.12);
  --shadow-floating: 0 16px 38px rgba(84, 42, 49, 0.25);
  --container: 1320px;
  --header-height: 92px;
  --radius-sm: 2px;
  --transition: 220ms ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 40;
  --z-floating: 35;
  --z-modal: 80;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-background);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  touch-action: manipulation;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.22;
}

h1,
h2 {
  font-weight: 300;
  letter-spacing: 0.025em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
}

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

.section {
  padding-block: clamp(72px, 8vw, 120px);
}

.section-tinted {
  background: var(--color-tinted);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-primary-dark);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
  box-shadow: 0 8px 24px rgba(130, 67, 77, 0.18);
}

.button:active {
  box-shadow: none;
  transform: scale(0.985);
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button .icon-fill,
.footer-column .icon-fill {
  fill: currentColor;
  stroke: none;
}

.button-outline {
  color: var(--color-primary);
  background: transparent;
}

.button-outline:hover {
  color: var(--color-white);
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.73rem;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--color-white);
  background: transparent;
}

.button-light:hover {
  border-color: var(--color-white);
  color: var(--color-primary-dark);
  background: var(--color-white);
}

:focus-visible {
  outline: 3px solid rgba(165, 95, 105, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(219, 202, 195, 0.52);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(12px);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(165, 95, 105, 0.14);
  background: rgba(255, 253, 251, 0.975);
  box-shadow: 0 10px 32px rgba(71, 47, 40, 0.08);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 235px;
  height: 68px;
  object-fit: contain;
  filter: invert(46%) sepia(15%) saturate(1290%) hue-rotate(303deg) brightness(91%) contrast(86%);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 32px);
}

.main-nav > a:not(.button) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-soft));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.hero {
  position: relative;
  padding-bottom: 32px;
  overflow: hidden;
  background: #faf4f0;
}

.hero::after {
  position: absolute;
  inset: 0 0 32px;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.08), transparent 38%),
    linear-gradient(0deg, rgba(78, 48, 43, 0.04), transparent 22%);
  content: "";
  pointer-events: none;
}

.hero-art {
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: auto;
  animation: hero-settle 1.15s var(--ease-out) both;
  will-change: transform, opacity;
}

.hero-mobile-copy {
  display: none;
}

.hero-actions {
  position: absolute;
  bottom: 10px;
  left: max(24px, calc((100vw - var(--container)) / 2 + 6.5%));
  display: flex;
  gap: 14px;
  z-index: 2;
  animation: hero-actions-in 760ms 300ms var(--ease-out) both;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(300px, 1.04fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(46px, 6vw, 90px);
}

.about-photo {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: var(--color-tinted);
  box-shadow: var(--shadow-card);
}

.about-photo::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  content: "";
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
}

.about-copy h2 {
  margin-bottom: 14px;
  color: var(--color-primary);
}

.about-copy {
  position: relative;
}

.about-copy::before {
  position: absolute;
  top: -52px;
  left: -42px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 167, 170, 0.14), transparent 70%);
  content: "";
}

.about-copy p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 22px;
  color: var(--color-muted);
}

.title-rule {
  display: block;
  width: 62px;
  height: 1px;
  margin: 22px 0 34px;
  background: var(--color-primary);
}

.benefits {
  display: grid;
  gap: 26px;
  padding-left: clamp(26px, 3vw, 54px);
  border-left: 1px solid var(--color-line);
}

.benefit {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 18px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.benefit:hover {
  border-color: rgba(219, 202, 195, 0.72);
  background: rgba(255, 250, 247, 0.82);
  box-shadow: 0 12px 30px rgba(83, 55, 47, 0.06);
  transform: translateY(-3px);
}

.benefit svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.benefit h3 {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.benefit p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-heading {
  position: relative;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.section-heading::after {
  display: block;
  width: 42px;
  height: 1px;
  margin: 22px auto 0;
  background: var(--color-primary);
  content: "";
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(240px, 0.9fr) minmax(240px, 0.9fr) minmax(210px, 1fr);
  min-height: 445px;
}

.service-image {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  background: #e8ded9;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(38, 27, 25, 0.66));
  content: "";
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.service-image figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  line-height: 1.35;
  transform: translateY(4px);
  transition: transform 320ms var(--ease-out);
}

.service-image figcaption span {
  margin-bottom: 4px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-image figcaption strong {
  font-size: 0.9rem;
  font-weight: 400;
}

.service-image:hover::after {
  opacity: 0.86;
}

.service-image:hover figcaption {
  transform: translateY(0);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.service-image:hover img {
  transform: scale(1.025);
}

.service-image:first-child img {
  object-position: center 42%;
}

.service-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 54px) clamp(24px, 3vw, 44px);
  border: 1px solid var(--color-line);
  background: rgba(255, 253, 251, 0.7);
  transition:
    background-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms var(--ease-out);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary-soft), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 280ms ease,
    transform 280ms var(--ease-out);
}

.service-card:hover {
  z-index: 1;
  background: rgba(255, 253, 251, 0.98);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-card h3 {
  margin-bottom: 22px;
  color: var(--color-primary);
  font-size: 1.42rem;
  font-weight: 300;
  text-transform: uppercase;
}

.service-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.result-card {
  position: relative;
  height: clamp(280px, 30vw, 455px);
  margin-bottom: 0;
  overflow: hidden;
  background: var(--color-tinted);
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.result-view {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
  padding: 22px;
  border: 0;
  color: var(--color-white);
  background: linear-gradient(180deg, transparent 50%, rgba(40, 26, 24, 0.72));
  cursor: pointer;
  opacity: 0;
  transition: opacity 260ms ease;
}

.result-view span {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform 260ms var(--ease-out);
}

.result-view svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transform: translateY(8px);
  transition: transform 260ms var(--ease-out);
}

.result-card:hover .result-view,
.result-view:focus-visible {
  opacity: 1;
}

.result-card:hover .result-view span,
.result-card:hover .result-view svg,
.result-view:focus-visible span,
.result-view:focus-visible svg {
  transform: translateY(0);
}

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

.result-featured {
  transform: translateY(-18px);
}

.center {
  display: flex;
  justify-content: center;
}

.testimonial-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 0.8rem;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-viewport {
  padding: 10px 0 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-viewport:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 6px;
}

.testimonial-track {
  display: grid;
  grid-auto-columns: calc((100% - 56px) / 3);
  grid-auto-flow: column;
  gap: 28px;
}

.testimonial {
  position: relative;
  min-height: 260px;
  margin: 0;
  padding: 38px 34px 30px;
  border: 1px solid var(--color-line);
  background: rgba(255, 253, 251, 0.52);
  box-shadow: 0 12px 35px rgba(83, 55, 47, 0.035);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.testimonial::before {
  position: absolute;
  top: -1px;
  left: 34px;
  width: 54px;
  height: 2px;
  background: var(--color-primary);
  content: "";
}

.testimonial:hover {
  border-color: rgba(165, 95, 105, 0.42);
  background: rgba(255, 253, 251, 0.86);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.quote-icon {
  width: 34px;
  height: 28px;
  margin-bottom: 18px;
  fill: var(--color-primary-soft);
}

.testimonial > p {
  min-height: 78px;
  margin-bottom: 24px;
  color: var(--color-muted);
}

.testimonial footer {
  display: flex;
  align-items: center;
}

.testimonial footer strong {
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonial-arrow {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(255, 253, 251, 0.72);
  cursor: pointer;
  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.testimonial-arrow:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-white);
  background: var(--color-primary);
}

.testimonial-arrow:disabled {
  cursor: default;
  opacity: 0.34;
}

.testimonial-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.testimonial-counter {
  min-width: 94px;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.booking-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 64px) 0;
  color: var(--color-white);
  background: linear-gradient(105deg, var(--color-primary-dark), #b8777e);
}

.booking-cta::before,
.booking-cta::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.booking-cta::before {
  top: -210px;
  left: 8%;
}

.booking-cta::after {
  right: 6%;
  bottom: -235px;
}

.booking-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.booking-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.booking-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  text-transform: none;
}

.site-footer {
  padding-top: 58px;
  background: var(--color-background);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr 1.2fr;
  gap: 42px;
  padding-bottom: 44px;
}

.footer-brand .brand img {
  width: 255px;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: var(--color-ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column address,
.footer-column a {
  color: var(--color-muted);
  font-size: 0.83rem;
  font-style: normal;
  line-height: 1.8;
}

.footer-column a {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-column svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--color-line);
}

.footer-bottom p {
  margin-bottom: 0;
  color: #998f8a;
  font-size: 0.7rem;
}

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

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.gallery-dialog {
  width: min(920px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  overflow: visible;
}

.gallery-dialog::backdrop {
  background: rgba(39, 27, 25, 0.78);
  backdrop-filter: blur(8px);
}

.gallery-dialog[open] {
  animation: dialog-in 300ms var(--ease-out) both;
}

.gallery-shell {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--color-background);
  box-shadow: 0 30px 90px rgba(20, 13, 12, 0.38);
}

.gallery-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.gallery-topbar h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
}

.gallery-close,
.gallery-arrow,
.back-to-top {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  background: rgba(255, 253, 251, 0.9);
  cursor: pointer;
  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.gallery-close:hover,
.gallery-arrow:hover,
.back-to-top:hover {
  border-color: var(--color-primary);
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 10px 26px rgba(130, 67, 77, 0.2);
}

.gallery-close:active,
.gallery-arrow:active,
.back-to-top:active {
  transform: scale(0.96);
}

.gallery-close svg,
.gallery-arrow svg,
.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.gallery-stage {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
}

.gallery-stage figure {
  display: grid;
  height: min(66dvh, 650px);
  margin: 0;
  overflow: hidden;
  background: var(--color-tinted);
}

.gallery-stage figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-stage figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.gallery-counter {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: var(--z-floating);
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-floating);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 260ms ease,
    transform 260ms var(--ease-out),
    background-color var(--transition),
    box-shadow var(--transition);
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover {
  background: var(--color-primary);
  box-shadow: 0 20px 45px rgba(84, 42, 49, 0.32);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: var(--z-floating);
  box-shadow: 0 12px 28px rgba(83, 55, 47, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

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

@keyframes hero-settle {
  from {
    opacity: 0.65;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-actions-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .brand img {
    width: 185px;
    height: 56px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.68rem;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .about-grid {
    grid-template-columns: 0.8fr 1fr;
  }

  .about-photo {
    height: 500px;
  }

  .benefits {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px 0 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .benefit {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .services-grid {
    grid-template-columns: 0.8fr 1fr 1fr 0.8fr;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    max-height: calc(100dvh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    border-top: 1px solid var(--color-line);
    background: var(--color-background);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

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

  .main-nav > a:not(.button) {
    min-height: 52px;
    justify-content: center;
    font-size: 0.82rem;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero-actions {
    bottom: 5%;
    left: 7%;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.64rem;
  }

  .about-grid {
    gap: 38px;
  }

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

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

  .service-image {
    min-height: 430px;
  }

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

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

  .result-card {
    height: 430px;
  }

  .result-featured {
    transform: none;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 28px) / 2);
  }

  .testimonial {
    min-height: 0;
  }

  .testimonial > p {
    min-height: 0;
  }

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

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 68px;
  }

  .brand img {
    width: 170px;
    height: 52px;
  }

  .hero {
    display: grid;
    padding-bottom: 0;
  }

  .hero::after {
    inset: 0;
  }

  .hero-mobile-copy {
    display: block;
    order: 1;
    padding-top: 50px;
    padding-bottom: 34px;
  }

  .hero-mobile-copy h1 {
    max-width: 11ch;
    margin-bottom: 22px;
    color: var(--color-primary);
    font-size: clamp(2.25rem, 11vw, 3.65rem);
    text-transform: uppercase;
  }

  .hero-mobile-copy > p:last-child {
    max-width: 47ch;
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 0.94rem;
  }

  .hero-art {
    display: none;
    order: 2;
    height: min(118vw, 560px);
  }

  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
  }

  .hero-actions {
    position: static;
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    padding: 20px 0 42px;
  }

  .hero-actions .button {
    min-height: 50px;
    font-size: 0.72rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 470px;
  }

  .about-copy {
    padding-top: 4px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    min-height: 390px;
  }

  .service-card {
    min-height: 0;
  }

  .services-grid .service-card:nth-child(2) {
    order: -1;
  }

  .results-grid {
    gap: 8px;
  }

  .result-card {
    height: 65vw;
    max-height: 390px;
  }

  .result-view {
    opacity: 1;
  }

  .result-view span,
  .result-view svg {
    transform: translateY(0);
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

  .booking-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-inner .button {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .gallery-shell {
    padding: 16px;
  }

  .gallery-stage {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .gallery-stage figure {
    height: min(62dvh, 520px);
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    min-width: 52px;
    justify-content: center;
    padding-inline: 15px;
  }

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

@media (max-width: 420px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    height: 110vw;
    max-height: 500px;
  }

  .button {
    width: 100%;
  }

  .gallery-topbar h2 {
    font-size: 1.12rem;
  }

  .gallery-stage {
    grid-template-columns: 1fr;
  }

  .gallery-stage figure {
    grid-row: 1;
  }

  .gallery-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-prev {
    left: 22px;
  }

  .gallery-next {
    right: 22px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .result-view {
    opacity: 1;
  }

  .result-view span,
  .result-view svg {
    transform: translateY(0);
  }
}

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

  *,
  *::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;
  }
}
