:root {
  --black: #0a0a0a;
  --graphite: #111111;
  --graphite-2: #171717;
  --graphite-3: #1d1d1d;
  --gold: #c6a962;
  --gold-light: #e4c987;
  --gold-deep: #a8873b;
  --white: #f5f3ef;
  --muted: #9b9b93;
  --line: rgba(198, 169, 98, 0.22);
  --font-display: "Oswald", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-deep), var(--gold));
  border-radius: 6px;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  color: #161006;
  box-shadow: 0 10px 30px -12px rgba(198, 169, 98, 0.55);
}

.btn--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f4e3ab, var(--gold-light) 40%, var(--gold));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -14px rgba(198, 169, 98, 0.75);
}

.btn--gold:hover::before {
  opacity: 1;
}

.btn--gold > * {
  position: relative;
  z-index: 1;
}

.btn--ghost {
  border-color: rgba(245, 243, 239, 0.35);
  color: var(--white);
  background: transparent;
}

.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.btn--ghost:hover {
  color: #161006;
  border-color: var(--gold);
}

.btn--ghost:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--ghost > * {
  position: relative;
  z-index: 1;
}

.btn--lg {
  padding: 1.15rem 2.3rem;
  font-size: 0.95rem;
}

.btn--sm {
  padding: 0.72rem 1.5rem;
  font-size: 0.78rem;
  box-shadow: none;
}

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line);
  box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.8);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  transition: height 0.4s var(--ease);
}

.header--scrolled .header__inner {
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.logo:hover .logo__mark {
  background: var(--gold);
  color: #161006;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: 0.18em;
}

.logo__text em {
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.42em;
  font-size: 0.78rem;
}

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

.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  padding: 0.78rem 1.6rem;
  font-size: 0.78rem;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0 10px;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 75% 45%, rgba(198, 169, 98, 0.16), transparent 60%),
    linear-gradient(105deg, rgba(6, 6, 6, 0.96) 22%, rgba(6, 6, 6, 0.72) 55%, rgba(10, 10, 10, 0.42) 100%),
    linear-gradient(to top, var(--black) 2%, transparent 30%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 6rem;
}

.hero__eyebrow {
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.1rem, 9.5vw, 7.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 1.4rem 0 1.6rem;
  letter-spacing: 0.01em;
}

.hero__line {
  display: block;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}

.hero__line--gold {
  color: transparent;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  animation-delay: 0.45s;
}

.hero__sub {
  max-width: 540px;
  font-size: 1.06rem;
  font-weight: 300;
  color: rgba(245, 243, 239, 0.82);
  margin-bottom: 2.4rem;
  animation: fadeUp 0.9s var(--ease) 0.6s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.9s var(--ease) 0.75s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
  margin-top: 4.2rem;
  animation: fadeUp 1s var(--ease) 0.95s both;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.badge__icon svg {
  width: 20px;
  height: 20px;
}

.hero__scroll {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.hero__scroll svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  animation: floatY 2s ease-in-out infinite;
}

.hero__scroll:hover {
  color: var(--gold);
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Sections base ---------- */

section {
  padding: 6.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.6rem;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow::before {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 1.1rem 0 1.3rem;
}

.section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  text-transform: none;
  color: var(--gold);
  font-size: 1.05em;
}

.section-desc {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.02rem;
}

/* ---------- Services ---------- */

.services {
  background: var(--graphite);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.card {
  position: relative;
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--line);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(198, 169, 98, 0.12);
}

.card--featured {
  border-color: var(--line);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--graphite-2) 4%, transparent 55%);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06) brightness(0.92);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.05) brightness(1);
}

.card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 0.42rem 0.9rem;
}

.card__body {
  padding: 1.7rem 1.8rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card__desc {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  flex: 1;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.3rem;
  margin-top: 0.3rem;
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ---------- About ---------- */

.about {
  background: var(--black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__img--main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about__img--sub {
  position: absolute;
  right: -2.4rem;
  bottom: -2.6rem;
  width: 46%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 6px solid var(--black);
  filter: saturate(0.85) contrast(1.08) brightness(0.92);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.9);
}

.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.6rem;
  margin: 2rem 0;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(245, 243, 239, 0.85);
}

.about__check {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.about__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--gold);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}

.about__stats {
  display: flex;
  gap: 2.6rem;
  margin-bottom: 2.6rem;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
}

.stat__number::after {
  content: "+";
  color: var(--gold-light);
}

.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Contact ---------- */

.contact {
  background: var(--graphite);
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.contact__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 2.4rem 2rem;
  background: var(--graphite-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

a.contact__card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.9);
}

.contact__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 0.8rem;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

a.contact__card:hover .contact__icon {
  background: var(--gold);
  color: #161006;
}

.contact__icon svg {
  width: 24px;
  height: 24px;
}

.contact__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__card p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
}

.contact__action {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__note {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer__top {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--gold);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.footer__top:hover {
  background: var(--gold);
  color: #161006;
  transform: translateY(-4px);
}

.footer__top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

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

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

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .cards,
  .contact__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .about__media {
    max-width: 560px;
  }

  .about__img--sub {
    right: -1rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .header__inner {
    height: 68px;
  }

  .header--scrolled .header__inner {
    height: 60px;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 340px);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 10, 10, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    padding: 2rem;
    z-index: -1;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1rem;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .hero__title {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero__badges {
    gap: 1rem 1.4rem;
    margin-top: 3rem;
  }

  .hero__scroll {
    display: none;
  }

  .cards,
  .contact__cards {
    grid-template-columns: 1fr;
  }

  .card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .about__list,
  .about__stats {
    grid-template-columns: 1fr;
  }

  .about__stats {
    gap: 1.8rem;
  }

  .about__img--sub {
    right: 0.6rem;
    bottom: -2rem;
  }
}

@media (max-width: 480px) {
  .hero__actions .btn {
    width: 100%;
  }
}
