:root {
  --bg: #f4efe7;
  --bg-soft: #efe3d2;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf3;
  --text: #1f1a17;
  --muted: #62564e;
  --accent: #9f4f2d;
  --accent-dark: #7c3517;
  --accent-soft: #e7b49c;
  --sage: #4f5a43;
  --mint: #efe3d2;
  --tan: #d9b99a;
  --brown: #62564e;
  --sky: #dba7a8;
  --gold: #f2bc90;
  --pine: #4f5a43;
  --navy: #1f1a17;
  --violet: #f3d7cf;
  --rose: #9f4f2d;
  --line: rgba(31, 26, 23, 0.1);
  --shadow: 0 24px 60px rgba(70, 42, 18, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 122, 73, 0.18), transparent 32%),
    linear-gradient(180deg, #f8f2e8 0%, var(--bg) 55%, #eadac4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: 0.25;
}

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

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  backdrop-filter: blur(14px);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.75);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero,
.about {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero {
  padding: 4rem 0 2rem;
  min-height: calc(100vh - 6rem);
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 6%;
  top: -0.75rem;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(159, 79, 45, 0.24);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.65rem, 5.4vw, 4.5rem);
}

.hero h1 {
  max-width: 12.5ch;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading h2 {
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 13ch;
}

.pricing-card h3,
.collection-card h3,
.gallery-copy h3,
.service-card h3 {
  line-height: 1.12;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-text,
.section-heading p:last-child,
.service-card p,
.process-step p,
.about-copy p:last-child,
.contact-panel p:last-of-type,
.card-note,
.site-footer,
.site-nav a,
.quote-card span {
  line-height: 1.7;
}

.hero-text,
.about-copy p:last-child,
.contact-panel p:last-of-type {
  max-width: 56ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sage);
  color: #fffdf9;
}

.button-primary:hover {
  background: #3f4935;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.6);
  color: var(--navy);
}

.hero-card,
.feature-band,
.service-card,
.process-step,
.quote-card,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.stat + .stat {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.stat-label,
.card-note,
.service-card p,
.process-step p,
.quote-card span {
  color: var(--muted);
}

.card-note {
  margin: 1.6rem 0 0;
}

.section {
  padding: 4rem 0;
}

.feature-band {
  margin: 1rem 0 2rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.feature-band p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
}

.feature-band span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-band::after {
  content: "";
  position: absolute;
  right: -2rem;
  top: -1.5rem;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(231, 180, 156, 0.52), transparent 65%);
}

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

.service-grid,
.process-list,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card,
.process-step,
.pricing-card {
  min-height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.service-card:nth-child(2) {
  transform: translateY(18px);
}

.service-card:nth-child(3) {
  transform: rotate(-1deg);
}

.pricing-card {
  border: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.92);
  box-shadow: var(--shadow);
}

.price {
  margin: 1rem 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--accent-dark);
}

.pricing-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.collection-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 246, 0.9);
  box-shadow: var(--shadow);
}

.pricing-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "forest backlit color dream"
    "forest statement statement dream"
    "open statement statement camera";
  gap: 1.25rem;
  grid-auto-rows: 240px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-card-forest {
  grid-area: forest;
}

.gallery-card-backlit {
  grid-area: backlit;
}

.gallery-card-color {
  grid-area: color;
}

.gallery-card-open {
  grid-area: open;
}

.gallery-card-statement {
  grid-area: statement;
}

.gallery-card-dream {
  grid-area: dream;
}

.gallery-card-camera {
  grid-area: camera;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
  cursor: zoom-in;
}

.gallery-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem 1.2rem;
  color: #fffaf5;
  background: linear-gradient(180deg, transparent, rgba(24, 18, 16, 0.82) 55%);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.gallery-tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(159, 79, 45, 0.12);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card:hover .gallery-image,
.gallery-card:focus-within .gallery-image {
  transform: scale(1.03);
}

.gallery-card:hover .gallery-copy,
.gallery-card:focus-within .gallery-copy {
  opacity: 1;
  transform: translateY(0);
}

.gallery-feature {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-feature-image {
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform 400ms ease;
}

.gallery-feature:hover .gallery-feature-image,
.gallery-feature:focus-within .gallery-feature-image {
  transform: scale(1.02);
}

.gallery-feature:hover .gallery-copy,
.gallery-feature:focus-within .gallery-copy {
  opacity: 1;
  transform: translateY(0);
}

.gallery-copy h3,
.gallery-copy p {
  color: inherit;
}

.gallery-copy h3 {
  margin-top: 0;
}

.gallery-copy p {
  margin: 0.45rem 0 0;
  line-height: 1.6;
}

.gallery-image-sunset {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.22)),
    radial-gradient(circle at 50% 20%, rgba(255, 220, 163, 0.85), transparent 24%),
    linear-gradient(180deg, #f2bc90 0%, #d8775a 52%, #6e463d 100%);
}

.gallery-image-studio {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(180deg, #f3d7cf 0%, #dba7a8 100%);
}

.gallery-image-street {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.08), rgba(24, 24, 24, 0.28)),
    linear-gradient(135deg, #d9b58d 0%, #b45f4a 48%, #513738 100%);
}

.gallery-image-lifestyle {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(120deg, #efdcc6 0%, #d9b99a 45%, #ab715b 100%);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.about {
  gap: 1.5rem;
}

.about-kelly {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.about-kelly-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-kelly-image img {
  display: block;
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  object-fit: cover;
  object-position: 42% center;
}

.gallery-image-camera {
  object-position: center 18%;
}

.about-kelly-copy {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-kelly-copy p:not(.eyebrow) {
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote-card,
.contact-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 180, 156, 0.42), transparent 68%);
}

.quote-card p {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

.site-footer {
  padding: 1rem 0 3rem;
  color: var(--muted);
  text-align: center;
}

.booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 25, 23, 0.12);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(111, 129, 100, 0.18);
  border-color: rgba(111, 129, 100, 0.28);
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.contact-email {
  color: var(--navy);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(20, 16, 14, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(100%, 1180px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 250, 243, 0.12);
  color: #fffaf5;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero,
  .about,
  .about-kelly,
  .experience-grid,
  .service-grid,
  .process-list,
  .pricing-grid,
  .collections-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: auto;
    grid-template-areas: none;
  }

  .gallery-card {
    grid-column: auto;
    grid-row: auto;
    grid-area: auto;
  }

  .gallery-image {
    height: 320px;
  }

  .gallery-copy {
    opacity: 1;
    transform: none;
  }

  .gallery-feature-image {
    height: 320px;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-card,
  .quote-card,
  .contact-panel {
    padding: 1.5rem;
  }

  .hero-copy::after {
    width: 72px;
    height: 72px;
    right: 0;
    top: -1rem;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}
