:root {
  --bg: #05070b;
  --bg-soft: #0b0d12;
  --panel: #11141d;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f3f2ee;
  --muted: #c5c0b4;
  --soft-muted: rgba(197, 192, 180, 0.74);
  --accent: #c8a04d;
  --accent-strong: #deb45c;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(36, 42, 72, 0.28), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--accent);
  color: #05070b;
  padding: 10px 14px;
  border-radius: 999px;
}

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

.header-shell,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: max(14px, calc(10px + env(safe-area-inset-top))) 0 12px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent);
  color: #15110a;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  margin: 0;
  font-size: clamp(1.2rem, 3.6vw, 1.9rem);
  font-weight: 760;
  line-height: 1.05;
}

.brand-location {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--soft-muted);
  letter-spacing: 0.01em;
}

.section {
  padding: 28px 0;
}

.hero {
  padding-top: 28px;
  padding-bottom: 22px;
}

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

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(2.25rem, 10vw, 4.8rem);
}

.hero-copy,
.section-copy,
.service-card p,
.contact-card p {
  color: var(--muted);
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 32ch;
  font-size: clamp(1.02rem, 4.5vw, 1.2rem);
}

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

.info-card,
.contact-card,
.service-card {
  background: linear-gradient(180deg, rgba(19, 22, 31, 0.98), rgba(12, 14, 20, 0.98));
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 18px 20px;
  border-radius: 20px;
  font-size: clamp(1.15rem, 4.7vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button-primary {
  background: var(--accent);
  color: #16120c;
}

.button-secondary {
  border: 1px solid rgba(200, 160, 77, 0.38);
  color: var(--text);
  background: rgba(200, 160, 77, 0.08);
}

.photo-section {
  padding-top: 12px;
}

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

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

.hero-photo-frame {
  position: relative;
}

.hero-photo-frame::before {
  content: "Shop front";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.section h2 {
  font-size: clamp(1.85rem, 7vw, 3.1rem);
}

.section-copy {
  margin: 0 0 22px;
  max-width: 58ch;
  font-size: 1rem;
}

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

.service-card {
  padding: 20px;
  border-radius: 20px;
}

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

.service-card p,
.contact-card p {
  margin: 0;
  font-size: 0.98rem;
}

.contact-card {
  padding: 22px;
  border-radius: 22px;
  display: grid;
  gap: 12px;
}

.contact-name {
  color: var(--text) !important;
  font-weight: 700;
  font-size: 1.08rem !important;
}

.site-footer {
  padding: 18px 0 34px;
  color: var(--soft-muted);
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .header-shell {
    gap: 16px;
    padding: 18px 0 16px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 18px;
    font-size: 1.8rem;
  }

  .brand-location {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: 11ch;
  }

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

  .cta-row {
    flex-wrap: nowrap;
  }
}

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