/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --mid: #2a2a2a;
  --light: #f5f1eb;
  --white: #ffffff;
  --gray: #888;
  --font-display: "Playfair Display", serif;
  --font-body: "Cormorant Garamond", serif;
  --font-sans: "Oswald", sans-serif;
  --section-pad: 100px 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}

/* BUTTONS */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-gold.full {
  width: 100%;
  text-align: center;
  padding: 18px;
}
.btn-gold.small {
  padding: 10px 18px;
  font-size: 12px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 34px;
  transition:
    background 0.3s,
    color 0.3s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* GOLD DIVIDER LINE */
.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 28px;
}
.gold-line.center {
  margin: 16px auto 28px;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}
.section-sub {
  max-width: 580px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FADE IN UP */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: transparent;
  transition:
    background 0.4s,
    padding 0.4s;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  padding: 14px 60px;
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 11px 26px;
  transition: background 0.3s;
}
.nav-cta:hover {
  background: var(--gold-light);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================
   HERO
   ============================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Simulated dark barber shop atmosphere */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 15, 5, 0.9) 100%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.03) 60px,
      rgba(201, 168, 76, 0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.03) 60px,
      rgba(201, 168, 76, 0.03) 61px
    );
  z-index: 0;
}

/* Generate visual depth with CSS */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='400' height='600' viewBox='0 0 400 600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='80' cy='150' r='120' fill='%23C9A84C' fill-opacity='0.04'/%3E%3Ccircle cx='320' cy='400' r='160' fill='%23C9A84C' fill-opacity='0.03'/%3E%3C/svg%3E")
    center/cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title .italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.7);
  }
}

.hero-social {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-social a {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transition: color 0.3s;
}
.hero-social a:hover {
  color: var(--gold);
}

/* ============================
   ABOUT
   ============================ */
#about {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--light);
}

.about-images {
  position: relative;
  height: 500px;
}
.about-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: filter 0.4s;
}
.about-img:hover {
  filter: grayscale(0%);
}

.about-img-1 {
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.5)),
    url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=1200&q=80");
}


.about-img-2 {
  width: 55%;
  height: 60%;
  bottom: 0;
  right: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.45)),
    url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&w=900&q=80");
  border: 4px solid var(--light);
}


.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
.about-text p {
  margin-bottom: 18px;
  color: #444;
}

/* ============================
   SERVICES
   ============================ */
#services {
  padding: var(--section-pad);
  background: var(--dark);
  color: var(--white);
}
#services h2,
#services .section-sub {
  color: var(--white);
}
#services .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  background: var(--dark2);
  padding: 50px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition:
    border-color 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: var(--mid);
}

.service-icon {
  width: 42px;
  height: 2px;
  margin-bottom: 20px;
  grid-column: 1;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.2));
}

.service-text {
  grid-column: 1;
}
.service-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.service-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.price {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.service-img {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 120px;
  height: 120px;
  align-self: center;
  margin-left: 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background-size: cover;
  background-position: center;
}
.si-1 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.35)),
    url("https://images.unsplash.com/photo-1517837016564-bfc465599c7f?auto=format&fit=crop&w=600&q=80");
}
.si-2 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.4)),
    url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=600&q=80");
}
.si-3 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.45)),
    url("https://images.unsplash.com/photo-1512690459411-b0fd1b904e28?auto=format&fit=crop&w=600&q=80");
}
.si-4 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.35)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=600&q=80");
}

/* ============================
   TESTIMONIALS
   ============================ */
#testimonials {
  position: relative;
  padding: 120px 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 50%
    );
}

.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
#testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.testimonial-slider {
  position: relative;
  min-height: 180px;
  margin: 40px 0 30px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 24px;
}

.author {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: var(--gold);
}

/* ============================
   TEAM
   ============================ */
#team {
  padding: var(--section-pad);
  background: var(--light);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  filter: grayscale(100%);
  transition:
    filter 0.5s,
    transform 0.5s;
  position: relative;
  background-size: cover;
  background-position: center;
}
.team-card:hover .team-photo {
  filter: grayscale(30%);
  transform: scale(1.03);
}

.tp-1 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.42)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=900&q=80");
}
.tp-2 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.42)),
    url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=900&q=80");
}
.tp-3 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.14), rgba(10, 10, 10, 0.44)),
    url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=900&q=80");
}





/* Overlay on hover */
.team-card::after {
  content: "Book Now";
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.team-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.team-info {
  padding: 20px 0 10px;
  text-align: left;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  margin-top: 0;
}
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.team-info p {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.team-cta {
  margin-top: 10px;
}

/* ============================
   GALLERY
   ============================ */
#gallery {
  padding: var(--section-pad);
  background: var(--dark);
}
#gallery h2 {
  color: var(--white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.gf {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.gf.active,
.gf:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s;
  background-size: cover;
  background-position: center;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0);
  transition: background 0.4s;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item:hover::after {
  background: rgba(201, 168, 76, 0.15);
}

.gallery-item.hidden {
  display: none;
}

.gi-1 { background-image: url("https://images.unsplash.com/photo-1517837016564-bfc465599c7f?auto=format&fit=crop&w=700&q=80"); }
.gi-2 { background-image: url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=700&q=80"); }
.gi-3 { background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=700&q=80"); }
.gi-4 { background-image: url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=700&q=80"); }
.gi-5 { background-image: url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=700&q=80"); }
.gi-6 { background-image: url("https://images.unsplash.com/photo-1512690459411-b0fd1b904e28?auto=format&fit=crop&w=700&q=80"); }
.gi-7 { background-image: url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=700&q=80"); }
.gi-8 { background-image: url("https://images.unsplash.com/photo-1519014816548-bf5fe059798b?auto=format&fit=crop&w=700&q=80"); }
.gi-9 { background-image: url("https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?auto=format&fit=crop&w=700&q=80"); }

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================
   NEWS
   ============================ */
#news {
  padding: var(--section-pad);
  background: var(--light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
}

.news-img {
  width: 100%;
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.ni-1 { background-image: url("https://images.unsplash.com/photo-1544717305-2782549b5136?auto=format&fit=crop&w=900&q=80"); }
.ni-2 { background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=900&q=80"); }
.ni-3 { background-image: url("https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=900&q=80"); }

.news-body {
  padding: 28px 28px 24px;
}
.news-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-body h3 a {
  transition: color 0.3s;
}
.news-body h3 a:hover {
  color: var(--gold);
}
.news-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.news-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 16px;
}

/* ============================
   SHOP
   ============================ */
#shop {
  padding: var(--section-pad);
  background: var(--dark2);
  color: var(--white);
}
#shop h2 {
  color: var(--white);
}
#shop .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  text-align: center;
  background: var(--dark);
  padding: 30px 20px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-img {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.pi-1 { background-image: url("https://images.unsplash.com/photo-1626784215021-2e39ccf971cd?auto=format&fit=crop&w=700&q=80"); }
.pi-2 { background-image: url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=700&q=80"); }
.pi-3 { background-image: url("https://images.unsplash.com/photo-1512690459411-b0fd1b904e28?auto=format&fit=crop&w=700&q=80"); }
.pi-4 { background-image: url("https://images.unsplash.com/photo-1589985270958-3499d8288cd4?auto=format&fit=crop&w=700&q=80"); }

.product-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.product-card span {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.shop-cta {
  text-align: center;
}

/* ============================
   BOOKING
   ============================ */
#booking {
  padding: 120px 80px;
  background: var(--black);
  color: var(--white);
}

.booking-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.booking-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
.booking-inner p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold);
}
.booking-form select option {
  background: var(--dark);
}
.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  padding: 80px 80px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 60px;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.8;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-col ul a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.footer-social a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: var(--gold);
}

.newsletter p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.newsletter form {
  display: flex;
  gap: 0;
}
.newsletter input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  padding: 24px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.footer-bottom a:hover {
  opacity: 0.7;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  :root {
    --section-pad: 80px 50px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  :root {
    --section-pad: 60px 24px;
  }

  #navbar {
    padding: 18px 24px;
  }
  #navbar.scrolled {
    padding: 12px 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-img {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 50px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 24px;
  }

  #booking {
    padding: 80px 24px;
  }
  #testimonials {
    padding: 80px 24px;
  }
}
