﻿:root {
  --bg: #060606;
  --bg-soft: #0e0e0f;
  --ink: #f5efe6;
  --muted: #b6aca0;
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.07);
  --red: #cf1f2f;
  --blue: #214eb9;
  --gold: #f0c35a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(207, 31, 47, 0.12), transparent 35%),
    radial-gradient(circle at 86% 16%, rgba(33, 78, 185, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #090909 52%, #040404 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

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

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

.stripe-bar {
  height: 10px;
  background:
    repeating-linear-gradient(
      135deg,
      var(--red) 0,
      var(--red) 16px,
      #ffffff 16px,
      #ffffff 32px,
      var(--blue) 32px,
      var(--blue) 48px,
      #ffffff 48px,
      #ffffff 64px
    );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-shell {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding-bottom: 64px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.84);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-plaque {
  width: clamp(148px, 18vw, 205px);
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.brand-lockup span {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.header-nav a:hover {
  color: var(--ink);
}

.header-cta,
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button {
  background: linear-gradient(135deg, var(--red), #ef4e49);
  color: white;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.header-cta:hover,
.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero-actions,
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero {
  padding: 58px 0 36px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19, 19, 20, 0.96) 0%, rgba(8, 8, 8, 0.96) 100%);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 5vw, 56px);
}

.eyebrow,
.profile-label {
  margin: 0 0 16px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e5d8c8;
}

.hero-copy h1,
.section-header h2,
.profile-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 0.94;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  font-size: clamp(4.3rem, 10vw, 7.2rem);
}

.hero-copy h1 span {
  display: block;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 20px 0 0;
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  margin-top: 28px;
}

.hero-details {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-pill {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.detail-pill strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e5d8c8;
}

.detail-pill span,
.detail-pill a {
  color: var(--muted);
  line-height: 1.6;
}

.hero-profile {
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
}

.profile-photo-wrap {
  min-height: 360px;
  background: #111;
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy {
  padding: 24px 28px 30px;
  border-top: 1px solid var(--line-soft);
}

.profile-copy h2 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
}

.profile-copy p:not(.profile-label) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.profile-actions {
  margin-top: 22px;
}

.section {
  padding: 24px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.section-header h2,
.contact-panel h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.simple-header {
  margin-bottom: 18px;
}

.align-left {
  justify-content: flex-start;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.highlight-card,
.contact-card,
.aside-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}

.highlight-card h3,
.contact-card h3,
.aside-card h3 {
  margin: 0 0 12px;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.highlight-card p,
.contact-card p,
.aside-card p,
.contact-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.services-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.services-panel,
.gallery-panel,
.reviews-panel,
.contact-panel {
  padding: clamp(22px, 4vw, 32px);
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.service-row:first-child {
  border-top: 1px solid var(--line-soft);
}

.service-main h3 {
  margin: 0;
  font-size: 1.18rem;
}

.service-main p {
  margin: 6px 0 0;
  color: var(--muted);
}

.service-meta strong {
  display: block;
  font-family: "Teko", "Arial Narrow", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.service-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-card .button,
.aside-card .button-secondary {
  margin-top: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 22px;
  min-height: 220px;
  border: 1px solid var(--line-soft);
  background: #111;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card-1,
.gallery-card-4 {
  grid-column: span 5;
}

.gallery-card-2,
.gallery-card-5 {
  grid-column: span 7;
}

.gallery-card-3 {
  grid-column: span 12;
  min-height: 280px;
}

.reviews-wrap {
  column-count: 3;
  column-gap: 16px;
}

.review-card {
  break-inside: avoid;
  margin-bottom: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-stars {
  color: var(--gold);
  font-size: 0.96rem;
  letter-spacing: 0.24em;
}

.review-source {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5d8c8;
}

.reviewer {
  margin: 14px 0 12px;
  font-weight: 700;
}

.review-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.review-body p:last-child {
  margin-bottom: 0;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-stack {
  display: grid;
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card a,
.contact-stack a,
.aside-card a {
  color: var(--ink);
}

.footer {
  padding: 20px 0 0;
  color: var(--muted);
}

.footer-row {
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 1080px) {
  .hero,
  .services-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .reviews-wrap {
    column-count: 2;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 20px, 100%);
  }

  .site-header {
    padding: 14px;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .header-nav {
    width: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .hero-details,
  .highlights-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-row,
  .section-header,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .gallery-card,
  .gallery-card-1,
  .gallery-card-2,
  .gallery-card-3,
  .gallery-card-4,
  .gallery-card-5 {
    grid-column: auto;
    min-height: 240px;
  }

  .reviews-wrap {
    column-count: 1;
  }
}
