:root {
  --bg: #efeee8;
  --bg-soft: #f6f5f0;
  --text: #101010;
  --muted: #4d4d4d;
  --white: #ffffff;
  --line: rgba(16, 16, 16, 0.16);
  --line-strong: rgba(16, 16, 16, 0.42);
  --accent: #da6249;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  --container: 1340px;
  --header-h: 62px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", sans-serif;
}

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

button,
input {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
}

.brand-name,
.brand-tag,
.site-nav a,
.section-title,
.service-card span,
.band-label,
.signup-subtitle,
.site-footer p,
.faq summary {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
  background: #060606;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.46)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 68% 56%, rgba(255, 111, 58, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: clamp(2vw, 5vw, 6vw);
}

.hero-logo {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 1.7vw, 28px);
  transform: translate(0, 4vh) scale(0.74);
  transform-origin: left center;
}

.signal-mark {
  position: relative;
  width: clamp(84px, 11vw, 150px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.signal-ring {
  position: absolute;
  inset: 12%;
  border: 10px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
}

.signal-core {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 8.2vw, 7rem);
  line-height: 1;
  font-weight: 700;
  text-transform: lowercase;
}

.signal-rays,
.signal-rays::before,
.signal-rays::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.signal-rays::before {
  inset: -14px;
  background:
    linear-gradient(var(--white), var(--white)) center 0 / 5px 24px no-repeat,
    linear-gradient(var(--white), var(--white)) right 12px top 26px / 5px 22px no-repeat,
    linear-gradient(var(--white), var(--white)) left 12px top 26px / 5px 22px no-repeat,
    linear-gradient(var(--white), var(--white)) right 0 center / 22px 5px no-repeat,
    linear-gradient(var(--white), var(--white)) left 0 center / 22px 5px no-repeat,
    linear-gradient(var(--white), var(--white)) right 24px bottom 10px / 5px 24px no-repeat,
    linear-gradient(var(--white), var(--white)) left 24px bottom 10px / 5px 24px no-repeat;
  opacity: 0.95;
  transform: rotate(-6deg);
}

.hero-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  line-height: 0.84;
}

.hero-main {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 13vw, 11.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: lowercase;
}

.hero-sub {
  align-self: flex-end;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.section {
  padding: clamp(90px, 10vw, 140px) 0;
}

.section-light {
  background: var(--bg);
}

.services-inner .section-title {
  margin-bottom: clamp(24px, 2.8vw, 34px);
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.95;
  font-weight: 600;
}

.section-title.centered {
  text-align: center;
}

.section-title.italic {
  font-style: italic;
  font-weight: 500;
}

.service-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: clamp(255px, 31vw, 385px);
  display: flex;
  align-items: flex-end;
  padding: 22px 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74));
}

.service-card span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(2.25rem, 3.7vw, 4rem);
  line-height: 0.88;
  font-weight: 600;
  min-height: 2.1em;
  display: flex;
  align-items: flex-end;
}

.card-brand {
  background-image:
    linear-gradient(180deg, transparent, rgba(0,0,0,.1)),
    url("https://images.unsplash.com/photo-1626785774573-4b799315345d?auto=format&fit=crop&w=900&q=80");
}

.card-print {
  background-image:
    linear-gradient(180deg, transparent, rgba(0,0,0,.1)),
    url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?auto=format&fit=crop&w=900&q=80");
}

.card-signs {
  background-image:
    linear-gradient(180deg, transparent, rgba(0,0,0,.1)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=900&q=80");
}

.card-web {
  background-image:
    linear-gradient(180deg, transparent, rgba(0,0,0,.1)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.band {
  position: relative;
  min-height: clamp(430px, 62vw, 860px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.band-image,
.band-overlay {
  position: absolute;
  inset: 0;
}

.band-image {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.band-overlay {
  background: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.2));
}

.band-overlay-strong {
  background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.44)),
    radial-gradient(circle at center, rgba(0,0,0,0.06), rgba(0,0,0,0.3));
}

.band-city .band-image {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
}

.band-print .band-image {
  background-image: url("https://images.unsplash.com/photo-1538688423619-a81d3f23454b?auto=format&fit=crop&w=1800&q=80");
}

.band-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.8rem, 4.25vw, 5rem);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.band-label-panel {
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.24);
}

.statement-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 44px;
  align-items: start;
}

.statement-right p,
.faq-items p {
  margin: 0;
  max-width: 820px;
  color: var(--text);
  font-size: clamp(1.14rem, 1.55vw, 1.38rem);
  line-height: 1.82;
}

.signup-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.signup-subtitle {
  margin: 24px 0 8px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
}

.signup-copy,
.privacy-note,
.form-success {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.signup-form {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 10px;
}

.signup-form input,
.signup-form button {
  min-height: 56px;
  border-radius: 0;
}

.signup-form input {
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.signup-form input::placeholder {
  color: #595959;
}

.signup-form button {
  padding: 0 24px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--white);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.signup-form button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.privacy-note {
  margin-top: 18px;
}

.form-success {
  margin-top: 12px;
  min-height: 20px;
}

.faq-items {
  display: grid;
  gap: 18px;
}

.faq-items details {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.faq-items details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.62rem;
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq-items p {
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  padding: clamp(56px, 8vw, 92px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.9)),
    var(--bg-soft);
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr) minmax(240px, 0.8fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-mark {
  flex-shrink: 0;
}

.footer-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--text);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: lowercase;
}

.footer-brand-copy,
.footer-contact,
.footer-hours {
  display: grid;
  gap: 10px;
}

.footer-kicker,
.footer-label,
.footer-location,
.footer-contact a,
.footer-hours-list p,
.footer-hours-list span {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.footer-kicker {
  font-size: 1.12rem;
  font-weight: 600;
}

.footer-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.footer-location,
.footer-contact a,
.footer-hours-list p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text);
}

.footer-contact a {
  display: inline-block;
  word-break: break-word;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-hours-list {
  display: grid;
  gap: 10px;
}

.footer-hours-list p {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 28px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.footer-hours-list p:first-child {
  padding-top: 0;
  border-top: 0;
}

.footer-hours-list span:last-child {
  text-align: right;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signup-form {
    grid-template-columns: 1fr 1fr;
  }

  .signup-form button {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 22px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .site-nav.open {
    display: flex;
  }

  .brand {
    gap: 10px;
    flex-wrap: wrap;
  }

  .brand-tag {
    width: 100%;
  }

  .hero-content {
    justify-content: center;
  }

  .hero-logo-wrap {
    justify-content: center;
    padding-left: 0;
  }

  .hero-logo {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transform: translateY(1vh) scale(0.88);
  }

  .hero-wordmark {
    align-items: center;
  }

  .hero-sub {
    align-self: center;
  }

  .statement-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-form button {
    grid-column: auto;
  }

  .band {
    min-height: 360px;
  }

  .section {
    padding: 66px 0;
  }

  .hero-logo {
    transform: translateY(1vh) scale(0.9);
  }

  .band-label-panel {
    padding-inline: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand-block {
    grid-column: auto;
    align-items: flex-start;
  }

  .footer-hours-list p {
    gap: 18px;
  }
}
