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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f7f4;
  color: #5f5e5a;
  line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #2c2c2a;
}

h1 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h2 {
  font-size: 22px;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #185fa5;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #0c447c;
}

/* Navigation */
nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e3df;
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: #5f5e5a;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Header Section */
.header {
  background: #ffffff;
  padding: 1.5rem 2rem 0.5rem 2rem;
}

.header-name {
  font-size: 36px;
  font-weight: 600;
  color: #2c2c2a;
  margin-bottom: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Sections */
section {
  background: #ffffff;
  margin-bottom: 0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem 3rem 2rem;
}

/* Single Column Layout */
.single-column {
  max-width: 800px;
  margin: 0 auto;
}

/* Label/Category */
.label {
  font-size: 13px;
  color: #888780;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: block;
}

.label-large {
  font-size: 14px;
}

/* Home Page Specific */
.home-hero {
  background: #ffffff;
  padding: 2rem 2rem 3rem 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-headshot {
  background: #e6f1fb;
  border-radius: 4px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f5e5a;
  font-size: 14px;
  border: 1px solid #85b7eb;
}

.hero-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.demo-reel {
  margin-bottom: 2.5rem;
}

.reel-container {
  background: #ffffff;
  border-radius: 4px;
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.reel-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.contact-section {
  margin-top: 1.5rem;
}

.contact-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.contact-links a {
  font-size: 14px;
  font-weight: 500;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item {
  background: #ffffff;
  border: 1px solid #e5e3df;
  border-radius: 4px;
  overflow: hidden;
}

.video-container {
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.5rem;
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2a;
  margin-bottom: 0.5rem;
}

.video-description {
  font-size: 14px;
  color: #888780;
  line-height: 1.6;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-item {
  border-radius: 4px;
  overflow: hidden;
  background: #e5e3df;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vertical/portrait photos span 1 column (default) */
.photo-item.portrait {
  grid-column: span 1;
}

/* Horizontal/landscape photos span full row (2 columns) */
.photo-item.landscape {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .photo-item.landscape {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-item.landscape {
    grid-column: span 1;
  }
}

/* Press Links */
.press-list {
  max-width: 800px;
  margin: 0 auto;
}

.press-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e5e3df;
}

.press-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.press-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2a;
  margin-bottom: 0.75rem;
}

.press-description {
  font-size: 14px;
  color: #888780;
  margin-bottom: 1rem;
}

.press-link {
  font-size: 14px;
  color: #185fa5;
  font-weight: 500;
  word-break: break-all;
}

/* Bio Page */
.bio-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #5f5e5a;
}

.bio-text p {
  margin-bottom: 1.5rem;
}

/* Resume Page */
.resume-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #5f5e5a;
}

.resume-section {
  margin-bottom: 2rem;
}

.resume-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

.resume-section p {
  margin-bottom: 0.75rem;
}

.download-pdf {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: #185fa5;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
}

.download-pdf:hover {
  background: #0c447c;
  color: #ffffff;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2a;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 14px;
  border: 1px solid #d3d1c7;
  border-radius: 4px;
  font-family: inherit;
  color: #2c2c2a;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #185fa5;
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  background: #185fa5;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #0c447c;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  nav ul {
    gap: 1.5rem;
  }

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

  .section-content {
    padding: 2rem 1rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 24px;
  }

  nav a {
    font-size: 12px;
  }
}
