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

:root {
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-border: #1e1e1e;
  --color-text: #e8e8e8;
  --color-text-muted: #7a7a7a;
  --color-accent: #c8a96e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 64px;
  --max-width: 1280px;
  --section-pad: clamp(4rem, 8vw, 8rem);
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-text); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid var(--color-border);
}

.nav-social a {
  display: flex;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.nav-social a:hover { color: var(--color-accent); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    background: var(--color-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
    z-index: 99;
  }

  .nav-links a {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }

  .nav-social {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    gap: 1.5rem;
  }
  .nav-social svg { width: 20px; height: 20px; }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}
.footer-social a {
  display: flex;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--color-accent); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-email a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-email a:hover { color: var(--color-text); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: 2px solid currentColor;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.btn-primary {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ─── Page wrapper ───────────────────────────────────────────── */
main { padding-top: var(--nav-height); }

/* ─── Page header (gallery pages) ───────────────────────────── */
.page-header {
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}

.page-header p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Home: Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero > *:not(.hero-bg-video):not(.hero-bg-overlay) {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--color-text);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #ffffff;
  max-width: 480px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-video {
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Home: Testimonials ─────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 2rem;
  background: var(--color-surface);
}

.testimonials-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  font-style: italic;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-top: auto;
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  margin-top: 0.2rem;
}

/* ─── About page ─────────────────────────────────────────────── */
.about-hero {
  padding: calc(var(--nav-height) + var(--section-pad)) 2rem var(--section-pad);
  max-width: 720px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.services {
  padding: var(--section-pad) 2rem;
  border-top: 1px solid var(--color-border);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.service p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.contact-section {
  padding: var(--section-pad) 2rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.contact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
