@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  color-scheme: dark;
  font-family: 'Inter', 'Proxima Nova', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #f4f1eb;
  background: #11110d;
  font-synthesis: none;
  --header-offset: 88px;
  --paper: #fbfaf6;
  --warm-paper: #f4efe7;
  --champagne: #d5c8ab;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #11110d;
  overflow-x: hidden;
  scroll-behavior: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.page-shell {
  overflow-x: hidden;
}

.hero-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 12px 32px;
  width: 100%;
  background: rgba(17, 17, 13, 0.78);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.03);
}

/* Navigation layout */
.top-nav {
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  align-items: center;
  font-family: 'Inter', 'Proxima Nova', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.92);
}

.top-nav--left { justify-content: flex-start; }
.top-nav--right { justify-content: flex-end; }

.top-nav a { padding: 6px 10px; display: inline-block; }

.top-nav a:hover { opacity: 0.85; }

.hero-brand {
  justify-self: center;
  font-family: 'Inter', 'Proxima Nova', sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.98rem;
  color: #f4f1eb;
  z-index: 65;
}

.hero-hidden { justify-self: end; width: 100%; max-width: 100%; }

.hero-slider {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #222;
}

.hero-slider .slides {
  position: absolute;
  inset: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #222;
  opacity: 0;
}

.hero-slider .slide-1 {
  background-image: url('images/01.jpg');
  opacity: 1;
}

.hero-slider .slider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,13,0.18), rgba(17,17,13,0.58)),
    linear-gradient(90deg, rgba(17,17,13,0.28), transparent 40%, rgba(17,17,13,0.28));
}

.hero-slider .slider-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 40px;
}

.hero-slider .down-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  color: #f4f1eb;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  min-height: 130vh;
  display: grid;
  place-items: center;
  padding: 120px 32px 32px;
  background:
    linear-gradient(180deg, rgba(17,17,13,0.12), rgba(17,17,13,0.76)),
    url('images/01.jpg') center 42% / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,13,0.26), rgba(17,17,13,0.88));
  pointer-events: none;
}

/* hero copy should stick below the header; use variable for responsive control */
.hero-copy { }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 20%),
    linear-gradient(90deg, rgba(213,200,171,0.08), transparent 32%, rgba(213,200,171,0.06));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  align-self: start;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  width: min(100%, 780px);
  padding: 0 16px;
  margin: 0 auto;
}

.hero-label {
  margin: 0 0 24px;
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #d4c6ab;
}

.hero h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Didot, 'Bodoni MT', serif;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
  color: #f6f2ea;
  max-width: 100%;
}

.hero p {
  margin: 22px auto 0;
  max-width: 620px;
  color: rgba(244,241,235,0.88);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  width: min(100%, 780px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.button-primary {
  background: var(--champagne);
  color: #11110d;
}

.button-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  color: #f4f1eb;
  background: rgba(255,255,255,0.06);
}

.section {
  background: var(--paper);
  color: #11110d;
  padding: 72px 32px;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #6a6a6a;
}

.section h2,
.section h3,
.section h4,
.section p,
.section label,
.section strong,
.section .author,
.section .logo {
  color: #11110d;
}

.section a {
  color: #11110d;
}

.section .button-secondary {
  color: #11110d;
  border-color: rgba(17,17,13,0.18);
  background: rgba(17,17,13,0.04);
}

.section .gallery-links a {
  color: #11110d;
  border-color: rgba(17,17,13,0.18);
}

.featured-in {
  background: var(--paper);
  color: #11110d;
}

.featured-in .eyebrow {
  color: #6a6a6a;
}

.featured-galleries {
  background: var(--paper);
  color: #11110d;
}

.featured-logos {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  align-items: center;
  justify-items: center;
  margin-top: 28px;
}

.featured-logos .logo {
  opacity: 0.98;
  line-height: 1;
  white-space: nowrap;
}

.logo--vanity,
.logo--bazaar,
.logo--vogue,
.logo--nyt,
.logo--shortlist,
.logo--pdn {
  color: #11110d;
}

.logo--vanity {
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-size: clamp(1.3rem, 1.2vw, 2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo--bazaar {
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-size: clamp(1.4rem, 1.25vw, 2.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo--vogue {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 1.3vw, 2.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo--shortlist {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.98rem, 1vw, 1.4rem);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
}

.logo--pdn {
  font-family: 'Inter', 'Proxima Nova', sans-serif;
  font-size: clamp(1rem, 0.95vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.logo--nyt {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: clamp(1rem, 1vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: none;
}

.two-column {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
}

/* For the experience section: place image in the left column (smaller) and text on the right (larger) */
.experience .two-column {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.reverse {
  direction: rtl;
}

.reverse .image-block,
.reverse .text-block {
  direction: ltr;
}

.text-block h2,
.process h2,
.pricing h2,
.contact-panel h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Didot, 'Bodoni MT', serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.text-block p {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.95;
  max-width: 44rem;
  color: rgba(244,241,235,0.9);
}

.image-block {
  min-height: 520px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.image-hero {
  background-image: url('images/02.jpg');
  background-position: 32% 42%;
}

.origin-story {
  background: var(--paper);
  color: #11110d;
}

.origin-story .eyebrow {
  color: #6a6a6a;
}

.origin-story .text-block h2,
.origin-story .text-block p {
  color: #11110d;
}

.origin-story .section-inner {
  align-items: start;
}

/* Make origin-story act as a full-bleed hero on wide screens */
@media (min-width: 1120px) {
  .origin-story {
    padding: 120px 0 100px;
    background-image: url('images/04.jpg');
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    position: relative;
  }

  .origin-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,13,0.36), rgba(17,17,13,0.56));
    z-index: 0;
  }

  .origin-story .section-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .origin-story .text-block { max-width: 920px; }

  .origin-story .eyebrow { color: rgba(244,241,235,0.9); }

  .origin-story .text-block h2 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.02;
    margin-bottom: 24px;
  }

  .origin-story .text-block p:not(.eyebrow) {
    color: rgba(255,255,255,0.92);
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    text-align: center;
    text-shadow: 0 2px 18px rgba(0,0,0,0.46);
  }

  /* translucent caption box centered over the image */
  .origin-story .caption {
    margin-top: 18px;
    background: rgba(244,241,235,0.92);
    color: #11110d;
    padding: 22px 28px;
    border-radius: 4px;
    max-width: 760px;
    box-shadow: 0 8px 30px rgba(17,17,13,0.06);
  }

  /* hide the small image-block on wide full-bleed variant */
  .origin-story .image-block { display: none; }
}

.origin-story .image-block,
.experience .image-block {
  max-height: calc(100vh - (var(--header-offset) + 32px));
}

.experience .section-inner {
  align-items: start;
}

.image-experience {
  background-image: url('images/03.jpg');
  background-position: 50% 40%;
}

.image-about {
  background-image: url('images/04.jpg');
  background-position: 45% 46%;
}

.about-photographer .text-block .eyebrow {
  color: #6a6a6a;
}

.about-photographer .text-block p {
  color: #444;
}

.gallery-card.image-gallery-1 {
  background-image: url('images/05.jpg');
  background-position: 45% 25%;
}

.gallery-card.image-gallery-2 {
  background-image: url('images/06.jpg');
  background-position: 50% 38%;
}

.gallery-card.image-gallery-3 {
  background-image: url('images/07.jpg');
  background-position: 50% 15%;
}

.gallery-card.image-gallery-4 {
  background-image: url('images/08.jpg');
  background-position: 50% 45%;
}

.gallery-card {
  min-height: 420px;
  background-size: cover;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-color: transparent;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,13,0.28), rgba(17,17,13,0.56));
}

.gallery-card h3,
.gallery-card p {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.experience {
  background: var(--paper);
  color: #11110d;
}

.experience .text-block h2,
.experience .text-block p,
.experience .text-block .eyebrow {
  color: #11110d;
}

.experience .text-block p {
  color: #444;
}

.process {
  background: var(--paper);
  color: #11110d;
}

.process .eyebrow {
  color: #6a6a6a;
}

.process h2,
.process p {
  color: #11110d;
}

.process-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

/* Decorative background image placed under the process section */
.process {
  position: relative;
  overflow: hidden;
}

.process .section-inner { position: relative; z-index: 1; }

.process::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 310px;
  width: min(1280px, 78vw);
  height: 430px;
  background-image: url('images/08.jpg');
  background-size: cover;
  background-position: center 38%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  border-radius: 6px;
}

.process-step {
  padding: 32px;
  border-radius: 6px;
  background: rgba(244,239,231,0.92);
  border: 1px solid rgba(17,17,13,0.1);
  box-shadow: 0 18px 46px rgba(17,17,13,0.08);
}

.process-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(17,17,13,0.18);
  color: #11110d;
  margin-bottom: 18px;
}

.process-step h4 {
  margin: 0;
  font-size: 1.35rem;
}

.gallery-selection {
  background: var(--paper);
}

.gallery-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.gallery-links a {
  color: #11110d;
  border: 1px solid rgba(17,17,13,0.18);
  border-radius: 999px;
  padding: 14px 24px;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  min-height: 260px;
  border-radius: 6px;
  padding: 36px;
  display: grid;
  gap: 16px;
  background-color: rgba(17,17,13,0.16);
  border: 1px solid rgba(255,255,255,0.08);
}

.gallery-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.gallery-card p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.praise-card {
  padding: 48px 42px;
  border-radius: 6px;
  background: #f7f5ef;
  border: 1px solid rgba(17,17,13,0.08);
  max-width: 900px;
  margin: 0 auto;
}

.quote {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #11110d;
}

.author {
  margin: 28px 0 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6a6a;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.pricing-card {
  padding: 32px;
  border-radius: 6px;
  background: #f5f1eb;
  border: 1px solid rgba(17,17,13,0.08);
}

.pricing-card h3 {
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.pricing-card .price {
  margin: 0 0 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: #11110d;
}

.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5c8ab;
}

.pricing-card.highlight {
  background: rgba(213,200,171,0.14);
  border-color: rgba(17,17,13,0.12);
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
}

.contact-copy p {
  margin: 24px 0 0;
  color: #11110d;
  max-width: 40rem;
}

.contact-info {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-info strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #11110d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 16px 18px;
  border-radius: 4px;
  border: 1px solid rgba(17,17,13,0.12);
  background: #f7f5ef;
  color: #11110d;
}

.contact-form textarea {
  min-height: 100px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(17,17,13,0.44);
}

.form-status {
  margin: 0;
  color: #11110d;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer {
  padding: 40px 32px 60px;
  text-align: center;
  color: rgba(244,241,235,0.58);
  font-size: 0.95rem;
}

@media (max-width: 1120px) {
  .hero-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 18px 14px;
  }

  .top-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .top-nav a {
    font-size: 0.74rem;
  }

  .two-column,
  .process-grid,
  .gallery-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 90px 18px 70px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 1.05;
    max-width: 100%;
  }

  .hero-label {
    font-size: 0.78rem;
  }

  .hero p {
    font-size: 0.98rem;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: min(100%, 280px);
  }

  .top-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gallery-grid,
  .process-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Hide decorative background on small screens */
  .process::after { display: none; }
}

@media (max-width: 520px) {
  .hero {
    padding: 80px 16px 60px;
  }

  .hero-header {
    padding: 16px 16px;
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-content: center;
    gap: 10px;
  }

  .top-nav a {
    font-size: 0.75rem;
  }

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

  .hero p {
    max-width: 100%;
    padding: 0 8px;
  }

  .hero-actions {
    gap: 12px;
    width: 100%;
  }

  .button {
    width: min(100%, 100%);
  }

  .featured-logos,
  .gallery-grid,
  .process-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 16px;
  }
}

@media (max-height: 900px) {
  .hero {
    height: calc(100vh - 72px);
    padding: 72px 28px 24px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.06;
  }

  .hero p {
    font-size: 0.95rem;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }
}
