@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,700&family=Fraunces:opsz,wght,SOFT,WONK@9..144,400..700,100,1&display=swap');

:root {
  --bg: #f7f3eb;
  --bg-soft: #fffaf0;
  --ink: #1f1b16;
  --ink-soft: #5d564d;
  --line: #d8ccb9;
  --tiger: #c8782f;
  --moss: #607d57;
  --cream: #f2e6cf;
  --sun: #f0b74f;
  --card: #fffaf2;
  --radius: 20px;
  --shadow: 0 14px 34px rgba(52, 35, 16, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  background: radial-gradient(circle at 8% 5%, #fff2d8 0, transparent 30%),
    radial-gradient(circle at 92% 3%, #e4efe2 0, transparent 26%),
    linear-gradient(180deg, #fcf6eb 0%, #f4eee2 100%);
  color: var(--ink);
  line-height: 1.55;
}

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

.site-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(250, 244, 232, 0.76);
  border-bottom: 1px solid rgba(121, 100, 69, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--sun), var(--tiger));
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  right: 4px;
  top: 5px;
  background: #fff3d4;
}

.links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.links a {
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: 0.25s ease;
}

.links a:hover,
.links a.active {
  color: var(--ink);
  background: rgba(199, 120, 47, 0.14);
}

.menu-btn {
  display: none;
}

main {
  padding-top: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(125deg, #fff6e4, #e8f2e6 50%, #f8e8ca);
  border: 1px solid rgba(130, 105, 66, 0.2);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 60px);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 280px;
  height: 280px;
  right: -70px;
  top: -90px;
  background: rgba(240, 183, 79, 0.35);
}

.hero::after {
  width: 340px;
  height: 340px;
  left: -120px;
  bottom: -150px;
  background: rgba(96, 125, 87, 0.22);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  font-size: 0.8rem;
  color: #7f5930;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: "Fraunces", serif;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.2rem);
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.hero-copy {
  display: grid;
  gap: 20px;
  align-content: center;
  z-index: 1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(130deg, #be6e29, #d08a43);
  color: #fff;
  box-shadow: 0 8px 18px rgba(171, 89, 24, 0.34);
}

.btn.ghost {
  border: 1px solid rgba(46, 41, 34, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.hero-art {
  display: grid;
  gap: 12px;
  z-index: 1;
}

.art-card {
  background: var(--card);
  border: 1px solid rgba(72, 53, 25, 0.16);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(80, 49, 22, 0.11);
  transform-origin: center;
  animation: floatCard 5.5s ease-in-out infinite;
}

.art-card:nth-child(2) {
  animation-delay: 0.9s;
}

.art-card:nth-child(3) {
  animation-delay: 1.8s;
}

.art-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.art-meta {
  font-size: 0.86rem;
  font-weight: 600;
  color: #714f2c;
  padding: 8px 4px 2px;
}

.section {
  margin-top: 34px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(133, 104, 68, 0.18);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 34px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

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

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(104, 77, 44, 0.18);
  border-radius: 16px;
  padding: 16px;
  background: var(--card);
}

.story-step {
  position: relative;
  padding-left: 24px;
}

.story-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--sun), var(--tiger));
}

.story-step strong {
  color: var(--ink);
}

.gallery-mosaic {
  columns: 3 220px;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(108, 86, 57, 0.2);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item .caption {
  padding: 10px 12px;
  font-size: 0.92rem;
  color: #705940;
}

.blog-post {
  display: grid;
  gap: 10px;
}

.blog-meta {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8c7359;
}

.activity-box {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  border: 1px dashed rgba(102, 79, 46, 0.38);
  background: #fff9ed;
}

.activity-result {
  min-height: 56px;
  font-weight: 600;
  color: #5f4d36;
}

.notice {
  padding: 14px;
  border-left: 4px solid #cd7f35;
  background: #fff2de;
  border-radius: 8px;
  color: #6f5637;
}

.footer {
  padding: 30px 0 40px;
  color: #7b6a53;
  font-size: 0.95rem;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.photo-grade {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.photo-grade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background: linear-gradient(
    160deg,
    rgba(244, 183, 92, 0.26) 0%,
    rgba(30, 53, 42, 0.24) 70%,
    rgba(20, 10, 5, 0.3) 100%
  );
}

.photo-grade img {
  filter: contrast(1.08) saturate(1.1) brightness(1.02);
  transform: scale(1.015);
}

.grade-golden img {
  filter: contrast(1.07) saturate(1.16) brightness(1.05) sepia(0.08);
}

.grade-cinematic img {
  filter: contrast(1.12) saturate(1.02) brightness(0.96);
}

.grade-vintage img {
  filter: contrast(1.02) saturate(0.94) brightness(1.04) sepia(0.22);
}

.grade-noir img {
  filter: contrast(1.15) grayscale(0.5) brightness(0.92);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(0.5deg);
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid.cols-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .menu-btn {
    display: inline-flex;
    border: 1px solid rgba(81, 60, 34, 0.22);
    border-radius: 10px;
    background: #fff7eb;
    padding: 8px 10px;
    font-weight: 600;
  }

  .links {
    position: absolute;
    top: 73px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    width: min(230px, calc(100vw - 40px));
    background: #fff9ef;
    border: 1px solid rgba(95, 72, 42, 0.25);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: 0.2s ease;
  }

  .links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .grid.cols-2,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}
