:root {
  --bg: #f7f4ef;
  --bg-soft: #f1ece4;
  --surface: rgba(255, 252, 247, 0.8);
  --surface-strong: #fffdfa;
  --text: #4d4338;
  --muted: #7a6c5e;
  --line: rgba(122, 108, 94, 0.18);
  --sage: #8a9784;
  --sage-deep: #65715f;
  --gold: #c8a25b;
  --shadow: 0 20px 45px rgba(92, 74, 52, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(138, 151, 132, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(200, 162, 91, 0.08), transparent 22%),
    var(--bg);
  line-height: 1.6;
}

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

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

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

.section {
  padding: 5rem 0;
  position: relative;
}

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  background: rgba(138, 151, 132, 0.24);
  top: 8rem;
  left: -8rem;
}

.page-glow-right {
  background: rgba(200, 162, 91, 0.22);
  top: 28rem;
  right: -10rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 239, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(122, 108, 94, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
}

.nav-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.3rem;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--text);
  margin: 0.24rem 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding-top: 4rem;
}

.hero-inner {
  text-align: center;
  max-width: 880px;
}

.hero-logo {
  width: min(92vw, 640px);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 22px 36px rgba(102, 88, 72, 0.08));
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.77rem;
  color: var(--sage-deep);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 0.95;
  font-weight: 600;
}

.hero-copy,
.section-heading p,
.about-copy p,
.site-footer p,
.intro-grid p,
.about-panel p {
  color: var(--muted);
}

.hero-copy {
  max-width: 720px;
  margin: 1.2rem auto 0;
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible,
.shop-card:hover,
.shop-card:focus-visible,
.gallery-item:hover,
.gallery-item:focus-within,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}

.intro-band {
  padding-top: 2rem;
}

.intro-grid,
.about-grid,
.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.intro-grid {
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
}

.intro-card,
.about-panel,
.shop-card,
.social-link,
.gallery-item {
  background: var(--surface);
  border: 1px solid rgba(122, 108, 94, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-card,
.about-panel {
  padding: 1.7rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

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

.shop-card {
  position: relative;
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-card h3 {
  margin: 1rem 0 0.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
}

.shop-card p {
  margin: 0;
  color: var(--muted);
}

.shop-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(200, 162, 91, 0.16);
  color: #886638;
  border: 1px solid rgba(200, 162, 91, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.shop-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(122, 108, 94, 0.1);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.shop-logo-sumup {
  color: #111;
  font-family: "Inter", sans-serif;
}

.shop-logo-folksy {
  color: #3f8f7b;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  text-transform: lowercase;
}

.shop-logo-etsy {
  color: #f16521;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.preferred {
  outline: 1px solid rgba(200, 162, 91, 0.28);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery-item.tall {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item.tall img {
  aspect-ratio: 1 / 1.45;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item:not(.wide):not(.tall) {
  grid-column: span 4;
}

.about-grid {
  grid-template-columns: 1.4fr 0.9fr;
  align-items: start;
}

.about-copy h2,
.site-footer h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.3rem);
  margin-bottom: 1rem;
}

.about-panel h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  padding: 1rem 1.4rem;
  min-width: 180px;
  text-align: center;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-footer {
  padding-top: 2rem;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  border-top: 1px solid rgba(122, 108, 94, 0.12);
  padding-top: 2.2rem;
}

.footer-note {
  color: var(--muted);
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 900px) {
  .shop-grid,
  .intro-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item:not(.wide):not(.tall) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid rgba(122, 108, 94, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item:not(.wide):not(.tall) {
    grid-column: auto;
  }

  .gallery-item img,
  .gallery-item.tall img {
    aspect-ratio: 1 / 1;
  }

  .hero-logo {
    width: min(96vw, 520px);
  }

  .footer-note {
    text-align: left;
  }
}
