/* ============================================================
   Hazel & Light Photography — styles.css
   Bold artistic portfolio — near-black, white, golden yellow
   ============================================================ */

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

:root {
  --bg:         #0a0a0a;
  --bg-alt:     #111111;
  --bg-card:    #141414;
  --yellow:     #e8c547;
  --yellow-dim: #b89c35;
  --text:       #f0f0f0;
  --text-muted: #888888;
  --border:     #2a2a2a;
  --white:      #ffffff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
}

.section-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--yellow);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 6px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
}

.btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  text-transform: uppercase;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: #f0d060;
  border-color: #f0d060;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--white);
}

.btn-dark {
  background: var(--bg);
  color: var(--yellow);
  border-color: var(--bg);
}
.btn-dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-full { width: 100%; text-align: center; }

/* ── FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 24px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-monogram {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--yellow);
  line-height: 1;
}
.logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: var(--yellow) !important;
  border: 1.5px solid rgba(232,197,71,0.3) !important;
  padding: 8px 20px;
}
.nav-cta:hover {
  border-color: var(--yellow) !important;
  background: rgba(232,197,71,0.08) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  transition: background 0.2s;
}

/* ── HERO — SPLIT SCREEN ── */
.hero {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
  padding-top: 80px;
}

.hero-text {
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 60px 0;
  border-right: 1px solid var(--border);
}

.hero-text-inner {
  padding: 0 56px;
  max-width: 480px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  opacity: 0.8;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--yellow);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 340px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
  max-width: 260px;
}
.hero-actions .btn { text-align: center; }

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.8) contrast(1.05);
}
.hero-image-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--yellow);
  background: rgba(10,10,10,0.65);
  padding: 10px 18px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(232,197,71,0.2);
}

/* ── TICKER STRIP ── */
.ticker-strip {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-inner span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 16px;
}
.ticker-dot {
  opacity: 0.4;
  padding: 0 4px !important;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.service-item {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s ease;
}
.service-item:hover { background: var(--bg-alt); }
.service-item:nth-child(3n) { border-right: none; }
.service-item:nth-child(4),
.service-item:nth-child(5),
.service-item:nth-child(6) { border-bottom: none; }

.service-item-top {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}
.service-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow);
  opacity: 0.5;
}
.service-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.service-divider {
  width: 28px;
  height: 1.5px;
  background: var(--yellow);
  opacity: 0.35;
  margin-bottom: 16px;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  transition: opacity 0.2s;
}
.service-link:hover { opacity: 0.7; }

/* ── PORTFOLIO GRID ── */
.portfolio {
  background: var(--bg-alt);
  padding: 80px 0 0;
}
.portfolio .container { margin-bottom: 40px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 3px;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-item.large {
  grid-row: span 2;
}
.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.9);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.portfolio-item:hover img {
  filter: brightness(0.9) saturate(1.1);
  transform: scale(1.03);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-overlay span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(10,10,10,0.6);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}

/* ── ABOUT ── */
.about {
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.85) saturate(0.9);
}
.about-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--border);
}

.about-content .section-label { margin-bottom: 32px; }

.about-lead {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--yellow);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

/* ── AVAILABILITY BAND ── */
.avail-band {
  background: var(--yellow);
  padding: 80px 32px;
}
.avail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.avail-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  margin-bottom: 12px;
}

.avail-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--bg);
  line-height: 1.1;
  margin-bottom: 12px;
}
.avail-text p {
  font-size: 0.92rem;
  color: rgba(10,10,10,0.6);
  max-width: 400px;
}

.avail-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.avail-phone a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(10,10,10,0.55);
  text-decoration: none;
}
.avail-phone a:hover { color: var(--bg); }

/* ── REVIEWS ── */
.reviews {
  background: var(--bg-alt);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.review-card {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(232,197,71,0.3); }

.review-stars {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--yellow);
}

.review-card blockquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow-dim);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}
.reviewer span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: #444;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ── CONTACT ── */
.contact {
  background: var(--bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label { margin-bottom: 24px; }

.contact-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}
.contact-detail span,
.contact-detail a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
}
.contact-detail a:hover { color: var(--text); }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.req { color: var(--yellow); opacity: 0.5; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #333;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(232,197,71,0.5);
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}
.form-group input.error,
.form-group select.error {
  border-color: rgba(200,80,80,0.5);
}

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

.field-error {
  font-size: 0.72rem;
  color: rgba(220,100,100,0.85);
  min-height: 1em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 64px 24px;
}
.form-success.visible { display: block; }
.success-check {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 14px;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.form-success a { color: var(--yellow); text-decoration: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.footer-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #444;
}

.footer-info p {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.8;
}
.footer-info a { color: var(--yellow); text-decoration: none; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #444;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  padding: 20px 32px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: #2a2a2a;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 80px 0 60px;
  }
  .hero-text-inner { padding: 0 32px; max-width: 100%; }
  .hero-image { height: 480px; }
  .hero-actions { flex-direction: row; max-width: none; }
  .hero-actions .btn { flex: 1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(3n)   { border-right: 1px solid var(--border); }
  .service-item:nth-child(2n)   { border-right: none; }
  .service-item:nth-child(4)    { border-bottom: 1px solid var(--border); }
  .service-item:nth-child(5),
  .service-item:nth-child(6)    { border-bottom: none; }

  .portfolio-grid { grid-template-rows: 240px 240px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .avail-inner { flex-direction: column; text-align: center; }
  .avail-text p { max-width: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-alt);
    padding: 80px 32px 40px;
    z-index: 998;
    border-right: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
  }
  .nav-cta { border: none !important; }
  .nav-toggle { display: flex; z-index: 999; }

  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .service-item:nth-child(n) { border-bottom: 1px solid var(--border); }
  .service-item:last-child { border-bottom: none; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .portfolio-item.large { grid-row: span 1; }
  .portfolio-item { height: 220px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .hero-stat-row { gap: 14px; }
  .about-image img { height: 360px; }
  .avail-band { padding: 60px 24px; }
}
