@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --black: #050505;
  --black-2: #0c0c0c;
  --white: #f7f7f5;
  --muted: #c5c5c1;
  --gold: #d5a51a;
  --gold-bright: #f0c83a;
  --red: #a51f24;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #000;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(165, 31, 36, 0.16), transparent 32rem),
    radial-gradient(circle at 80% 80%, rgba(213, 165, 26, 0.12), transparent 28rem),
    #000;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.card-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 0;
}

.business-card {
  position: relative;
  width: min(100%, 560px);
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(155deg, rgba(255,255,255,.045), transparent 28%),
    linear-gradient(180deg, #050505 0%, #080808 45%, #11100d 100%);
  box-shadow: var(--shadow);
}

.business-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(150deg, transparent 0 52%, rgba(255,255,255,.035) 52.2% 52.7%, transparent 53%),
    linear-gradient(28deg, transparent 0 72%, rgba(213,165,26,.075) 72.2% 88%, transparent 88.2%);
  pointer-events: none;
}

.business-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  left: 50%;
  top: 265px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165,31,36,.14), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.brand {
  padding: 28px 28px 0;
}

.brand-mark {
  width: min(100%, 390px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px 0;
}

.photo-ring {
  position: relative;
  width: clamp(190px, 47vw, 250px);
  aspect-ratio: 1;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #d5a51a 48%, #8b6a0c);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.35),
    0 20px 45px rgba(0,0,0,.55),
    0 0 36px rgba(213,165,26,.16);
}

.photo-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  pointer-events: none;
}

.photo-ring img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 43%;
  background: #111;
}

.identity {
  text-align: center;
  margin-top: 18px;
}

.identity h1 {
  margin: 0;
  font-size: clamp(2.15rem, 8vw, 3.2rem);
  line-height: .95;
  letter-spacing: .055em;
  text-transform: uppercase;
  font-weight: 800;
}

.identity > p:not(.tagline) {
  margin: 8px 0 0;
  color: var(--gold-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.divider {
  display: block;
  width: 76px;
  height: 2px;
  margin: 13px auto 10px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tagline {
  margin: 0;
  color: #ddd;
  font-size: .77rem;
  font-style: italic;
  letter-spacing: .05em;
}

.call-button {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  width: min(100%, 390px);
  margin-top: 22px;
  padding: 11px 20px 11px 10px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(198,198,198,.94));
  color: #090909;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 10px 30px rgba(0,0,0,.42);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.call-button:hover,
.call-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 15px 35px rgba(0,0,0,.52),
    0 0 20px rgba(213,165,26,.14);
}

.call-button:focus-visible,
.social-link:focus-visible,
footer a:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.call-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
}

.call-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.call-button > span:nth-child(2) {
  align-self: end;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.call-button small {
  align-self: start;
  color: #444;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: min(100%, 470px);
  margin: 30px auto 0;
  padding: 0 18px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
  text-decoration: none;
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.1), transparent 42%),
    #171717;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.social-link:hover .icon,
.social-link:focus-visible .icon {
  transform: translateY(-4px);
  background: var(--gold);
  color: #111;
  border-color: rgba(255,255,255,.35);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-facebook svg,
.icon-tiktok svg {
  fill: currentColor;
  stroke: none;
}

.link-label {
  width: 100%;
  overflow: hidden;
  color: #a9a9a6;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.services {
  width: min(100%, 460px);
  margin: 28px auto 0;
  padding: 20px 28px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.025), transparent);
}

.services-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.services-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.spray-line {
  position: relative;
  width: 30px;
  height: 3px;
  flex: 0 0 30px;
  background: var(--red);
  box-shadow: 8px 0 0 rgba(213,165,26,.8), 16px 0 0 rgba(255,255,255,.7);
}

.services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services li {
  position: relative;
  padding-left: 15px;
  color: #c9c9c5;
  font-size: .72rem;
  line-height: 1.35;
}

.services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 7px rgba(213,165,26,.35);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 20px 22px 28px;
  color: #777;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--gold-bright);
}

@media (max-width: 430px) {
  .brand {
    padding: 20px 18px 0;
  }

  .hero {
    padding-inline: 16px;
  }

  .quick-links {
    gap: 4px;
    padding-inline: 10px;
  }

  .icon {
    width: 48px;
    height: 48px;
  }

  .services {
    padding-inline: 20px;
  }
}

@media (max-width: 350px) {
  .quick-links {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
  }

  .services ul {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 561px) {
  .card-shell {
    padding: 30px 0;
  }

  .business-card {
    min-height: auto;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
