/* Amped Productions — dark editorial photography site
   Fonts: Montserrat (display/headings), Inter (body) — client specified */

:root {
  --bg: #0C0C0C;
  --bg-alt: #161616;
  --ink: #FFFFFF;
  --cream: #F5F0E8;
  --muted: rgba(255, 255, 255, 0.62);
  --accent: #D4A84B;
  --border: rgba(255, 255, 255, 0.10);
  --overlay: rgba(0, 0, 0, 0.45);

  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-section: clamp(5rem, 10vw, 7.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 8px;

  /* z-scale */
  --z-sticky: 100;
  --z-drawer: 200;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

h1, h2, h3 { text-wrap: balance; margin: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--ink); color: var(--bg);
  padding: 0.5rem 1rem; border-radius: 4px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem;
  text-decoration: none; z-index: calc(var(--z-drawer) + 1);
  transition: top 0.2s ease-out;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1),
              color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn--pill {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.625rem 1.375rem;
}
.btn--pill:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--ink); }

.btn--solid {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}
.btn--solid:hover { background: var(--cream); }

.link-accent {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.link-accent:hover { color: var(--accent); }

/* ---------- Nav ---------- */

.site-nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(12, 12, 12, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease-out;
}
.site-nav.scrolled { border-bottom-color: var(--border); }

.site-nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.625rem;
  text-decoration: none;
}
.nav-brand img { width: 34px; height: 32px; }
.nav-brand span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a:not(.btn) {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.04em;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s ease-out;
}
.nav-links a:not(.btn):hover { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none; border: none; padding: 0.5rem; cursor: pointer;
}
.nav-toggle .bar {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px 0; transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s;
}

@media (max-width: 47.9375rem) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 0.5rem var(--gutter) 1.5rem;
    background: #0E0E0E;
    border-bottom: 1px solid var(--border);
    display: none; z-index: var(--z-drawer);
  }
  .nav-links.open { display: flex; }
  .site-nav:has(.nav-links.open) {
    background: #0E0E0E;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) { display: block; padding: 0.875rem 0; font-size: 1rem; }
  .nav-links .btn { margin-top: 0.75rem; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; }

.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
  min-height: calc(100vh - 4.25rem);
}

.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.available-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}
.available-badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}

.local-time {
  font-size: 0.8125rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.375rem, 5.8vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}
.hero h1 .line { display: block; }
.hero h1 .line--outline { color: rgba(255, 255, 255, 0.5); }

.hero-tagline {
  max-width: 34rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--cream);
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }

.hero-figure { position: relative; margin: 0; }
.hero-figure img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  max-height: 76vh;
}
.hero-figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  font-size: 0.75rem; color: rgba(255, 255, 255, 0.9);
  background: rgba(12, 12, 12, 0.55);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.7rem; border-radius: 999px;
}

@media (max-width: 59.9375rem) {
  .hero .wrap { grid-template-columns: 1fr; min-height: 0; }
  .hero-figure img { max-height: none; aspect-ratio: 4 / 5; }
}

/* ---------- Marquee ---------- */

.marquee {
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding-block: 0.875rem;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.marquee-track span b { color: var(--accent); font-weight: 700; margin-right: 3rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section { padding-block: var(--space-section); }
.section--alt { background: var(--bg-alt); }

.section-head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 1rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
}
.section-head h2 .en {
  display: block;
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-head .aside { font-size: 0.9375rem; color: var(--muted); max-width: 26rem; }

/* ---------- Featured work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.125rem;
}
.work-card {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius);
}
.work-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card:hover img { transform: scale(1.035); }
.work-card figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.5rem 1.25rem 1.125rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}
.work-card .cat {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.25rem;
}
.work-card .title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.0625rem; color: var(--ink); line-height: 1.3;
}

.work-card--w7 { grid-column: span 7; }
.work-card--w5 { grid-column: span 5; }
.work-card--w12 { grid-column: span 12; }
.work-card--w7 img, .work-card--w5 img { aspect-ratio: 4 / 3; }
.work-card--w12 img { aspect-ratio: 21 / 9; object-position: center 68%; }

@media (max-width: 47.9375rem) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card--w7, .work-card--w5, .work-card--w12 { grid-column: auto; }
  .work-card--w12 img { aspect-ratio: 4 / 3; }
}

/* ---------- Over Ferry ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-grid figure { margin: 0; }
.about-grid img {
  border-radius: var(--radius);
  aspect-ratio: 3 / 4; object-fit: cover; width: 100%;
}
.about-quote {
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 1.75rem;
}
.about-quote::before { content: "“"; color: var(--accent); }
.about-quote::after { content: "”"; color: var(--accent); }
.about-copy { max-width: 42.5rem; color: rgba(255, 255, 255, 0.82); }
.about-copy strong { color: var(--ink); }
.about-cta { margin-top: 2rem; }

@media (max-width: 59.9375rem) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid img { aspect-ratio: 4 / 5; }
}

/* ---------- Expertises (numbered — signature pattern) ---------- */

.expertise-list { list-style: none; margin: 0; padding: 0; }
.expertise-list li {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1rem 2rem;
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.expertise-list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.expertise-list .num {
  font-size: 0.8125rem; color: var(--muted);
  padding-top: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.expertise-list h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  line-height: 1.2;
}
.expertise-list h3 small {
  display: block;
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.875rem; color: var(--muted);
  letter-spacing: 0; text-transform: none; margin-top: 0.4rem;
}
.expertise-list .desc { color: rgba(255, 255, 255, 0.78); font-size: 1rem; }

@media (max-width: 47.9375rem) {
  .expertise-list li { grid-template-columns: 3rem minmax(0, 1fr); }
  .expertise-list .desc { grid-column: 2; }
}

/* ---------- Motivatie ---------- */

.motivatie { text-align: left; }
.motivatie .wrap { max-width: 56rem; }
.motivatie blockquote {
  margin: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.625rem, 4vw, 2.625rem);
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}
.motivatie blockquote em { color: var(--accent); font-style: normal; }
.motivatie .rule {
  width: 4.5rem; height: 3px; background: var(--accent);
  border: none; margin: 0 0 2rem;
}
.motivatie .support {
  margin-top: 1.75rem;
  max-width: 40rem;
  font-size: 1.0625rem; line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Reviews ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  margin: 0;
}
.review-card blockquote {
  margin: 0; font-style: italic;
  font-size: 0.9875rem; color: var(--cream); line-height: 1.7;
  flex: 1;
}
.review-card .stars { color: var(--accent); font-size: 0.8125rem; letter-spacing: 0.2em; }
.review-card figcaption .name {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9375rem;
}
.review-card figcaption .role { display: block; font-size: 0.8125rem; color: var(--muted); }

/* ---------- CTA ---------- */

.cta { position: relative; overflow: hidden; }
.cta .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 62%;
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12, 12, 12, 0.92) 20%, rgba(12, 12, 12, 0.55));
}
.cta .wrap {
  position: relative; z-index: 1;
  padding-block: clamp(6rem, 14vw, 10rem);
}
.cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.25rem, 6.5vw, 4.5rem);
  line-height: 1.02; text-transform: uppercase; letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}
.cta p { max-width: 32rem; color: var(--cream); margin-bottom: 2.25rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.cta-actions .alt { font-size: 0.9375rem; color: var(--muted); }
.cta-actions .alt a { color: var(--ink); text-decoration-color: var(--accent); }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--border); }

.footer-marquee { overflow: hidden; padding-block: clamp(1.5rem, 4vw, 2.5rem); }
.footer-marquee .marquee-track { animation-duration: 60s; align-items: baseline; }
.footer-marquee span {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
}

.footer-main {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: flex-start;
  padding-block: 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-col .label {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.footer-col a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-col ul { list-style: none; margin: 0; padding: 0; font-size: 0.9375rem; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col address { font-style: normal; font-size: 0.9375rem; color: var(--muted); }

.footer-base {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem; color: var(--muted);
}
.footer-base a {
  color: var(--muted); text-decoration: none;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.footer-base a:hover { color: var(--ink); }

/* ---------- Contact page ---------- */

.contact-hero { padding-block: clamp(3rem, 7vw, 5rem) var(--space-section); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-grid > figure { margin: 0; position: sticky; top: 6rem; }
.contact-grid img {
  border-radius: var(--radius);
  aspect-ratio: 3 / 4; object-fit: cover; width: 100%;
}
.contact-intro h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1; margin-bottom: 1rem;
}
.contact-intro p { max-width: 34rem; color: var(--cream); margin-bottom: 2.5rem; }

.contact-form { display: grid; gap: 1.375rem; max-width: 40rem; }
.form-row { display: grid; gap: 1.375rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 35.9375rem) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.8125rem 1rem;
  transition: border-color 0.2s ease-out;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A84B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.48); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field .error-msg {
  display: none; font-size: 0.8125rem; color: #E8A9A0; margin-top: 0.4rem;
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C96A5C; }
.field.invalid .error-msg { display: block; }

.form-note { font-size: 0.8125rem; color: var(--muted); }

.form-success {
  background: var(--bg-alt);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--cream);
}

.contact-details {
  margin-top: var(--space-section);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 59.9375rem) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > figure { position: static; order: -1; }
  .contact-grid img { aspect-ratio: 16 / 10; }
}

/* ---------- Reveal (enhance-only: visible without JS) ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal-stagger.in > * { opacity: 1; transform: none; }
.js .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.js .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.js .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .work-card:hover img { transform: none; }
  .js .reveal, .js .reveal-stagger > * {
    opacity: 1; transform: none; transition: none;
  }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
