:root {
  --bone: #F6F1EA;
  --ink: #1C1A19;
  --plum: #4B2142;
  --plum-dark: #34162E;
  --gold: #C8A24A;
  --line: rgba(28, 26, 25, 0.12);
}

@font-face {
  font-family: "Fraunces";
  src: local("Fraunces");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: "General Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .serif {
  font-family: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */
header.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(246, 241, 234, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-size: 22px;
  letter-spacing: 0.01em;
}
nav.links { display: flex; gap: 36px; font-size: 15px; }
nav.links a { opacity: 0.78; transition: opacity .2s; }
nav.links a:hover { opacity: 1; }
.nav-cta {
  background: var(--plum);
  color: var(--bone);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--plum-dark); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 76px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: 19px;
  max-width: 480px;
  opacity: 0.82;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--plum); color: var(--bone); }
.btn-primary:hover { background: var(--plum-dark); }
.btn-ghost { border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }

.hero-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(28,26,25,0.35);
}
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(246,241,234,0.92);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Section headers */
.section { padding: 110px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { max-width: 360px; opacity: 0.75; font-size: 15px; }
.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum);
  margin-bottom: 14px;
  display: block;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.piece {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4/5;
}
.piece img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.piece:hover img { transform: scale(1.04); }
.piece-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(28,26,25,0.78), transparent);
  color: var(--bone);
  opacity: 0;
  transition: opacity .3s;
}
.piece:hover .piece-info { opacity: 1; }
.piece-info .name { font-family: "Fraunces", serif; font-size: 19px; }
.piece-info .medium { font-size: 12px; opacity: 0.75; margin-top: 4px; }
.piece.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8E1D6;
  border: 1px dashed var(--line);
  color: var(--ink);
  opacity: 0.45;
  font-size: 14px;
}

/* About */
.about-section .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-section img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-section h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 22px; }
.about-section p { margin-bottom: 18px; opacity: 0.85; font-size: 16px; max-width: 520px; }
.pull-line {
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: var(--plum);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
}

/* Tiers */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier-card {
  background: #FFFEFC;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
}
.tier-card .tier-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.tier-card h3 { font-size: 22px; margin-bottom: 10px; }
.tier-card p { font-size: 14px; opacity: 0.78; }

/* Contact / CTA */
.cta-section {
  background: var(--plum);
  color: var(--bone);
  border-radius: 8px;
  padding: 80px 60px;
  text-align: center;
}
.cta-section h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 18px; }
.cta-section p { opacity: 0.8; max-width: 480px; margin: 0 auto 32px; }
.cta-options { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-options .btn-ghost { border-color: var(--bone); }
.cta-options .btn-ghost:hover { background: var(--bone); color: var(--plum); }
.cta-options .btn-primary { background: var(--gold); color: var(--plum-dark); }
.cta-options .btn-primary:hover { background: #DBB85E; }

/* Footer */
footer { padding: 60px 0 40px; border-top: 1px solid var(--line); margin-top: 60px; }
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
}
footer nav { display: flex; gap: 24px; }

@media (max-width: 880px) {
  .hero .wrap, .about-section .wrap { grid-template-columns: 1fr; }
  .gallery-grid, .tiers { grid-template-columns: 1fr 1fr; }
  nav.links { display: none; }
}
@media (max-width: 560px) {
  .gallery-grid, .tiers { grid-template-columns: 1fr; }
  .cta-section { padding: 56px 24px; }
}
