:root {
  --bg-dark: #17110d;
  --bg-dark-soft: #241915;
  --bg-light: #f6f2eb;
  --bg-muted: #e9e4dc;
  --text-dark: #201712;
  --text-light: #f5f1ea;
  --text-muted: #b8aea2;
  --accent: #ec9c3b;
  --accent-strong: #f7b050;
  --border-soft: rgba(255, 255, 255, 0.12);
  --shadow-lg: 0 28px 60px rgba(10, 7, 5, 0.3);
  --shadow-md: 0 20px 40px rgba(17, 11, 8, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell-width: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button {
  font: inherit;
}

.shell {
  width: var(--shell-width);
  margin: 0 auto;
}

.announcement-bar {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(17, 12, 9, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-light);
}

.brand img {
  width: 56px;
  height: auto;
}

.brand span {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: rgba(245, 241, 234, 0.88);
  font-size: 0.96rem;
}

.site-nav a {
  transition: color 160ms ease, opacity 160ms ease;
}

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

.nav-cta {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(236, 156, 59, 0.16);
  border: 1px solid rgba(236, 156, 59, 0.42);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text-light);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(236, 156, 59, 0.2), transparent 26%),
    linear-gradient(90deg, rgba(10, 7, 5, 0.85) 0%, rgba(10, 7, 5, 0.58) 42%, rgba(10, 7, 5, 0.2) 100%),
    url("./assets/images/hero.jpg") center center / cover no-repeat;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 4, 0.14), rgba(8, 5, 4, 0.42)),
    linear-gradient(0deg, rgba(8, 5, 4, 0.7), transparent 28%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 7rem 0 4rem;
}

.hero-copy {
  max-width: 520px;
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 0.3rem;
  font-family: "Oswald", Impact, sans-serif;
  line-height: 0.98;
}

.hero-logoletters {
  display: block;
  width: clamp(14rem, 62vw, 30rem);
  max-width: 100%;
  height: auto;
}

.hero h1 strong {
  font-size: clamp(1.9rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--text-light);
}

.hero-subtitle {
  max-width: 420px;
  margin: 1.3rem 0 0;
  color: rgba(245, 241, 234, 0.92);
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.7;
}

.hero-actions,
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #120d0a;
  box-shadow: 0 16px 32px rgba(236, 156, 59, 0.24);
}

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
}

.hero-scroll {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  color: rgba(245, 241, 234, 0.84);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: "";
  width: 56px;
  height: 1px;
  background: rgba(245, 241, 234, 0.46);
}

section {
  position: relative;
}

.section-light,
.section-muted,
.section-dark,
.contact {
  padding: 6rem 0;
}

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

.section-muted {
  background:
    radial-gradient(circle at top, rgba(236, 156, 59, 0.12), transparent 28%),
    var(--bg-muted);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(36, 25, 21, 0.94), rgba(20, 14, 11, 1)),
    var(--bg-dark);
  color: var(--text-light);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: 3rem;
  align-items: center;
}

.section-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.section-copy p {
  margin: 1.2rem 0 0;
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.9;
  color: rgba(32, 23, 18, 0.82);
}

.section-copy .button {
  margin-top: 1.6rem;
}

.about-gallery {
  position: relative;
  min-height: 560px;
}

.about-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card-primary {
  inset: 0 112px 48px 0;
}

.about-card-secondary {
  inset: 92px 0 0 170px;
  border: 8px solid rgba(246, 242, 235, 0.92);
}

.experience-band {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 7, 0.78), rgba(12, 8, 7, 0.78)),
    url("./assets/images/gallery-4.jpg") center center / cover no-repeat;
  color: var(--text-light);
  text-align: center;
}

.experience-band p {
  max-width: 22ch;
  margin: 0 auto;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-heading {
  margin-bottom: 2.4rem;
}

.section-heading-center {
  text-align: center;
}

.section-intro {
  max-width: 820px;
  margin: 1rem auto 0;
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.9;
  color: rgba(32, 23, 18, 0.74);
}

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

.service-card {
  display: grid;
  gap: 1rem;
  padding: 1rem 1rem 1.4rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  aspect-ratio: 7 / 2;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 6px);
}

.service-card h3,
.team-card h3 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-divider {
  color: rgba(236, 156, 59, 0.8);
  letter-spacing: 0.14em;
}

.service-card strong {
  color: var(--accent);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

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

.team-card {
  padding: 1rem 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 6px);
}

.team-card p {
  margin: 0.85rem 0 1rem;
  color: rgba(32, 23, 18, 0.72);
  line-height: 1.75;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #5f6368;
}

.social-links a img {
  width: 22px;
  height: 22px;
}

.social-links-large a {
  width: 56px;
  height: 56px;
}

.social-links-large a img {
  width: 28px;
  height: 28px;
}

.contact {
  overflow: hidden;
  color: var(--text-light);
  background:
    linear-gradient(180deg, rgba(11, 8, 6, 0.76), rgba(11, 8, 6, 0.94)),
    url("./assets/images/contact-bg.jpg") center center / cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(236, 156, 59, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(12, 8, 6, 0.88) 0%, rgba(12, 8, 6, 0.78) 45%, rgba(12, 8, 6, 0.56) 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 410px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.contact-card,
.map-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 13, 10, 0.56);
  box-shadow: var(--shadow-lg);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  line-height: 1.7;
  color: rgba(245, 241, 234, 0.9);
}

.contact-list span {
  width: 1.5rem;
}

.contact-card .social-links {
  margin: 1.6rem 0;
}

.map-heading p:last-child {
  margin: 0 0 1.4rem;
  color: rgba(245, 241, 234, 0.76);
}

.map-preview {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
}

.map-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.map-preview span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(17, 12, 9, 0.88);
  color: var(--text-light);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  padding: 1.35rem 0;
  background: #16100d;
  color: rgba(245, 241, 234, 0.8);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

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

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(18, 13, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section-grid,
  .contact-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .about-gallery {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100vh - 98px);
  }

  .hero-shell,
  .section-light,
  .section-muted,
  .section-dark,
  .contact {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .about-card-primary {
    inset: 0 60px 28px 0;
  }

  .about-card-secondary {
    inset: 82px 0 0 118px;
  }

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

  .gallery-grid img {
    min-height: 260px;
  }

  .contact-card,
  .map-card {
    padding: 1.4rem;
  }

  .section-copy h2,
  .experience-band p {
    max-width: none;
  }
}
