:root {
  --ink: #261f1b;
  --muted: #675f55;
  --paper: #fffaf4;
  --soft: #f3e5d6;
  --sage: #71836c;
  --teal: #2f7478;
  --aqua: #1f9ec7;
  --sky: #6fcbe4;
  --coral: #cc715f;
  --peach: #f2a36e;
  --berry: #8e3f58;
  --plum: #5e2b69;
  --honey: #c8934e;
  --mint: #b9d8a6;
  --line: rgba(38, 31, 27, 0.14);
  --shadow: 0 24px 70px rgba(38, 31, 27, 0.16);
  --content-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(111, 203, 228, 0.22), transparent 30rem),
    radial-gradient(circle at 95% 12%, rgba(242, 163, 110, 0.18), transparent 28rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.94), rgba(248, 236, 226, 0.9)),
    rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(142, 63, 88, 0.16);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  display: flex;
  width: min(100%, var(--content-max));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--aqua) 58%, var(--peach));
  border-radius: 50%;
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  box-shadow: 0 8px 18px rgba(31, 158, 199, 0.26);
}

.nav-links {
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--peach), var(--aqua), var(--berry));
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 55vh;
  overflow: hidden;
  isolation: isolate;
  padding: 132px clamp(18px, 7vw, 96px) 70px;
  background: var(--paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background: url("thumb/booth.jpg") center / cover no-repeat;
  opacity: 0.25;
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 84% 18%, rgba(31, 158, 199, 0.28), transparent 24rem),
    radial-gradient(circle at 48% 88%, rgba(242, 163, 110, 0.28), transparent 28rem),
    linear-gradient(130deg, rgba(243, 229, 214, 0.92), rgba(255, 250, 244, 0.5) 46%, rgba(185, 216, 166, 0.52));
}

.hero-inner {
  display: grid;
  width: min(100%, var(--content-max));
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
}

.hero-media {
  display: grid;
  min-height: clamp(280px, 34vw, 480px);
  place-items: center;
}

.hero-logo {
  width: min(72%, 390px);
  filter: drop-shadow(0 18px 34px rgba(38, 31, 27, 0.16));
}

.eyebrow,
.mini-label {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--berry);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  line-height: 0.98;
  font-weight: 650;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  box-shadow: 0 14px 34px rgba(31, 158, 199, 0.28);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(142, 63, 88, 0.2);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.intro-band {
  background:
    linear-gradient(120deg, rgba(94, 43, 105, 0.94), rgba(47, 116, 120, 0.95) 58%, rgba(200, 147, 78, 0.9)),
    var(--ink);
  color: #fff;
  padding: 34px clamp(18px, 6vw, 72px);
}

.intro-grid {
  display: grid;
  max-width: var(--content-max);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.intro-grid article {
  padding-right: 22px;
}

.intro-grid h2 {
  margin-bottom: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.intro-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(68px, 9vw, 112px) clamp(18px, 6vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.custom-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.product-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.2), rgba(232, 247, 251, 0.48)),
    var(--paper);
}

.product-grid {
  display: grid;
  max-width: var(--content-max);
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(38, 31, 27, 0.1);
  border-top: 5px solid var(--aqua);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(38, 31, 27, 0.08);
}

.product-card:nth-child(6n + 1) {
  border-top-color: var(--aqua);
}

.product-card:nth-child(6n + 2) {
  border-top-color: var(--peach);
}

.product-card:nth-child(6n + 3) {
  border-top-color: var(--mint);
}

.product-card:nth-child(6n + 4) {
  border-top-color: var(--berry);
}

.product-card:nth-child(6n + 5) {
  border-top-color: var(--plum);
}

.product-card:nth-child(6n + 6) {
  border-top-color: var(--honey);
}

.product-art {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(111, 203, 228, 0.24), rgba(242, 163, 110, 0.2)),
    var(--soft);
}

.product-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-art:hover img,
.product-art:focus-visible img {
  transform: scale(1.035);
}

.product-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-copy h3,
.product-copy a {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.product-copy a,
.event-item a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.custom-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 163, 110, 0.3), transparent 24rem),
    linear-gradient(135deg, #eef8f9, #f7f1e6 48%, #eef4ee);
}

.custom-inner {
  display: grid;
  width: min(100%, var(--content-max));
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 7vw, 90px);
  margin: 0 auto;
}

.custom-copy {
  max-width: 760px;
}

.request-panel {
  padding: 30px;
  border: 1px solid rgba(31, 158, 199, 0.22);
  border-top: 5px solid var(--peach);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 244, 0.94)),
    #fff;
  box-shadow: var(--shadow);
}

.request-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.request-panel li {
  padding-left: 24px;
  background: linear-gradient(90deg, var(--aqua), var(--peach)) 0 0.68em / 10px 2px no-repeat;
  color: var(--muted);
}

.events-section {
  background:
    linear-gradient(180deg, #fff, #fff7ef 54%, #f1fbfd);
}

.section-heading.compact {
  max-width: 680px;
}

.event-list {
  display: grid;
  max-width: var(--content-max);
  margin: 0 auto;
  gap: 14px;
}

.event-item {
  display: grid;
  grid-template-columns: 98px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(38, 31, 27, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(38, 31, 27, 0.06);
}

.event-item time {
  display: grid;
  min-height: 70px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--plum));
  font-weight: 800;
}

.event-item:nth-child(2) time {
  background: linear-gradient(135deg, var(--teal), var(--aqua));
}

.event-item:nth-child(3) time {
  background: linear-gradient(135deg, var(--honey), var(--peach));
}

.event-item:nth-child(4) time {
  background: linear-gradient(135deg, var(--mint), var(--sage));
}

.event-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 163, 110, 0.35), transparent 24rem),
    linear-gradient(135deg, var(--plum), var(--teal) 52%, #1f7f8d);
}

.contact-inner {
  display: grid;
  width: min(100%, var(--content-max));
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(28px, 6vw, 72px);
  margin: 0 auto;
}

.contact-copy h2 {
  max-width: 840px;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(14, 55, 58, 0.28);
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 2px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-type="success"] {
  border-color: rgba(185, 216, 166, 0.72);
  background: rgba(185, 216, 166, 0.18);
}

.form-status[data-type="error"] {
  border-color: rgba(242, 163, 110, 0.78);
  background: rgba(242, 163, 110, 0.18);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.contact-form .contact-actions {
  margin-top: 8px;
}

.contact-section .button.primary {
  color: var(--plum);
  background: linear-gradient(135deg, #fff, #e8f7fb);
  box-shadow: none;
}

.contact-section .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 26px clamp(18px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer-inner {
  display: flex;
  width: min(100%, var(--content-max));
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 800;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-socials a[href*="facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .intro-grid,
  .custom-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
    justify-items: start;
  }

  .hero-logo {
    width: min(68%, 320px);
  }


  .contact-inner,
  .site-footer-inner {
    align-items: flex-start;
  }
}

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

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .event-item {
    grid-template-columns: 1fr;
  }

  .event-item time {
    width: 98px;
  }
}