/* ProAwards Group — static rebuild */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f6f5f3;
  --grey: #555;
  --heading: 'Oswald', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow { max-width: 720px; }

h1, h2 {
  font-family: var(--heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

h2 { font-size: 2rem; margin-bottom: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--black);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  font-family: var(--heading);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.95rem;
  font-weight: 400;
}

.site-nav a:hover { text-decoration: underline; }

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05) 60%);
}

.hero-content {
  position: relative;
  color: var(--white);
  padding-bottom: 72px;
  width: 100%;
}

.hero h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }

.hero-sub {
  margin-top: 12px;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  letter-spacing: 0.02em;
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

.lead { font-size: 1.15rem; margin-bottom: 0.75rem; }

.services {
  list-style: none;
  font-size: 1.15rem;
}

.services li { padding: 2px 0; }

/* Gallery */
.gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px;
}

.card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.card figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Contact */
.contact-block { text-align: center; }

address { font-style: normal; margin-bottom: 1.5rem; }

.email-button {
  display: inline-block;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
  padding: 12px 40px;
}

.email-button:hover { background: #333; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 28px 0;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .hero { min-height: 65vh; }
}
