:root {
  --bg: #0d0d0d;
  --panel: #151515;
  --text: #f5f1e8;
  --muted: #b7b1a5;
  --gold: #d4af37;
  --radius: 22px;

  --body-font: Inter, Arial, sans-serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;

  --body-size: 17px;
  --h1-size: clamp(0.75rem, 1.2vw, 1.1rem);
  --h2-size: clamp(1.3rem, 2.4vw, 2rem);
  --h3-size: 1.2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #0a0a0a, #111);
  color: var(--text);
  font-family: var(--body-font);
  font-size: var(--body-size);
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 140px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.55rem;
}

.brand small {
  display: block;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-gold {
  background: var(--gold);
  color: #121212;
}

.btn-ghost {
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--text);
}

.hero {
  padding: 58px 0 38px;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  line-height: 1.08;
  margin: 0.2em 0 0.45em;
}

h1 {
  font-size: 1.8rem !important;
  max-width: 28ch;
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

p {
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-image,
.card,
.portfolio-card,
.review-card,
.about-panel,
.contact-form,
.contact-card {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  padding: 58px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
}

.cards-grid,
.portfolio-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.review-card,
.about-panel {
  padding: 24px;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-copy {
  padding: 18px;
}

.stars {
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-card {
  padding: 16px 18px;
}

.contact-form {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

input,
textarea,
select {
  width: 100%;
  background: #0d0d0d;
  color: var(--text);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  padding: 14px;
}

.btn-full {
  width: 100%;
}

.footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-grid,
  .portfolio-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .brand-logo {
    height: 95px;
  }
  @media (max-width: 900px) {
  .nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .brand-logo {
    height: 120px;
    width: auto;
    flex-shrink: 0;
  }

  .brand strong {
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .brand small {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: flex-start;
    align-items: center;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .btn-gold {
    padding: 10px 16px;
  }
}
}
