/* ── Variables ───────────────────────────────────────────── */
:root {
  --color-black:  #0A0A0A;
  --color-gold:   #C9A84C;
  --color-white:  #FFFFFF;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  background-image: radial-gradient(
    ellipse 55% 55% at 100% 0%,
    rgba(201, 168, 76, 0.09) 0%,
    transparent 70%
  );
}

.hero__content {
  max-width: 100%;
  padding-top: 7rem;
}

.hero__headline {
  font-family: var(--font-title);
  font-size: clamp(5rem, 11vw, 13rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.hero__headline span:last-child {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 420px;
}

.hero__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-black);
  background-color: var(--color-gold);
  padding: 1rem 2.25rem;
  transition: opacity 0.2s ease;
}

.hero__btn:hover {
  opacity: 0.85;
}

/* ── Services ────────────────────────────────────────────── */
.services {
  padding: 8rem 3rem;
}

.services__header {
  margin-bottom: 5rem;
}

.services__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.services__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card {
  display: flex;
  gap: 1.75rem;
  padding: 2.75rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease;
}

.service-card:hover {
  background-color: rgba(201, 168, 76, 0.04);
}

.service-card__number {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card__name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.service-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

.service-card__price {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.5rem;
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery {
  padding: 8rem 3rem;
}

.gallery__header {
  margin-bottom: 4rem;
}

.gallery__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.gallery__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.06);
}

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(
    145deg,
    #111111 0%,
    #1a1508 50%,
    #211b08 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.gallery__item span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.35);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(201, 168, 76, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery__item:hover span {
  color: rgba(201, 168, 76, 0.75);
}

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  padding: 8rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
}

.contact__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.contact__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.contact__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact__cta {
  flex-shrink: 0;
}

.contact__btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  background-color: var(--color-gold);
  padding: 1.2rem 2.75rem;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.contact__btn:hover {
  opacity: 0.85;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background-color: var(--color-black);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.navbar__logo {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.navbar__btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.55rem 1.4rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar__btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}
