/* ============================================================
   Future Style Barbers — Design System
   Mobile-first, no frameworks.
   ============================================================ */

:root {
  --ink: #0e0e11;
  --ink-2: #15151a;
  --ink-3: #1d1d24;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #c9a86a;
  --gold-bright: #e0be7d;
  --cream: #f4efe6;
  --muted: #a9a49a;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.section-head { margin-bottom: 2.5rem; }

.section-head h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin-top: 0.6rem;
}

.section-head p.lead {
  max-width: 62ch;
  color: var(--muted);
  margin-top: 0.9rem;
}

.section-head.center { text-align: center; }
.section-head.center .kicker::before { display: none; }
.section-head.center p.lead { margin-inline: auto; }

section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.section-alt { background: var(--ink-2); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #171308;
}

.btn-gold:hover { background: var(--cream); }

.btn-ghost {
  border-color: rgba(244, 239, 230, 0.35);
  color: var(--cream);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(14, 14, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img { height: 44px; width: auto; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  font-weight: 700;
  margin-top: 0.25rem;
}

.main-nav { display: none; }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px 6px;
  cursor: pointer;
  z-index: 70;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-open .site-header { z-index: 70; }

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

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(10, 10, 13, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 8% 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-open .mobile-nav { opacity: 1; visibility: visible; }

.mobile-nav a.nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  color: var(--cream);
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav a.nav-link:hover,
.mobile-nav a.nav-link.active { color: var(--gold-bright); transform: translateX(8px); }

.mobile-nav .btn { margin-top: 2rem; align-self: flex-start; }

.mobile-nav .drawer-meta {
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (min-width: 992px) {
  .nav-toggle, .mobile-nav { display: none; }

  .main-nav {
    display: flex;
    gap: 1.9rem;
  }

  .main-nav a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.4rem 0;
    position: relative;
    color: rgba(244, 239, 230, 0.85);
    transition: color 0.2s ease;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .main-nav a:hover, .main-nav a.active { color: var(--gold-bright); }
  .main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

  .header-cta { display: inline-flex; padding: 0.7rem 1.5rem; }
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-media, .hero-media video, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, transparent 45%),
    linear-gradient(100deg, rgba(10, 10, 13, 0.92) 15%, rgba(10, 10, 13, 0.45) 60%, rgba(10, 10, 13, 0.25));
}

.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(201, 168, 106, 0.5);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: rgba(14, 14, 17, 0.45);
}

.hero h1 {
  font-size: clamp(3.2rem, 11vw, 6.5rem);
  margin: 1.4rem 0 1.1rem;
  max-width: 12ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

.hero p {
  max-width: 52ch;
  color: rgba(244, 239, 230, 0.85);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-social {
  margin-top: 3rem;
  display: flex;
  gap: 1.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-social a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.hero-social a:hover { color: var(--gold-bright); }
.hero-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 4rem;
  overflow: hidden;
}

.page-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink), rgba(14, 14, 17, 0.55));
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 { font-size: clamp(2.8rem, 8vw, 4.5rem); margin-top: 0.7rem; }

.page-hero p { color: var(--muted); max-width: 60ch; margin-top: 0.8rem; }

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cream); }

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stat {
  background: var(--ink);
  padding: 1.8rem 1rem;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
}

.stat span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

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

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

.split {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-media .year-tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(14, 14, 17, 0.85);
  border: 1px solid rgba(201, 168, 106, 0.5);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  backdrop-filter: blur(6px);
}

.split-media .year-tag b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-bright);
  display: block;
  line-height: 1;
}

.split-media .year-tag span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.split-body p { color: var(--muted); margin-bottom: 1rem; }

.checklist {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✂";
  color: var(--gold);
  font-size: 0.85rem;
  transform: rotate(-30deg);
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse .split-media { order: 2; }
}

/* ---------- Cards grid (services) ---------- */

.grid-3 {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

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

.card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover { transform: translateY(-6px); border-color: rgba(201, 168, 106, 0.45); }

.card .card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-media img { transform: scale(1.06); }

.card .card-body { padding: 1.3rem 1.4rem 1.5rem; }

.card h3 { font-size: 1.45rem; letter-spacing: 0.05em; }

.card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; }

/* ---------- Products ---------- */

.product-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.product {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product:hover { transform: translateY(-6px); border-color: rgba(201, 168, 106, 0.45); }

.product .product-media {
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
}

.product .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product:hover .product-media img { transform: scale(1.07); }

.product .product-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product h3 { font-size: 1.15rem; letter-spacing: 0.06em; }

.product .desc { color: var(--muted); font-size: 0.82rem; line-height: 1.55; flex: 1; }

.product .scent {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.product .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin-top: 0.3rem;
}

/* ---------- Pricing ---------- */

.price-list {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) { .price-list { grid-template-columns: 1fr 1fr; } }

.price-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.price-item:hover { border-color: rgba(201, 168, 106, 0.45); transform: translateX(4px); }

.price-item img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 106, 0.5);
  flex-shrink: 0;
}

.price-item .price-info { flex: 1; min-width: 0; }

.price-item .price-info b {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
}

.price-item .price-info span { color: var(--muted); font-size: 0.8rem; }

.price-item .amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* ---------- Hours ---------- */

.hours-wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) { .hours-wrap { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table tr { border-bottom: 1px solid var(--line); }

.hours-table td {
  padding: 0.85rem 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hours-table td:last-child { text-align: right; color: var(--gold-bright); }

.hours-table tr.closed td:last-child { color: #b3574f; }

.hours-table tr.today td { color: var(--gold-bright); }
.hours-table tr.today td:first-child::after {
  content: "• today";
  margin-left: 0.6rem;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.gallery-grid a {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
}

.gallery-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid a::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-bright);
  background: rgba(14, 14, 17, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 8, 10, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 82vh;
  border-radius: 10px;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--cream);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.lightbox button:hover { background: rgba(201, 168, 106, 0.3); }

.lightbox .lb-close { top: 1rem; right: 1rem; }
.lightbox .lb-prev { left: 0.8rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 0.8rem; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonials ---------- */

.testimonials {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

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

.testimonial {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.testimonial .stars { color: var(--gold-bright); letter-spacing: 0.25em; font-size: 0.85rem; }

.testimonial blockquote { color: var(--cream); font-size: 1rem; flex: 1; }

.testimonial .who {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial .who .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #171308;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
}

.testimonial .who b { display: block; font-size: 0.92rem; }
.testimonial .who span { color: var(--muted); font-size: 0.78rem; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.cta-band img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14, 14, 17, 0.35), var(--ink) 90%);
}

.cta-band .container { position: relative; z-index: 2; }

.cta-band h2 { font-size: clamp(2.4rem, 7vw, 4rem); margin-bottom: 1rem; }

.cta-band p { color: var(--muted); max-width: 55ch; margin: 0 auto 2rem; }

/* ---------- Academy ---------- */

.course {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
}

.course + .course { margin-top: 1.8rem; }

.course .course-media { position: relative; min-height: 240px; }

.course .course-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course .course-media .num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14, 14, 17, 0.85);
  border: 1px solid rgba(201, 168, 106, 0.5);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.course .course-body { padding: 1.8rem 1.6rem; }

.course h3 { font-size: clamp(1.6rem, 4vw, 2.1rem); margin-bottom: 0.8rem; }

.course p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }

.course .facts {
  display: grid;
  gap: 0.5rem;
  margin: 1.2rem 0 1.5rem;
}

.course .facts li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  align-items: baseline;
}

.course .facts li b { color: var(--gold-bright); white-space: nowrap; }
.course .facts li span { color: var(--muted); }

@media (min-width: 900px) {
  .course { grid-template-columns: 2fr 3fr; }
  .course.reverse .course-media { order: 2; }
}

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

.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-card .ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 168, 106, 0.14);
  color: var(--gold-bright);
}

.contact-card .ico svg { width: 22px; height: 22px; fill: currentColor; }

.contact-card h3 { font-size: 1.2rem; letter-spacing: 0.07em; margin-bottom: 0.3rem; }

.contact-card p, .contact-card a.detail { color: var(--muted); font-size: 0.92rem; display: block; }

.contact-card a.detail:hover { color: var(--gold-bright); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.6) contrast(1.05);
}

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

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea { min-height: 140px; resize: vertical; }

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

.site-footer {
  background: #0a0a0d;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.8rem;
}

@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }

.footer-brand img { height: 52px; margin-bottom: 1rem; }

.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 34ch; }

.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover { color: var(--gold-bright); border-color: var(--gold); transform: translateY(-3px); }

.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: var(--gold-bright);
}

.footer-links li { margin-bottom: 0.55rem; }

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover { color: var(--cream); padding-left: 5px; }

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  align-items: baseline;
}

.footer-contact li b { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }

.footer-contact a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Utility ---------- */

.mt-2 { margin-top: 2rem; }
.center-text { text-align: center; }

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.5);
  background: rgba(14, 14, 17, 0.9);
  color: var(--gold-bright);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
}

.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }
