:root {
  --bg: #06080d;
  --bg-soft: #0b0d12;
  --panel: #10131b;
  --panel-2: #141924;
  --text: #f5f1e8;
  --muted: #cdbf9f;
  --muted-soft: #b8af9d;
  --gold: #c59a49;
  --gold-deep: #8f6a2c;
  --line: rgba(197, 154, 73, 0.18);
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(26, 31, 48, 0.75), transparent 42%),
    linear-gradient(180deg, #05070c 0%, #070a10 55%, #05070b 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 20;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

.site-header {
  padding: 30px 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(8px);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand-mark {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #cda556 0%, #b98f42 100%);
  color: #111;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}

.brand-name {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 2.6rem);
  font-weight: 800;
}

.brand-location {
  margin: 8px 0 0;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: rgba(245, 241, 232, 0.78);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 72px;
}

.hero {
  padding: 46px 0 30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 8.2ch;
  font-size: clamp(3rem, 11vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 31ch;
  font-size: clamp(1.15rem, 3.8vw, 1.5rem);
  line-height: 1.56;
  color: rgba(245, 241, 232, 0.88);
}

.info-stack {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.info-pill {
  margin: 0;
  padding: 22px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(20, 24, 34, 0.95), rgba(12, 15, 23, 0.95));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  font-size: clamp(1.15rem, 4vw, 1.7rem);
  line-height: 1.3;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform 0.18s ease, filter 0.18s ease, background-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #cfa654 0%, #b88b3f 100%);
  color: #111;
  box-shadow: 0 12px 24px rgba(181, 133, 49, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(197, 154, 73, 0.4);
  color: var(--text);
  background: rgba(197, 154, 73, 0.08);
}

.feature-photo-section,
.services,
.about-section,
.contact-section {
  margin-top: 40px;
}

.photo-card {
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(16, 19, 27, 0.95), rgba(11, 13, 20, 0.98));
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
}

.photo-card-head h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.05;
}

.photo-card-head { margin-bottom: 18px; }
.section-heading { margin-bottom: 20px; }

.photo-frame {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #090b10;
  border: 1px solid rgba(255,255,255,0.05);
}

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

.storefront-card {
  position: relative;
  overflow: hidden;
}

.storefront-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(197,154,73,0.06), transparent 34%);
  pointer-events: none;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 22, 30, 0.96), rgba(11, 14, 21, 0.98));
  border: 1px solid rgba(197, 154, 73, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.service-card p,
.about-copy p,
.contact-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-copy {
  margin-bottom: 20px;
}

.contact-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 22, 30, 0.96), rgba(11, 14, 21, 0.98));
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-card p + p { margin-top: 10px; }

.site-footer {
  padding: 24px 20px 44px;
  text-align: center;
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .site-header { padding: 34px 28px 24px; }
  main { padding: 0 28px 92px; }
  .hero { padding: 54px 0 34px; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
  }
  .about-section .section-heading,
  .about-section .about-copy { grid-column: 1; }
  .about-section .interior-card { grid-column: 2; grid-row: 1 / span 2; }
}

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