:root {
  --bg: #ffffff;
  --text: #2b2a28;
  --text-dim: #5c584f;
  --border: #ece7dc;

  --terracotta: #e2703a;
  --teal: #1f9d8a;
  --gold: #eab308;
  --coral: #ef5f74;
  --sage: #6a9b5a;
  --sky: #3b8fd4;
  --plum: #8b5cd6;

  --notice-bg: #fff4e0;
  --notice-border: var(--gold);
  --story-bg: #fbf6ee;
}

* { box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
}

a {
  color: var(--sky);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--terracotta);
}

.notice {
  background: var(--notice-bg);
  border-bottom: 3px solid var(--notice-border);
  padding: 0.9rem 1.25rem;
  text-align: center;
}

.notice p {
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  font-size: 0.95rem;
  color: var(--text);
}

.notice strong {
  color: var(--terracotta);
}

.hero {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  background: linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
  border-bottom: 6px solid;
  border-image: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage), var(--teal), var(--sky), var(--plum), var(--coral)) 1;
}

.hero h1 {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.01em;
  margin: 0 0 1.1rem;
  background: linear-gradient(90deg, var(--terracotta), var(--coral) 30%, var(--gold) 55%, var(--teal) 80%, var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.tag.c1 { background: var(--terracotta); }
.tag.c2 { background: var(--sky); }
.tag.c3 { background: var(--plum); }
.tag.c4 { background: var(--sage); }
.tag.c5 { background: var(--coral); }

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 2.5rem 0 0.5rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.gallery figure:nth-child(1) { outline: 3px solid var(--terracotta); outline-offset: -3px; }
.gallery figure:nth-child(2) { outline: 3px solid var(--teal); outline-offset: -3px; }
.gallery figure:nth-child(3) { outline: 3px solid var(--gold); outline-offset: -3px; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

section {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
}

section.gallery {
  border-top: none;
}

h2 {
  font-family: Georgia, "Iowan Old Style", serif;
  color: var(--terracotta);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.story {
  background: var(--story-bg);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
  margin: 1.5rem 0;
  border-top: none;
}

.story h2 {
  color: var(--teal);
}

.story p {
  color: var(--text);
}

.contact h2 {
  color: var(--sky);
}

.contact p {
  margin: 0.35rem 0;
  color: var(--text-dim);
}

footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

footer a {
  color: var(--teal);
}
