*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink: #0e0d0b;
  --paper: #f5f0e8;
  --cream: #ede8dc;
  --gold: #8a6e35;
  --gold-lt: #d6bd82;
  --sage: #546d53;
  --white: #faf8f4;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Noto Sans Georgian", "Segoe UI", Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.42;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
.lang-switch a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: var(--paper);
  padding: 10px 20px;
  z-index: 1001;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible {
  top: 20px;
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
img {
  display: block;
  max-width: 100%;
}
.cursor {
  position: fixed;
  left: var(--cursor-x, -100px);
  top: var(--cursor-y, -100px);
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s;
  mix-blend-mode: multiply;
}
.cursor.expand {
  transform: translate(-50%, -50%) scale(4.8);
  opacity: 0.36;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 48px;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s,
    border-color 0.35s;
}
.site-header.scrolled {
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(18px);
  padding: 15px 48px;
  border-color: rgba(184, 151, 90, 0.22);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.brand-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand-text small {
  display: block;
  margin-top: 2px;
  color: var(--sage);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  gap: 38px;
}
.desktop-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.62;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.desktop-nav a:hover {
  opacity: 1;
  color: var(--gold);
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: flex;
  border: 1px solid rgba(184, 151, 90, 0.3);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(14, 13, 11, 0.72);
}
.lang-switch a.active {
  background: var(--gold);
  color: var(--paper);
}
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.24s var(--ease),
    background 0.24s,
    color 0.24s,
    border-color 0.24s;
}
.header-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.header-cta:hover {
  background: var(--gold);
  color: var(--paper);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 151, 90, 0.35);
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 30px;
  border: 0;
  background: transparent;
  font-size: 36px;
  color: var(--ink);
  cursor: pointer;
}
.mobile-langs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.mobile-langs a {
  font-family: var(--body);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(184, 151, 90, 0.2);
}
.mobile-langs .active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 151, 90, 0.08);
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 48px 140px;
  z-index: 4;
}
.hero-eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-eyebrow::before,
.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(54px, 6.5vw, 108px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  max-width: 42ch;
  margin-bottom: 40px;
  color: rgba(14, 13, 11, 0.78);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-3px);
}
.btn-outline {
  border: 1px solid rgba(14, 13, 11, 0.28);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.05);
  animation: imageSettle 7s var(--ease) forwards;
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper), transparent 28%),
    linear-gradient(0deg, rgba(14, 13, 11, 0.22), transparent 36%);
}
@keyframes imageSettle {
  to {
    transform: scale(1);
  }
}
.hero-stat-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(184, 151, 90, 0.22);
  background: rgba(245, 240, 232, 0.82);
  backdrop-filter: blur(14px);
}
.hero-stat {
  padding: 22px 48px;
  border-right: 1px solid rgba(184, 151, 90, 0.22);
}
.hero-stat:last-child {
  border-right: 0;
}
.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
}
.hero-stat span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.58;
}
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 132px 48px;
  background: var(--ink);
  color: var(--paper);
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 610px;
  object-fit: cover;
  object-position: center top;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(184, 151, 90, 0.35);
  z-index: 0;
}
.about-image-wrap img,
.about-tag {
  position: relative;
  z-index: 1;
}
.about-tag {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: var(--gold);
  color: var(--ink);
  padding: 18px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-copy .section-label {
  color: var(--gold-lt);
}
.about-copy .section-label::before {
  background: var(--gold-lt);
}
.about-copy h2,
.services-head h2,
.process-sticky h2,
.cta-band h2,
.contact-head h2,
.visual-copy h2 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.08;
}
.about-copy h2 {
  font-size: clamp(36px, 4vw, 62px);
  margin-bottom: 24px;
}
.about-copy h2 em,
.contact-head h2 em {
  font-style: italic;
  color: var(--gold-lt);
}
.about-copy p {
  margin-bottom: 16px;
  color: rgba(245, 240, 232, 0.68);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  padding: 8px 14px;
  border: 1px solid rgba(184, 151, 90, 0.42);
  color: var(--gold-lt);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services-section {
  padding: 132px 48px;
  background: var(--white);
}
.trust-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 110px 48px;
  background: linear-gradient(135deg, #f8f4ec, var(--cream));
  border-top: 1px solid rgba(184, 151, 90, 0.18);
  border-bottom: 1px solid rgba(184, 151, 90, 0.18);
}
.trust-copy h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 22px;
}
.trust-copy p {
  color: rgba(14, 13, 11, 0.78);
  line-height: 1.9;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(184, 151, 90, 0.18);
}
.trust-grid article {
  min-height: 180px;
  padding: 28px;
  background: rgba(250, 248, 244, 0.82);
  transition:
    background 0.3s,
    transform 0.3s;
}
.trust-grid article:hover {
  background: #fff;
  transform: translateY(-4px);
}
.trust-grid strong,
.trust-grid span {
  display: block;
}
.trust-grid strong {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 28px;
}
.trust-grid span {
  color: rgba(14, 13, 11, 0.78);
  line-height: 1.55;
}
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.services-head h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.services-head p {
  max-width: 33ch;
  text-align: right;
  color: rgba(14, 13, 11, 0.72);
  line-height: 1.75;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 151, 90, 0.18);
}
.service-card {
  position: relative;
  min-height: 410px;
  padding: 48px 38px;
  background: var(--white);
  overflow: hidden;
  transition:
    background 0.35s,
    transform 0.35s;
}
.service-card:hover {
  background: var(--cream);
  transform: translateY(-8px);
}
.service-num {
  display: block;
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: rgba(184, 151, 90, 0.22);
}
.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 151, 90, 0.42);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 24px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
}
.service-card p {
  color: rgba(14, 13, 11, 0.76);
  line-height: 1.78;
}
.service-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.visual-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: stretch;
  background: var(--paper);
}
.visual-band img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
  background: var(--cream);
}
.visual-copy h2 {
  font-size: clamp(34px, 4vw, 58px);
}
.seo-section {
  padding: 120px 48px;
  background: linear-gradient(135deg, var(--cream), var(--paper));
  border-top: 1px solid rgba(184, 151, 90, 0.2);
  border-bottom: 1px solid rgba(184, 151, 90, 0.2);
}
.seo-section h2,
.faq-section h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  max-width: 980px;
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 38px;
}
.seo-grid p {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(14, 13, 11, 0.66);
}
.process-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 90px;
  padding: 132px 48px;
  background: var(--paper);
}
.process-sticky {
  position: sticky;
  top: 110px;
  align-self: start;
}
.process-sticky h2 {
  font-size: clamp(36px, 4vw, 58px);
  margin-bottom: 20px;
}
.process-sticky p {
  color: rgba(14, 13, 11, 0.74);
  line-height: 1.8;
}
.process-room-photo {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 34px;
  border: 1px solid rgba(184, 151, 90, 0.24);
}
.process-list {
  display: flex;
  flex-direction: column;
}
.process-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 42px 0;
  border-top: 1px solid rgba(184, 151, 90, 0.24);
  transition: transform 0.3s var(--ease);
}
.process-item:last-child {
  border-bottom: 1px solid rgba(184, 151, 90, 0.24);
}
.process-item:hover {
  transform: translateX(18px);
}
.process-item span {
  font-family: var(--display);
  font-size: 21px;
  color: var(--gold);
}
.process-item h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
}
.process-item p {
  color: rgba(14, 13, 11, 0.76);
  line-height: 1.78;
}
.faq-section {
  padding: 120px 48px;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(184, 151, 90, 0.18);
}
.faq-item {
  min-height: 250px;
  padding: 34px;
  background: var(--white);
  transition:
    background 0.3s,
    transform 0.3s;
}
.faq-item:hover {
  background: var(--cream);
  transform: translateY(-6px);
}
.faq-item h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}
.faq-item p {
  color: rgba(14, 13, 11, 0.76);
  line-height: 1.78;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 82px 48px;
  background: var(--gold);
}
.cta-band h2 {
  max-width: 22ch;
  font-size: clamp(38px, 5vw, 72px);
}
.btn-dark {
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
}
.btn-dark:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-3px);
}
.contact-section {
  padding: 132px 48px;
  background: var(--ink);
  color: var(--paper);
}
.contact-head {
  margin-bottom: 70px;
}
.contact-head .section-label {
  color: var(--gold-lt);
}
.contact-head .section-label::before {
  background: var(--gold-lt);
}
.contact-head h2 {
  font-size: clamp(46px, 7vw, 96px);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item {
  min-height: 210px;
  padding: 38px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.3s;
}
.contact-item:last-child {
  border-right: 0;
}
.contact-item:hover {
  background: rgba(184, 151, 90, 0.09);
}
.contact-item span {
  display: block;
  margin-bottom: 54px;
  color: rgba(245, 240, 232, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-item strong {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 48px;
  background: #080807;
  border-top: 1px solid rgba(184, 151, 90, 0.16);
}
.footer-brand {
  font-family: var(--display);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.footer-socials a:hover {
  opacity: 0.7;
}
.site-footer p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 72px;
  z-index: 300;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  text-decoration: none;
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  display: block;
}
.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .cursor {
    display: none;
  }
}
@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    padding: 18px 24px;
  }
  .site-header.scrolled {
    padding: 14px 24px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.22;
  }
  .hero-right::after {
    background: linear-gradient(90deg, var(--paper), rgba(245, 240, 232, 0.82));
  }
  .hero-left {
    padding: 130px 28px 120px;
  }
  .about-section,
  .process-section,
  .trust-section {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 88px 28px;
  }
  .about-image-wrap {
    max-width: 180px;
    margin: 0 auto;
  }
  .about-image-wrap img {
    aspect-ratio: 1/1;
  }
  .seo-section,
  .faq-section,
  .services-section,
  .contact-section {
    padding: 88px 28px;
  }
  .services-head {
    display: block;
  }
  .services-head p {
    text-align: left;
    margin-top: 18px;
  }
  .services-grid,
  .contact-grid,
  .faq-grid,
  .seo-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .visual-band {
    grid-template-columns: 1fr;
  }
  .visual-band img {
    height: 420px;
  }
  .process-sticky {
    position: static;
  }
  .contact-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .cta-band {
    padding: 60px 28px;
    display: block;
  }
  .cta-band .btn {
    margin-top: 26px;
  }
  .site-footer {
    padding: 28px;
    display: block;
  }
  .site-footer p {
    margin-top: 10px;
  }
}
/* ── Tablet tweaks (641–768px) ── */
@media (max-width: 768px) {
  .trust-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visual-band img {
    height: 320px;
  }
  .visual-copy {
    padding: 38px 28px;
  }
  .visual-copy h2 {
    font-size: clamp(26px, 4vw, 42px);
  }
  .seo-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item {
    min-height: auto;
    padding: 28px 24px;
  }
  .service-card {
    min-height: auto;
    padding: 36px 28px;
  }
  .service-num {
    font-size: 54px;
    margin-bottom: 18px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-item {
    min-height: auto;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .contact-item span {
    margin-bottom: 14px;
  }
  .hero-stat-bar {
    grid-template-columns: 1fr;
    position: static;
  }
  .hero-stat {
    padding: 18px 28px;
    border-right: 0;
    border-top: 1px solid rgba(184, 151, 90, 0.22);
  }
  .hero-stat strong {
    font-size: 28px;
  }
}

/* ── Small phones (≤640px) ── */
@media (max-width: 640px) {
  .cursor {
    display: none;
  }
  .brand-text small {
    display: none;
  }
  .lang-switch {
    display: none;
  }
  .hero-title {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.58;
    margin-bottom: 40px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 36px;
  }
  .hero-eyebrow::before {
    width: 22px;
  }
  .hero-left {
    padding: 110px 20px 60px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    min-height: 48px;
    font-size: 13px;
  }
  .about-section {
    padding: 64px 20px;
    gap: 40px;
  }
  .about-image-wrap::before {
    display: none;
  }
  .about-tag {
    right: 0;
    bottom: -14px;
    padding: 14px 18px;
    font-size: 10px;
  }
  .about-copy h2 {
    font-size: clamp(26px, 6vw, 36px);
    margin-bottom: 18px;
  }
  .about-copy p {
    font-size: 14px;
    line-height: 1.75;
  }
  .about-badges {
    gap: 8px;
    margin-top: 22px;
  }
  .badge {
    padding: 7px 12px;
    font-size: 10px;
  }
  .trust-section {
    padding: 64px 20px;
  }
  .trust-copy h2 {
    font-size: clamp(26px, 6vw, 38px);
  }
  .trust-copy p {
    font-size: 14px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid article {
    min-height: auto;
    padding: 22px 20px;
  }
  .trust-grid strong {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .trust-grid span {
    font-size: 14px;
  }
  .services-section {
    padding: 64px 20px;
  }
  .services-head {
    margin-bottom: 36px;
  }
  .services-head h2 {
    font-size: clamp(28px, 7vw, 42px);
  }
  .services-grid {
    display: block;
    background: transparent;
  }
  .service-card {
    min-height: auto;
    padding: 32px 22px;
    margin-bottom: 1px;
  }
  .service-num {
    font-size: 48px;
    margin-bottom: 14px;
  }
  .service-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin-bottom: 18px;
  }
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.7;
  }
  .visual-band {
    grid-template-columns: 1fr;
  }
  .visual-band img {
    height: 260px;
  }
  .visual-copy {
    padding: 32px 20px;
  }
  .visual-copy h2 {
    font-size: clamp(22px, 5.5vw, 34px);
  }
  .seo-section {
    padding: 64px 20px;
  }
  .seo-section h2 {
    font-size: clamp(26px, 6vw, 40px);
  }
  .seo-grid p {
    font-size: 15px;
    line-height: 1.75;
  }
  .process-section {
    padding: 64px 20px;
    gap: 36px;
  }
  .process-sticky h2 {
    font-size: clamp(28px, 6vw, 42px);
  }
  .process-sticky p {
    font-size: 14px;
  }
  .process-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }
  .process-item h3 {
    font-size: 24px;
  }
  .process-item p {
    font-size: 14px;
  }
  .faq-section {
    padding: 64px 20px;
  }
  .faq-section h2 {
    font-size: clamp(24px, 6vw, 38px);
  }
  .faq-item {
    min-height: auto;
    padding: 24px 20px;
  }
  .faq-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .faq-item p {
    font-size: 14px;
  }
  .cta-band {
    padding: 48px 20px;
  }
  .cta-band h2 {
    font-size: clamp(26px, 6vw, 42px);
  }
  .cta-band .btn {
    width: 100%;
    margin-top: 22px;
  }
  .contact-section {
    padding: 64px 20px;
  }
  .contact-head {
    margin-bottom: 40px;
  }
  .contact-head h2 {
    font-size: clamp(32px, 8vw, 50px);
  }
  .contact-item {
    min-height: auto;
    padding: 24px 20px;
  }
  .contact-item span {
    margin-bottom: 12px;
  }
  .contact-item strong {
    font-size: 18px;
  }
  .site-footer {
    padding: 24px 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-brand {
    font-size: 17px;
  }
  .site-footer p {
    font-size: 11px;
    width: 100%;
  }
  .whatsapp-fab {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    right: 18px;
    bottom: 24px;
    padding: 0;
  }
  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
  .mobile-nav a {
    font-size: 32px;
  }
  .mobile-nav {
    gap: 26px;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
  }
  .section-label::before {
    width: 22px;
  }
}

/* ── Extra-small phones (≤380px — Galaxy A, iPhone SE, etc.) ── */
@media (max-width: 380px) {
  .site-header {
    padding: 14px 14px;
    gap: 10px;
  }
  .site-header.scrolled {
    padding: 12px 14px;
  }
  .brand-logo {
    width: 48px;
    height: 34px;
  }
  .brand-text strong {
    font-size: 13px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .hero-left {
    padding: 100px 14px 50px;
  }
  .hero-title {
    font-size: clamp(28px, 8.5vw, 38px);
    margin-bottom: 18px;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
    gap: 8px;
    margin-bottom: 12px;
  }
  .hero-eyebrow::before {
    width: 18px;
  }
  .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .hero-stat {
    padding: 14px 14px;
  }
  .hero-stat strong {
    font-size: 24px;
  }
  .hero-stat span {
    font-size: 10px;
  }
  .about-section {
    padding: 50px 14px;
    gap: 32px;
  }
  .about-copy h2 {
    font-size: clamp(22px, 6vw, 30px);
    margin-bottom: 14px;
  }
  .about-copy p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  .about-tag {
    padding: 10px 14px;
    font-size: 9px;
  }
  .badge {
    padding: 6px 10px;
    font-size: 9px;
  }
  .trust-section {
    padding: 50px 14px;
  }
  .trust-copy h2 {
    font-size: clamp(22px, 6vw, 32px);
  }
  .trust-copy p {
    font-size: 13px;
  }
  .trust-grid article {
    padding: 18px 14px;
  }
  .trust-grid strong {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .trust-grid span {
    font-size: 13px;
  }
  .services-section {
    padding: 50px 14px;
  }
  .services-head {
    margin-bottom: 28px;
  }
  .services-head h2 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .service-card {
    padding: 26px 16px;
  }
  .service-num {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .service-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
    margin-bottom: 14px;
  }
  .service-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 13px;
  }
  .service-link {
    font-size: 11px;
    margin-top: 18px;
  }
  .visual-band img {
    height: 200px;
  }
  .visual-copy {
    padding: 26px 14px;
  }
  .visual-copy h2 {
    font-size: clamp(20px, 5vw, 28px);
  }
  .seo-section {
    padding: 50px 14px;
  }
  .seo-section h2 {
    font-size: clamp(22px, 6vw, 34px);
  }
  .seo-grid p {
    font-size: 14px;
    line-height: 1.7;
  }
  .process-section {
    padding: 50px 14px;
    gap: 28px;
  }
  .process-sticky h2 {
    font-size: clamp(24px, 6vw, 34px);
    margin-bottom: 14px;
  }
  .process-sticky p {
    font-size: 13px;
  }
  .process-item {
    padding: 22px 0;
    gap: 8px;
  }
  .process-item span {
    font-size: 18px;
  }
  .process-item h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .process-item p {
    font-size: 13px;
  }
  .faq-section {
    padding: 50px 14px;
  }
  .faq-section h2 {
    font-size: clamp(20px, 5.5vw, 32px);
  }
  .faq-item {
    padding: 20px 14px;
  }
  .faq-item h3 {
    font-size: 19px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .faq-item p {
    font-size: 13px;
    line-height: 1.65;
  }
  .cta-band {
    padding: 40px 14px;
  }
  .cta-band h2 {
    font-size: clamp(22px, 6vw, 34px);
  }
  .contact-section {
    padding: 50px 14px;
  }
  .contact-head {
    margin-bottom: 32px;
  }
  .contact-head h2 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .contact-item {
    padding: 20px 14px;
  }
  .contact-item span {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .contact-item strong {
    font-size: 16px;
  }
  .site-footer {
    padding: 20px 14px;
  }
  .footer-brand {
    font-size: 15px;
  }
  .footer-socials {
    gap: 14px;
  }
  .footer-socials a {
    font-size: 10px;
  }
  .site-footer p {
    font-size: 10px;
  }
  .whatsapp-fab {
    right: 14px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
  }
  .whatsapp-fab svg {
    width: 22px;
    height: 22px;
  }
  .mobile-nav a {
    font-size: 26px;
  }
  .mobile-nav {
    gap: 22px;
  }
  .mobile-nav-close {
    font-size: 30px;
    top: 16px;
    right: 18px;
  }
  .mobile-langs a {
    font-size: 12px;
    padding: 0 12px;
  }
  .section-label {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    gap: 8px;
  }
  .section-label::before {
    width: 18px;
  }
}

/* Booking and accessible navigation work independently of reveal animations. */
section[id],
main[id] {
  scroll-margin-top: 100px;
}
.menu-toggle {
  visibility: hidden;
}
.nav-ready .menu-toggle {
  visibility: visible;
}
.mobile-nav {
  z-index: 600;
  visibility: hidden;
  overflow-y: auto;
}
.mobile-nav.open {
  visibility: visible;
}
.mobile-nav-close {
  width: 48px;
  height: 48px;
}
.credential-note {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(138, 110, 53, 0.35);
  border-left: 3px solid var(--gold);
  background: rgba(250, 248, 244, 0.7);
}
.credential-note h3 {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.credential-note p {
  font-size: 14px;
  line-height: 1.9;
}
.credential-note .section-label {
  margin-bottom: 10px;
  color: #705a2d;
}
.certificate-proof {
  margin-top: 20px;
  padding: 0;
  max-width: 460px;
}
.certificate-preview {
  display: block;
}
.certificate-frame {
  display: block;
  padding: 18px;
  border: 8px solid #af905b;
  background: #faf7ef;
  outline: 1px solid #d6bd82;
  box-shadow:
    0 12px 26px #0003,
    inset 0 0 0 1px #b5aa94;
}
.certificate-view {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 14px;
  color: var(--paper);
  border-bottom: 1px solid #d6bd8266;
}
.credential-note h3,
.credential-note p {
  color: #344333;
}
.certificate-proof img {
  width: 100%;
  height: auto;
}
.certificate-proof figcaption {
  padding: 10px 4px 2px;
  color: var(--sage);
  font-size: 12px;
  line-height: 1.6;
}
.service-card .service-details {
  font-size: 13px;
  margin-top: 18px;
  color: var(--sage);
}
.pricing-section {
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}
.pricing-section h2 {
  font-family: var(--body);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 36px;
  letter-spacing: -0.035em;
}
.pricing-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.pricing-group {
  padding: 30px;
  background: var(--white);
  border: 1px solid #d6d3c7;
  border-radius: 12px;
}
.price-grid {
  display: grid;
  gap: 0;
}
.pricing-intro {
  margin: 0 0 20px;
  color: var(--sage);
  font-family: var(--body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.pricing-section h2 + .pricing-intro {
  margin-top: 0;
}
.price-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid #deddd4;
}
.price-card h4 {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 500;
}
.price-amount {
  font-size: 27px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
  white-space: nowrap;
  color: #435840;
}
.price-card .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 0;
  border-radius: 6px;
}
.pricing-age-note {
  font-size: 13px;
  line-height: 1.8;
  color: #565b51;
  border-top: 1px solid #deddd4;
  padding-top: 18px;
}
.pricing-note {
  margin-top: 24px;
  line-height: 1.8;
  max-width: 760px;
  color: #4c5146;
  font-size: 14px;
}
@media (max-width: 960px) {
  .pricing-groups {
    grid-template-columns: 1fr;
  }
}
.contact-note {
  font-size: 15px;
  line-height: 1.9;
  max-width: 760px;
  margin-top: 20px;
  color: rgba(250, 248, 244, 0.85);
}
.call-dialog {
  margin: auto;
  width: min(460px, calc(100% - 32px));
  padding: 36px 28px;
  border: 1px solid #d6d3c7;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}
.call-dialog::backdrop {
  background: rgb(14 13 11 / 65%);
}
.call-dialog h2 {
  font: 500 23px/1.5 var(--body);
  padding-right: 20px;
}
.call-dialog p {
  font: 400 14px/1.8 var(--body);
}
.call-dialog .call-number {
  font-size: 26px;
  margin: 16px 0;
  color: #435840;
}
.call-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.call-actions .btn {
  padding: 0 18px;
  letter-spacing: 0;
  font-size: 12px;
}
.call-native {
  width: 100%;
  text-decoration: underline;
  padding: 8px 0;
  font-size: 14px;
}
.call-status {
  min-height: 26px;
}
.mobile-booking {
  display: none;
}
.desktop-nav {
  gap: 20px;
}
.desktop-nav a {
  opacity: 0.85;
  letter-spacing: 0.025em;
}
@media (max-width: 1024px) {
  .mobile-nav {
    padding: 72px 24px 32px;
  }
  .mobile-nav a {
    font-family: var(--body);
    font-size: clamp(20px, 4vw, 32px);
    text-align: center;
  }
  .mobile-nav .mobile-langs a {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .pricing-section {
    padding: 56px 20px;
  }
  .price-grid {
    gap: 0;
  }
  .pricing-group {
    padding: 22px 18px;
  }
  .price-card {
    padding: 20px 0;
    gap: 10px;
  }
  .price-card h4 {
    font-size: 14px;
  }
  .price-amount {
    font-size: 24px;
  }
  .price-card .btn {
    width: auto;
    padding: 0 8px;
    font-size: 11px;
    letter-spacing: 0;
  }
  .credential-note {
    padding: 18px;
  }
  .certificate-proof {
    padding: 7px;
  }
  .mobile-booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid rgba(138, 110, 53, 0.25);
  }
  .mobile-booking a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--paper);
    font-size: 14px;
  }
  .mobile-booking a:last-child {
    background: #36533e;
  }
  .whatsapp-fab {
    display: none;
  }
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }
  .nav-open .mobile-booking {
    visibility: hidden;
  }
}
@media (max-height: 540px) and (max-width: 1024px) {
  .mobile-nav {
    justify-content: flex-start;
    gap: 14px;
  }
  .mobile-nav a {
    font-size: 20px;
  }
}
.site-header {
  background: rgba(245, 240, 232, 0.94);
  border-bottom-color: rgba(138, 110, 53, 0.15);
}
.hero-title {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.2;
}
.hero-desc {
  color: #565147;
  opacity: 1;
}
.hero-stat span {
  color: #5b554a;
  opacity: 1;
}
@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(34px, 9vw, 48px);
  }
}
