@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap");

:root {
  --brand: #c8a96e;
  --brand-dark: #a8893e;
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --bg-card: #1a1a1a;
  --text: #e8e2d8;
  --text-muted: #9a9488;
  --text-heading: #faf6f0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--text-heading);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--brand-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  box-shadow: 0 1px 0 rgba(200, 169, 110, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--text-heading);
  letter-spacing: 0.06em;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--brand);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200, 169, 110, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #111 50%, var(--bg) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(200, 169, 110, 0.03) 120px,
    rgba(200, 169, 110, 0.03) 121px
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__label {
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}

.hero__label::before,
.hero__label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--brand);
}
.hero__label::before {
  left: 0;
}
.hero__label::after {
  right: 0;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn--primary {
  background: var(--brand);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ========== SECTION BASE ========== */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__label {
  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section__intro {
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.service-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 110, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card__price {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.9rem;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 169, 110, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--brand);
}

.review-card p {
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ========== ABOUT SNAPSHOT ========== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split__text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.about-split__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-split__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.25rem 0.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 169, 110, 0.08);
}

.stat__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.about-split__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.1);
}

.about-split__visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(200, 169, 110, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-split__visual-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  color: rgba(200, 169, 110, 0.08);
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

/* ========== HOURS + LOCATION ========== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.hours-table td {
  padding: 0.85rem 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text-heading);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.hours-table tr.closed td:last-child {
  color: #6b5b4b;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 110, 0.1);
  aspect-ratio: 1;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) contrast(1.1) brightness(0.7);
}

.info-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.info-contact a:hover {
  color: var(--brand);
}

.info-contact svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ========== CTA ========== */
.cta {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta .phone-big {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--brand);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.cta .address {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--text-heading);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer__address {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer__hours {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer__hours strong {
  color: var(--text);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 169, 110, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__credit a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__credit a:hover {
  color: var(--brand);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-split__visual {
    display: none;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-split__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }
  .footer__inner {
    flex-direction: column;
  }
}
