/* ─────────────────────────────────────────────
   VARIABLES & RESET
───────────────────────────────────────────── */
:root {
  --gold: #c9a84c;
  --gold-lt: #d8bb6a;
  --gold-dk: #a8893e;
  --gold-glass: rgba(201, 168, 76, 0.1);
  --gold-border: rgba(201, 168, 76, 0.22);

  --bg: #0d0d0d;
  --bg-2: #111111;
  --bg-card: #171717;
  --bg-hover: #1d1d1d;

  --white: #ffffff;
  --off-white: #f5f0e8;
  --muted: #8a8a8a;
  --muted-dk: #5a5a5a;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --max-w: 1200px;
  --pad-x: clamp(16px, 4vw, 40px);
  --sec-py: clamp(64px, 9vw, 110px);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
address {
  font-style: normal;
}

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--sec-py) 0;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--white);
}

.section-sub {
  margin-top: 14px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    color 0.22s var(--ease),
    transform 0.18s var(--ease);
  white-space: nowrap;
  background: none;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

.btn-gold {
  background: var(--gold);
  color: #0d0d0d;
  border-color: var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.9375rem;
}

.btn-full {
  width: 100%;
  padding: 16px;
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
.anim.visible {
  opacity: 1;
  transform: none;
}
.anim-d1.visible {
  transition-delay: 0.08s;
}
.anim-d2.visible {
  transition-delay: 0.18s;
}
.anim-d3.visible {
  transition-delay: 0.28s;
}
.anim-d4.visible {
  transition-delay: 0.38s;
}
.anim-d5.visible {
  transition-delay: 0.48s;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  transition:
    background 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--gold-border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-gold {
  color: var(--gold);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 4px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 55% 40%, #1c1305 0%, transparent 65%),
    var(--bg);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 72%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 72%
  );
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__glow--1 {
  width: 700px;
  height: 700px;
  top: -180px;
  right: -120px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.075) 0%,
    transparent 68%
  );
  animation: drift 14s ease-in-out infinite;
}
.hero__glow--2 {
  width: 480px;
  height: 480px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 68%
  );
  animation: drift 18s ease-in-out infinite reverse;
}
.hero__glow--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 55%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.04) 0%,
    transparent 68%
  );
  animation: drift 22s ease-in-out 4s infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(24px, -36px);
  }
  66% {
    transform: translate(-18px, 22px);
  }
}

.hero__container {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero__content {
  max-width: 780px;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: hero-up 0.75s var(--ease-out) 0.15s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  font-weight: 500;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
  opacity: 0;
  animation: hero-up 0.75s var(--ease-out) 0.35s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--off-white);
}

.hero__sub {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.58);
  max-width: 480px;
  line-height: 1.72;
  margin-bottom: 40px;
  opacity: 0;
  animation: hero-up 0.75s var(--ease-out) 0.5s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-up 0.75s var(--ease-out) 0.65s forwards;
}

@keyframes hero-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fade-in 1s ease 1.2s forwards;
}
.hero__scroll-cue span {
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.br-desktop {
  display: block;
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services {
  background: var(--bg-2);
}

.services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s var(--ease);
}
.service-card:hover {
  background: var(--bg-hover);
  border-color: rgba(201, 168, 76, 0.48);
  transform: translateY(-5px);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: 22px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ─────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────── */
.why-us {
  background: var(--bg);
}

.specialist-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--gold-glass);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  margin-bottom: clamp(48px, 6vw, 72px);
  flex-wrap: wrap;
}
.specialist-note svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.specialist-note p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.specialist-note__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.why-row:last-of-type {
  margin-bottom: 0;
}

.why-row--rev .why-row__copy {
  order: 2;
}
.why-row--rev .why-row__visual {
  order: 1;
}

.why-row__num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #a8893e;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.why-row__heading {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 500;
  margin-bottom: 14px;
}

.why-row__text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.78;
}

.why-row__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.why-row__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-border);
  pointer-events: none;
}
.why-row__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.why-row__visual:hover img {
  transform: scale(1.04);
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process {
  background: var(--bg-2);
}

.process__track {
  position: relative;
}

.process__connector {
  position: absolute;
  top: 27px;
  left: calc(27px + 16px);
  right: calc(27px + 16px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-border),
    var(--gold-border),
    transparent
  );
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2vw, 24px);
  position: relative;
  z-index: 1;
}

.process__step {
  text-align: center;
}

.process__circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  letter-spacing: 0.02em;
}

.process__content h3 {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.process__content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS — infinite carousel
───────────────────────────────────────────── */
.testimonials {
  background: var(--bg);
  overflow: hidden;
}

.carousel {
  margin-top: clamp(40px, 5vw, 60px);
}

.carousel__row:last-child {
  display: none;
}

.carousel__row {
  /* edge fade */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  overflow: hidden;
}

.carousel__track {
  display: flex;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.carousel__track--rev {
  animation-direction: reverse;
}

.carousel__row:hover .carousel__track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track {
    animation: none;
  }
}

.r-card {
  width: 340px;
  flex-shrink: 0;
  margin-right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s;
}
.r-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
}

.r-card__stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.r-card__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--off-white);
  flex: 1;
}

.r-card__foot {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.r-card__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  font-style: normal;
}

.r-card__loc {
  font-size: 0.775rem;
  color: var(--muted);
  font-style: normal;
}

/* ─────────────────────────────────────────────
   GALLERY — BEFORE / AFTER SLIDER
───────────────────────────────────────────── */
.gallery {
  background: var(--bg-2);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ─────────────────────────────────────────────
   CONTACT / QUOTE FORM
───────────────────────────────────────────── */
.contact {
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.contact__sub {
  margin-top: 18px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 380px;
}

.contact__details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact__detail svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
  stroke-width: 1.5;
}

/* Form */
.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 44px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.form-group:last-of-type {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.015em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-dk);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23686868' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

.form-msg {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 10px;
  min-height: 1.2em;
}

.form-msg--error {
  color: rgba(220, 80, 80, 0.9);
}

.field-error {
  display: block;
  font-size: 0.775rem;
  color: rgba(220, 80, 80, 0.9);
  margin-top: 5px;
  min-height: 1em;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--gold-border);
  padding: clamp(48px, 7vw, 72px) 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}

.footer__nav h4,
.footer__contact h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__nav a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: var(--white);
}

.footer__contact p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer__contact a {
  transition: color 0.2s;
}
.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--muted-dk);
}
.footer__gold-accent {
  width: 48px;
  height: 1px;
  background: var(--gold-border);
}

/* ─────────────────────────────────────────────
   FLOATING CTA
───────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0d0d0d;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 20px 12px 16px;
  border-radius: 40px;
  box-shadow:
    0 4px 20px rgba(201, 168, 76, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    background 0.2s;
}
.floating-cta svg {
  width: 16px;
  height: 16px;
}
.floating-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--gold-lt);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Services: 2-per-row flex */
  .service-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

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

  .why-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-row--rev .why-row__copy {
    order: 0;
  }
  .why-row--rev .why-row__visual {
    order: 0;
  }

  .process__connector {
    display: none;
  }
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__sub {
    max-width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────────── */
@media (max-width: 700px) {
  :root {
    --nav-h: 60px;
  }

  /* Nav — hide links, show burger */
  .nav__menu,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 9999;
    padding-top: var(--nav-h);
    padding-bottom: 40px;
  }

  .nav__menu.open .nav__link {
    font-size: 1.25rem;
    color: var(--white);
  }
  .nav__menu.open + .nav__cta {
    display: none;
  }

  /* Staggered blur-in for each menu item */
  @keyframes nav-link-in {
    from {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      filter: blur(0);
      transform: translateY(0);
    }
  }

  .nav__menu.open li {
    opacity: 0;
    animation: nav-link-in 0.35s var(--ease) forwards;
  }
  .nav__menu.open li:nth-child(1) { animation-delay: 0.05s; }
  .nav__menu.open li:nth-child(2) { animation-delay: 0.10s; }
  .nav__menu.open li:nth-child(3) { animation-delay: 0.15s; }
  .nav__menu.open li:nth-child(4) { animation-delay: 0.20s; }
  .nav__menu.open li:nth-child(5) { animation-delay: 0.25s; }
  .nav__menu.open li:nth-child(6) { animation-delay: 0.30s; }
  .nav__menu.open li:nth-child(7) { animation-delay: 0.35s; }

  /* Lift burger above the menu overlay when open */
  .nav__burger.open {
    position: relative;
    z-index: 10000;
  }

  /* Burger animation */
  .nav__burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
  }
  .nav__burger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav__burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
  }

  .br-desktop {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
  }

  /* Services: single column flex */
  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel__track {
    animation-duration: 60s;
  }
  .r-card {
    width: 280px;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process__step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .process__circle {
    margin: 0;
    flex-shrink: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 22px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    text-align: center;
    gap: 10px;
  }

  .floating-cta {
    bottom: 18px;
    right: 18px;
    padding: 10px 16px 10px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .hero__title {
    font-size: 2.375rem;
  }
}
.nav__menu-logo-item {
  display: none;
  text-align: center;
  width: 100%;
}

.nav__menu.open .nav__menu-logo-item {
  display: block;
  margin-bottom: 8px;
}

.nav__menu-logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav__menu-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-border);
  margin: 16px auto 8px;
}
.nav__menu-logo-item {
  padding-top: 20px;
}
.nav__menu-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 10px auto 0px;
}

.nav__menu-logo-link {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

