:root {
  --ink: #111111;
  --charcoal: #1b1b1d;
  --paper: #f7f2ea;
  --sand: #e7dccb;
  --clay: #c26b3a;
  --fog: rgba(17, 17, 17, 0.06);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top, #f9efe2 0%, #f6f2ee 35%, #efe9e0 100%);
  color: var(--ink);
  min-height: 100vh;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  position: sticky;
  top: 0;
  background: rgba(249, 242, 234, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: 14px;
  font-size: 0.85rem;
}

.cta {
  border: 1px solid var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  background: var(--ink);
  color: var(--paper);
}

.hero {
  padding: 80px 8vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 107, 58, 0.25), transparent 70%);
  right: 8vw;
  top: -120px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lede {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.ghost {
  border: 1px solid var(--ink);
}

.button.is-sold-out {
  opacity: 0.5;
  cursor: not-allowed;
}

.subheading-link {
  margin-bottom: 24px;
}

.hero-panel {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.panel-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.panel-card[href]:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.18);
}

.section {
  padding: 70px 8vw;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.print-thumb {
  border-radius: 16px;
  overflow: hidden;
  margin: -8px -8px 16px;
  box-shadow: var(--shadow);
}

.print-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.18);
}

.card.highlight {
  background: var(--charcoal);
  color: var(--paper);
}

.rates-card {
  margin-top: 24px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.rates-note {
  margin: 6px 0 0;
  font-size: 0.95rem;
  opacity: 0.75;
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.small-note {
  margin-top: 12px;
  font-size: 0.95rem;
  opacity: 0.75;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 600;
}

.photo-card .photo-placeholder {
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(120deg, #c26b3a, #e7dccb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-weight: 600;
  margin-bottom: 16px;
}

.photo-card .photo-hero {
  background-size: cover;
  background-position: center;
  color: transparent;
}

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

.gallery-item {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item .caption {
  padding: 14px 18px 18px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact {
  background: linear-gradient(120deg, rgba(194, 107, 58, 0.15), transparent);
}

.contact-card {
  background: var(--charcoal);
  color: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prints-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer {
  padding: 32px 8vw 40px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.6);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
  }

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

@media (max-width: 600px) {
  .hero {
    padding-top: 56px;
  }

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