@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cinzel:wght@500;600;700&display=swap');

:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --card: rgba(255, 255, 255, 0.05);
  --card-border: rgba(212, 175, 55, 0.18);
  --text: #f7f3ea;
  --muted: #cbbd95;
  --gold: #d4af37;
  --gold-bright: #f2d675;
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 24%),
    linear-gradient(180deg, #030303 0%, #090909 40%, #050505 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.top-gap {
  margin-top: 0.8rem;
}

h1,
h2,
h3,
.brand-text strong {
  font-family: "Cinzel", serif;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  overflow: visible;
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.brand-text span {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-phone,
.nav-facebook {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  white-space: nowrap;
  color: var(--gold-bright);
}

.nav-phone:hover,
.nav-facebook:hover {
  background: rgba(212, 175, 55, 0.08);
}

.nav-cta {
  padding: 0.82rem 1.2rem;
  background: linear-gradient(135deg, #a88322, var(--gold), #f0d26a);
  color: #111;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.24);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 1rem;
  width: min(320px, calc(100vw - 2rem));
  padding: 0.6rem;
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
  font-weight: 600;
}

.mobile-menu a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-bright);
}

/* HERO */
.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-bright);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 11ch;
  margin-bottom: 1.1rem;
  color: #fff8e6;
}

.hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #a88322, var(--gold), #f0d26a);
  color: #111;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-bright);
}

/* SECTIONS */
section {
  padding: 2rem 0 5rem;
}

.section-heading {
  margin-bottom: 1.4rem;
  max-width: 750px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
  color: #fff4cf;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: none;
}

.about-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.about-list div {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.1);
}

/* GALLERY DESKTOP */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: none;
  transition: transform 0.35s ease;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.02);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-inner {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(212, 175, 55, 0.14);
}

/* REVIEWS */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.stars {
  color: var(--gold-bright);
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.review-card p {
  color: var(--muted);
}

/* QUOTE */
.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

.quote-steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.quote-steps > div {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.12);
}

.step-number {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #a88322, var(--gold), #f0d26a);
  color: #111;
  font-weight: 800;
}

.quote-form {
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.full-width {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  color: #fff5d4;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: #fff;
  outline: none;
}

.field select option {
  background: #0d0d0d;
  color: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(203, 189, 149, 0.75);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(242, 214, 117, 0.45);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.08);
}

.submit-btn {
  margin-top: 1.2rem;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note a {
  color: var(--gold-bright);
}

.form-note a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  border-top: 1px solid rgba(212,175,55,0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .reviews-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 8px;
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.25);
    border-radius: 999px;
  }

  .gallery-image {
    flex: 0 0 82%;
    width: 82%;
    height: 320px;
    scroll-snap-align: start;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
  }

  .desktop-only {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-logo {
    width: 76px;
    height: 76px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .nav-right {
    gap: 0.6rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .gallery-image {
    flex-basis: 88%;
    width: 88%;
    height: 260px;
  }

  .nav-inner {
    min-height: 76px;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-text strong {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}