/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  line-height: 1.6;
  color: #d4d4d4;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav a {
  text-decoration: none;
  color: #aaa;
  margin-left: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav a:hover {
  color: #d4af37;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ccc;
}

/* Hero */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  padding: 6rem 1.5rem 4rem;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-subhead {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #c9a032 40%, #8b7530 100%);
  color: #111;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

/* About */
.about {
  padding: 5rem 1.5rem;
  background: #1a1a1a;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-photo {
  flex-shrink: 0;
}

.about-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #d4af37;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
  text-align: left;
  text-transform: uppercase;
}

.about-text p {
  color: #aaa;
  margin-bottom: 1rem;
}

/* Bio Summary */
.bio-summary {
  padding: 4rem 1.5rem;
  background: #141414;
}

.bio-summary-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.bio-summary-photo {
  flex-shrink: 0;
}

.bio-summary-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #d4af37;
}

.bio-summary-list {
  list-style: none;
  padding: 0;
}

.bio-summary-list li {
  color: #ccc;
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 1.05rem;
}

.bio-summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
}

/* Photo Strip */
.photo-strip {
  background: #0a0a0a;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.photo-strip-item {
  overflow: hidden;
  max-height: 400px;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.photo-strip-item:hover img {
  transform: scale(1.03);
}

/* Services */
.services {
  padding: 5rem 1.5rem;
  background: #141414;
}

.services h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
  text-align: center;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  transition: transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #d4af37;
  text-transform: uppercase;
}

.service-card p {
  color: #999;
}

/* Press Coverage */
.press {
  padding: 5rem 1.5rem;
  background: #1a1a1a;
}

.press h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #d4af37;
  text-align: center;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.press-card {
  display: block;
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
}

.press-source {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.press-card blockquote {
  color: #ccc;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  border-left: 3px solid #d4af37;
  padding-left: 1rem;
}

.press-note {
  color: #888;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding: 5rem 1.5rem;
  background: #1a1a1a;
}

.contact-info {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-info a {
  color: #d4af37;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #b8962e;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  color: #aaa;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #d4af37;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: #222;
  color: #ddd;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form .btn {
  align-self: flex-start;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: #666;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.875rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #111;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 1rem 0;
    text-align: center;
  }

  .nav.open {
    display: block;
  }

  .nav a {
    display: block;
    margin: 0;
    padding: 0.75rem 1.5rem;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero-subhead {
    font-size: 1.1rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-photo img {
    width: 220px;
    height: 220px;
  }

  .bio-summary-content {
    flex-direction: column;
    text-align: center;
  }

  .bio-summary-list li {
    text-align: left;
  }

  .photo-strip-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip-item {
    max-height: 280px;
  }
}
