:root {
  --ink: #1e211d;
  --muted: #686f61;
  --paper: #f8f6ef;
  --mist: #e7e8df;
  --sage: #5c6f54;
  --cedar: #8a4f32;
  --gold: #c89b4d;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(30, 33, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(18, 20, 16, 0.74), rgba(18, 20, 16, 0));
}

.brand {
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 0.9;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-family: Inter, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  justify-items: end;
  overflow: hidden;
  background: #1b1c17;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(270deg, rgba(17, 18, 14, 0.88), rgba(17, 18, 14, 0.58) 43%, rgba(17, 18, 14, 0.12)), linear-gradient(0deg, rgba(17, 18, 14, 0.74), rgba(17, 18, 14, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: clamp(118px, 14vh, 170px) clamp(18px, 7vw, 96px) clamp(56px, 9vw, 120px) 0;
  color: var(--white);
  text-align: right;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(4rem, 9vw, 8.8rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.75rem);
}

h3 {
  font-size: 1.7rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  margin-left: auto;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: flex-end;
}

.button,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 253, 248, 0.54);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.instagram-icon,
.facebook-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.facebook-icon {
  stroke-linejoin: round;
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #191a15;
}

.button-secondary {
  color: var(--white);
}

.band {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  background: var(--white);
}

.about-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: inherit;
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.about-content {
  display: grid;
  gap: 24px;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.featured {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  min-height: 620px;
  background: #20231e;
  color: var(--white);
}

.feature-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text {
  align-self: center;
  padding: clamp(36px, 6vw, 72px);
}

.feature-text p:last-child {
  max-width: 480px;
  color: #d7d8cd;
  font-size: 1.05rem;
}

.portfolio {
  background: var(--paper);
}

.centered {
  text-align: center;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 34px auto 36px;
  max-width: 1000px;
}

.filter {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #c8cbbd;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter:hover,
.filter.is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.photo-card {
  position: relative;
  flex: 1 1 320px;
  max-width: 560px;
  min-height: 280px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #d9dacd;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(30, 33, 29, 0.11);
}

.photo-card:nth-child(7n + 1),
.photo-card:nth-child(7n + 5) {
  flex-basis: 520px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo-card:hover img {
  transform: scale(1.045);
}

.photo-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 14px;
  background: linear-gradient(to top, rgba(18, 20, 16, 0.82), rgba(18, 20, 16, 0));
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.sessions {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--mist);
}

.session-panel p:last-child,
.session-list p {
  color: var(--muted);
}

.session-list {
  display: grid;
  gap: 16px;
}

.session-list article {
  padding: 24px;
  border-left: 4px solid var(--cedar);
  background: rgba(255, 253, 248, 0.72);
}

.footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background: #1d211b;
  color: var(--white);
}

.footer-links {
  margin: 0;
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--gold);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
  flex: 0 0 auto;
}

.lightbox {
  width: min(1120px, calc(100% - 28px));
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: #11130f;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-modal {
  width: min(620px, calc(100% - 28px));
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(10, 11, 9, 0.82);
}

.contact-modal::backdrop {
  background: rgba(10, 11, 9, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #11130f;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  color: #e4e1d7;
  font-size: 0.92rem;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: #11130f;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 46px);
}

.contact-form h2 {
  padding-right: 42px;
  font-size: clamp(2.25rem, 6vw, 3.8rem);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8cbbd;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(200, 155, 77, 0.26);
  border-color: var(--gold);
}

.website-field {
  position: absolute;
  left: -9999px;
}

.contact-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .intro,
  .featured,
  .sessions,
  .footer {
    grid-template-columns: 1fr;
  }

  .featured {
    min-height: 0;
  }

  .feature-main img {
    height: min(74vw, 520px);
  }

  .photo-card,
  .photo-card:nth-child(7n + 1),
  .photo-card:nth-child(7n + 5) {
    flex-basis: 320px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: grid;
    padding: 16px;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 88svh;
    align-items: stretch;
  }

  .hero-image {
    object-position: left center;
  }

  .hero-content {
    width: calc(100% - 32px);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: 0 16px 42px;
    padding-top: 116px;
    text-align: left;
  }

  .hero-content .eyebrow {
    position: absolute;
    top: 116px;
    left: 0;
    right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
    padding-top: 150px;
  }

  h2 {
    font-size: 2.45rem;
  }

  .gallery {
    gap: 10px;
  }

  .photo-card,
  .photo-card:nth-child(7n + 1),
  .photo-card:nth-child(7n + 5) {
    flex-basis: 100%;
    min-height: 240px;
  }

  .filters {
    justify-content: flex-start;
  }
}
