:root {
  --bg: #090909;
  --bg-alt: #111111;
  --surface: #121212;
  --surface-2: #171717;
  --surface-3: #1d1d1d;

  --text: #f4f4f4;
  --muted: #b7b7b7;

  --gold: #caa64a;
  --gold-2: #e4c469;
  --gold-soft: rgba(202, 166, 74, 0.14);
  --line: rgba(255, 255, 255, 0.08);

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
.footer-brand {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.9rem);
  line-height: 0.98;
  margin: 0;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0;
}

h3 {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

section {
  position: relative;
}

.section {
  padding: 4.75rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(202, 166, 74, 0.08), transparent 26%),
    linear-gradient(180deg, #0b0b0b, #101010);
}

.section-alt {
  background:
    radial-gradient(circle at top left, rgba(202, 166, 74, 0.06), transparent 24%),
    linear-gradient(180deg, #111111, #0f0f0f);
}

.container {
  width: min(1120px, calc(100% - 2rem));
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(202, 166, 74, 0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-nav.scrolled {
  background: rgba(9, 9, 9, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.15rem;
  color: var(--text);
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
}

.desktop-nav a {
  position: relative;
  color: rgba(244, 244, 244, 0.82);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--gold-2);
  transition: width 0.28s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  width: 100%;
}

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

.nav-cta-link,
.nav-cta {
  display: none;
}

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.28s ease, opacity 0.18s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(15, 15, 15, 0.98);
  border-bottom: 1px solid rgba(202, 166, 74, 0.14);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: grid;
  gap: 0.8rem;
}

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

.mobile-menu a {
  padding: 0.95rem 0.25rem;
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:first-child {
  border-top: 0;
}

.mobile-menu-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.35rem;
}

header img {
  width: 40%;
  height: 50%;
}


/* BUTTONS */
.btn-gold,
.btn-outline-gold,
.btn-link-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 10px 28px rgba(202, 166, 74, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-gold:hover {
  transform: translateY(-1px);
  color: #111;
  box-shadow: 0 14px 32px rgba(202, 166, 74, 0.28);
}

.btn-outline-gold {
  border: 1px solid rgba(202, 166, 74, 0.55);
  color: var(--text);
  background: rgba(202, 166, 74, 0.05);
}

.btn-outline-gold:hover {
  transform: translateY(-1px);
  border-color: var(--gold-2);
  color: #fff;
  background: rgba(202, 166, 74, 0.1);
}

.btn-link-gold {
  color: var(--gold-2);
  background: transparent;
  border: 1px solid rgba(202, 166, 74, 0.35);
}

/* HERO */
.hero {
  padding: 1.75rem 0 3.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.73rem;
  color: var(--gold-2);
  margin-bottom: 1rem;
}

.hero-text {
  margin-top: 1.25rem;
  font-size: 1.03rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
  align-items: center;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  flex: 0 0 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(202, 166, 74, 0.2);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(202, 166, 74, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: translateY(0) scale(1.03);
  will-change: transform;
}

.btn-gold,
.btn-outline-gold,
.btn-instagram {
  height: 46px;
  padding: 0 1.35rem;
  border-radius: 999px;
}

/* Instagram button */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(221, 42, 123, 0.4);
}

/* SECTION HEADINGS */
.section-heading {
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.section-heading-row {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.carousel-controls {
  display: flex;
  gap: 0.6rem;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(202, 166, 74, 0.35);
  background: rgba(202, 166, 74, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: rgba(202, 166, 74, 0.14);
  border-color: rgba(202, 166, 74, 0.65);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  padding: 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 166, 74, 0.28);
  background: linear-gradient(180deg, rgba(202,166,74,0.06), rgba(255,255,255,0.012));
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(202, 166, 74, 0.12);
  border: 1px solid rgba(202, 166, 74, 0.2);
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

/* GALLERY */
.gallery-shell {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.95rem 1rem 1rem;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}

/* ABOUT */
.about-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.about-copy {
  max-width: 44rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 12px rgba(202, 166, 74, 0.35);
}

.about-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(202, 166, 74, 0.18);
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* PROCESS */
.process-grid {
  display: grid;
  gap: 1rem;
}

.process-card {
  padding: 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.process-step {
  display: block;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* CONTACT */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-copy {
  max-width: 42rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-point {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}

.contact-point span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.contact-point strong {
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(202, 166, 74, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.012));
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: #d9d9d9;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(183, 183, 183, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(202, 166, 74, 0.65);
  box-shadow: 0 0 0 2px rgba(202, 166, 74, 0.16);
  background: rgba(255,255,255,0.05);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(202, 166, 74, 0.5);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-contact:hover {
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(202, 166, 74, 0.22);
}

/* THANK YOU */
.thank-you-section {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
}

.thank-you-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(202, 166, 74, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  margin-bottom: 0.9rem;
}

/* FOOTER */
.footer {
  padding: 3rem 0;
  background: #070707;
  border-top: 1px solid rgba(202, 166, 74, 0.12);
}

footer img {
  width: 50%;
  height: 20%;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.social-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2); /* gold accent */
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;

  /* background: linear-gradient(135deg, #caa64a, #f5d27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */

  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 4px;
}

.social-link i {
  font-size: 1.2rem;
  color: #E1306C; /* official Instagram pink */
  transition: transform 0.25s ease;
}

.social-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.social-link a:hover i {
  transform: scale(1.15);
}
/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.48s; }

/* SR ONLY */
.sr-only {
  position: absolute;
  left: -9999px;
}

/* Tablet */
@media (min-width: 768px) {
  :root {
    --header-h: 84px;
  }

  .section {
    padding: 5.75rem 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .gallery-item {
    flex-basis: calc(50% - 0.5rem);
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn-contact {
    width: auto;
    justify-self: start;
    padding-inline: 1.8rem;
  }

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

  .contact-form {
    padding: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }

  .nav-cta-link,
  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  header img {
    width: 20%;
  }

  .gallery-item {
    flex-basis: calc(33.333% - 0.7rem);
  }

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading-row {
    grid-template-columns: 1fr auto;
  }

  .hero-image {
    height: 560px;
  }
}