:root {
  --ink: #111111;
  --ink-soft: #333333;
  --muted: #666666;
  --line: rgba(17, 17, 17, 0.12);
  --paper: #f5f5f5;
  --paper-2: #ececec;
  --white: #ffffff;
  --dark: #0b0b0b;
  --dark-2: #161616;
  --copper: #e31e24;
  --copper-2: #ff3b42;
  --copper-ink: #c4161c;
  --shadow: 0 24px 60px rgba(11, 11, 11, 0.16);
  --radius: 18px;
  --wrap: 1180px;
  --nav-h: 86px;
  --font: "Montserrat", system-ui, sans-serif;
  --display: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--copper);
  color: var(--dark);
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
}

h1,
h2,
h3,
.display {
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(1.85rem, 7vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.lead {
  font-size: 1.12rem;
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--copper);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--copper-2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(251, 248, 243, 0.28);
}

.btn-ghost:hover {
  background: rgba(251, 248, 243, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #2a2622;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.brand img {
  height: 58px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--dark) center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 17, 16, 0.28) 0%, rgba(18, 17, 16, 0.78) 100%),
    linear-gradient(90deg, rgba(18, 17, 16, 0.55), transparent 55%);
}

.hero-inner {
  position: relative;
  padding: 72px 0 80px;
}

.hero p {
  color: rgba(251, 248, 243, 0.82);
  max-width: 52ch;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 248, 243, 0.16);
}

.hero-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--copper-2);
}

.hero-meta span {
  color: rgba(251, 248, 243, 0.7);
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 720px;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service,
.step,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.service {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease;
}

.service:hover {
  transform: translateY(-4px);
}

.service img,
.shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.service-body,
.card-body,
.step,
.faq details {
  padding: 24px;
}

.service h3 {
  margin-bottom: 8px;
}

.service a,
.card a {
  font-weight: 700;
  color: var(--copper-ink);
}

.card ul,
.panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.card li + li,
.panel li + li {
  margin-top: 6px;
}

.site-footer h3 {
  margin: 0 0 12px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--paper-2);
  margin-bottom: 16px;
  color: var(--copper-ink);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.panel {
  background: var(--dark);
  color: var(--white);
  border-radius: 28px;
  padding: 36px;
}

.panel p,
.panel li {
  color: rgba(251, 248, 243, 0.78);
}

.panel ol,
.panel ul {
  margin: 0;
  padding-left: 18px;
}

.step {
  position: relative;
}

.step-num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 12px;
}

.band {
  background: var(--dark);
  color: var(--white);
}

.band p {
  color: rgba(251, 248, 243, 0.76);
}

.shots {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 240px;
}

.shot img {
  height: 100%;
  min-height: 240px;
}

.shot span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.creed {
  position: relative;
}

.creed-quote {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 36ch;
  margin: 18px 0 22px;
}

.band .creed-quote + p {
  max-width: 62ch;
}

.creed-sign {
  color: var(--copper-2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.fb-frame {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 22px;
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ececec;
  aspect-ratio: 4 / 3;
}

.gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 30, 36, 0.32), transparent 36%),
    var(--dark-2);
  color: var(--white);
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 14px 14px;
  color: var(--ink);
  font-size: 16px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-card {
  padding: 28px;
}

.contact-card a {
  font-weight: 700;
  color: var(--copper-ink);
}

.map {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: 22px;
  filter: grayscale(0.35) contrast(1.05);
}

.faq details {
  padding: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 700;
}

.faq details + details {
  margin-top: 10px;
}

.faq details p {
  padding: 0 24px 20px;
  margin: 0;
}

.seo-places {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.seo-places span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-footer {
  background: var(--dark);
  color: rgba(251, 248, 243, 0.72);
  padding: 56px 0 28px;
}

.site-footer h3,
.site-footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(251, 248, 243, 0.1);
}

.site-footer a:hover {
  color: var(--copper-2);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.86rem;
}

.cookies {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.cookies.show {
  display: flex;
}

.page-hero {
  padding: 72px 0 28px;
}

.hidden {
  display: none !important;
}

.success {
  background: #e8f3ea;
  color: #21512b;
  border-radius: 14px;
  padding: 16px;
}

.callbar {
  display: none;
}

@media (max-width: 1100px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 72px;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    transition: transform 0.2s ease, top 0.2s ease, background 0.2s ease;
  }

  .brand img {
    height: 48px;
    max-width: 132px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: calc(100dvh - var(--nav-h));
    max-height: none;
    margin: 0;
    background: #fff;
    padding: 8px 20px calc(88px + env(safe-area-inset-bottom));
    overflow-y: auto;
    box-shadow: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 8px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .btn {
    margin-top: 16px;
    width: 100%;
    border-bottom: 0;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2.4rem);
  }

  .lead,
  .hero p {
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
    background-position: center 28%;
  }

  .hero-inner {
    padding: 32px 0 40px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    margin-top: 28px;
    gap: 14px;
  }

  .hero-meta strong {
    font-size: 1.35rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .page-hero {
    padding: 36px 0 8px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .hero-meta,
  .shots,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta,
  .cta-box {
    display: grid;
  }

  .cta-box,
  .panel,
  .contact-card {
    padding: 22px;
  }

  .cta-box .btn {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-photo {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .map {
    min-height: 240px;
  }

  .legal {
    flex-direction: column;
    gap: 8px;
  }

  .callbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    min-height: 54px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--copper);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .cookies {
    left: 12px;
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
  }

  .cookies .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .gallery,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .kicker {
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }
}

@media (hover: none) {
  .service:hover,
  .btn:hover {
    transform: none;
  }
}
