:root {
  --navy-950: #08111d;
  --navy-900: #0d1b2d;
  --navy-850: #12253d;
  --gold-500: #c89a35;
  --gold-400: #ddb765;
  --white: #f6f3ec;
  --slate-200: #d2d8e1;
  --slate-400: #95a1b2;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 10px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  background: linear-gradient(180deg, var(--navy-850) 0%, var(--navy-950) 100%);
  color: var(--white);
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
}

.skip-link:focus {
  top: 1rem;
}

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

.narrow {
  max-width: 760px;
}

.about-block {
  display: grid;
  gap: 0.8rem;
}

.section {
  padding: 3.75rem 0;
  scroll-margin-top: 5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 17, 29, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand-logo {
  width: clamp(156px, 36vw, 208px);
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(8, 17, 29, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-nav.is-open {
  display: grid;
  gap: 0.75rem;
}

.site-nav a {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  padding-top: 2.2rem;
}

.hero-grid,
.contact-grid {
  display: grid;
  gap: 1.6rem;
}

h1,
h2,
h3,
.button {
  font-family: "Barlow Semi Condensed", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 10.5vw, 5.2rem);
  max-width: 8.2ch;
}

h2 {
  font-size: clamp(1.85rem, 6.5vw, 2.7rem);
  max-width: 15ch;
}

h3 {
  font-size: 1.5rem;
}

.hero-subheadline {
  margin: 0.8rem 0 0;
  color: var(--gold-400);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

.button-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 12px 24px rgba(200, 154, 53, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-400);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.button-main,
.nav-cta {
  position: relative;
}

.hero-media,
.services-grid {
  display: grid;
  gap: 0.9rem;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.photo-frame-hero {
  min-height: 500px;
}

.feature-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.service-copy p,
.contact-copy p,
.about-text,
.form-note {
  margin: 0.3rem 0 0;
  color: var(--slate-200);
  font-size: 1rem;
}

.section-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

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

.service-photo-card {
  display: grid;
  gap: 0.7rem;
}

.service-copy h3 {
  margin-bottom: 0.2rem;
}

.section-band {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 1.25rem;
}

.contact-list a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.form-row textarea {
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder,
.form-row select:invalid {
  color: var(--slate-400);
}

.site-footer {
  padding: 1.35rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-inner p {
  margin: 0;
  color: var(--slate-200);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .section {
    padding: 4.75rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-cta {
    margin-left: 0.5rem;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 2.75rem;
  }

  .photo-frame-hero {
    min-height: 560px;
  }
}
