:root {
  --bg: #0d1015;
  --bg-soft: #141a22;
  --panel: #171d26;
  --panel-2: #1b2430;
  --text: #f5f1e8;
  --muted: #b6b0a4;
  --gold: #c9a35a;
  --gold-soft: rgba(201, 163, 90, 0.16);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 163, 90, 0.12), transparent 0 32%),
    linear-gradient(180deg, #0f1218 0%, #0c0f14 100%);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  z-index: 1000;
}

.wrap {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(12, 15, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #d9b87a, #9a6f2c);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-location {
  font-size: 0.72rem;
  color: rgba(245, 241, 232, 0.62);
}

.header-call {
  flex: 0 0 auto;
  border: 1px solid rgba(201, 163, 90, 0.34);
  color: var(--text);
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding: 2.15rem 0 2.3rem;
}

.hero-grid,
.about-grid {
  display: grid;
  gap: 1.35rem;
}

.hero-copy {
  max-width: 36rem;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(1.95rem, 5.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 10.5ch;
}

.hero-text {
  margin: 0.9rem 0 1.2rem;
  max-width: 33rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, #d5b06b, #9d6f2f);
  color: #16120d;
  box-shadow: 0 14px 36px rgba(157, 111, 47, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(201, 163, 90, 0.4);
  background: rgba(255, 255, 255, 0.02);
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hero-meta li {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-meta strong {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-meta span {
  color: var(--text);
  font-size: 0.96rem;
}

.photo-frame {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.photo-frame > img {
  display: block;
  width: 100%;
  height: auto;
}

.storefront-frame {
  position: relative;
}

.storefront-frame::after {
  content: "Storefront";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f1e8;
  background: rgba(10, 12, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services,
.about,
.contact {
  padding: 1.3rem 0 2.6rem;
}

.section-heading {
  margin-bottom: 1.1rem;
}

.section-heading h2,
.about-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.service-grid {
  display: grid;
  gap: 0.95rem;
}

.service-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.service-card p,
.about-copy p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.featured-service {
  border-color: rgba(201, 163, 90, 0.25);
  background: linear-gradient(180deg, rgba(201, 163, 90, 0.12), rgba(255, 255, 255, 0.03));
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
}

.contact-details a {
  color: var(--text);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.92rem;
}

:focus-visible {
  outline: 2px solid #f1c87b;
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 2.8rem;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: 2rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-card {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
