@import url('https://fonts.googleapis.com/css2?family=Capriola&display=swap');

:root {
  /* Global color tokens */
  --bkgd1: #f7e16d;
  --bkgd2: #f5f0c3;
  --type1: #004153;
  --type2: #ff2a5f;
  --acct1: #ffda00;
  --acct2: #008776;
  --lightbox-caption-h: 72px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Capriola", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bkgd1);
  color: var(--acct2);
}

.site-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: var(--bkgd2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 30px;
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(0.9rem, 1vw, 1.1rem) 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  background: transparent;
  border: none;
  color: var(--acct2); /* match title color */
  padding: 8px;
  cursor: pointer;
  transition: opacity 120ms ease;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 4px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.menu-drawer {
  position: absolute;
  right: 1.5rem;
  top: calc(100% + 0.5rem);
  min-width: 180px;
  background: var(--bkgd2);
  color: var(--acct2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.menu-list button,
.menu-list a {
  width: 100%;
  display: block;
  text-align: left;
  background: transparent;
  border: none;
  color: inherit;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.menu-list button:hover,
.menu-list button:focus-visible,
.menu-list a:hover,
.menu-list a:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.site-logo {
  --logo-mask: url("/assets/header-logo.svg");
  position: relative;
  height: clamp(58px, 10vw, 116px);
  aspect-ratio: 865.85 / 155.91;
  max-width: 100%;
  color: var(--acct2);        /* THIS sets the logo color */
  cursor: pointer;
}

.site-logo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;

  background-color: currentColor;

  -webkit-mask-image: var(--logo-mask);
          mask-image: var(--logo-mask);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.site-logo-subtitle {
  position: absolute;
  left: 0;
  top: calc(100% + 0.6rem);
  font-size: clamp(0.9rem, 1.3vw, 1.20rem);
  letter-spacing: 0.12em;
  color: currentColor;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  padding-bottom: 0.1rem;
}

@media (max-width: 480px) {
  .site-header-inner {
    padding: 0.65rem 0.85rem;
    gap: 0.5rem;
  }
  .site-logo {
    flex: 1 1 auto;
    min-width: 0;
    height: clamp(48px, 12vw, 86px);
    max-width: 72vw;
  }
  .site-logo-subtitle {
    font-size: clamp(0.78rem, 3vw, 0.95rem);
    top: calc(100% + 0.45rem);
  }
  .menu-toggle {
    flex: 0 0 auto;
  }
}


main {
  flex: 1;
}

/* Sections */
.section {
  width: 100%;
  padding: 2rem 1.5rem;
  background: var(--section-bg, var(--bkgd1));
  color: var(--section-color, var(--type1));
  font-weight: var(--section-weight, 400);
  scroll-margin-top: 90px; /* offset for sticky header */
}

.section + .section {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.gallery-collection {
  display: grid;
  gap: 2rem;
}

.custom-tote-content {
  margin-bottom: 3rem;
}

.gallery-block {
  display: grid;
  gap: 0.75rem;
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.gallery-block-title {
  font-weight: 700;
  font-size: 1.4rem;
}

.about-content .wave {
  display: block;
  width: 100%;
  max-width: 580px;
  height: 10px;
  margin: 1rem 0 0.75rem 0;
  stroke: currentColor;
}

.about-content .wave path {
  stroke: currentColor;
  stroke-width: 4;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 0;
  background: transparent;
  margin-bottom: 0.2rem;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0;
}

.gallery-action {
  background: transparent;
  color: var(--section-color, var(--acct2));
  border: none;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 120ms ease, opacity 120ms ease;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.gallery-action svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: currentColor;
  stroke-width: 8;
  stroke-linecap: round;
  fill: none;
}

.gallery-action:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.gallery-action:focus-visible {
  outline: 2px solid var(--section-color, var(--acct2));
  outline-offset: 2px;
}

.gallery-track {
  display: flex;
  gap: 0;
  transition: transform 320ms ease;
  touch-action: pan-y;
}

.gallery-slide {
  flex: 0 0 auto;
  cursor: pointer;
  user-select: none;
}

.gallery-img {
  display: block;
  height: 260px;
  width: auto;
}

.apparel-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 1.25rem;
  border-radius: 16px;
  padding: 0.75rem 0;
}

.logo-track {
  display: flex;
  gap: 0;
  align-items: center;
  will-change: transform;
  touch-action: pan-y;
}

.logo-slide {
  flex: 0 0 auto;
  display: block;
}

.logo-slide a {
  display: block;
  padding: 0;
}

.logo-img {
  display: block;
  height: 112px;
  width: auto;
  object-fit: contain;
}

.gallery-title {
  padding: 0.75rem 0.5rem 1.25rem;
  font-weight: 600;
  color: inherit;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2000;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  position: relative;
  background: transparent;
  color: var(--type1);
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  display: inline-block;
  padding-bottom: var(--lightbox-caption-h);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  margin: 0 auto;
}

@media (min-aspect-ratio: 4/3) {
  /* Wide screens: height-driven */
  .lightbox-content {
    height: 100vh;
    max-height: 100vh;
  }
  .lightbox img {
    height: calc(100vh - var(--lightbox-caption-h));
    width: auto;
    max-width: 100vw;
    max-height: calc(100vh - var(--lightbox-caption-h));
  }
}

@media (max-aspect-ratio: 4/3) {
  /* Tall screens: width-driven */
  .lightbox-content {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    max-height: 100vh;
  }
  .lightbox img {
    width: 100vw;
    height: auto;
    max-height: calc(100vh - var(--lightbox-caption-h));
    max-width: 100vw;
  }
}

.lightbox-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background: var(--bkgd2);
  height: var(--lightbox-caption-h);
  padding: 0.8rem 1.25rem 1rem;
  font-weight: 700;
  color: var(--type1);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bkgd2);
  color: var(--type1);
  font-size: 20px;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--type2);
  outline-offset: 2px;
}

body.no-scroll {
  overflow: hidden;
}

.site-footer {
  background: var(--bkgd2);
  color: var(--type1);
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
  color: inherit;
}

h2 { margin: 0.5rem 0 1rem; }
p  { margin: 0.5rem 0 1rem; }
a  { color: var(--acct2); }
a:hover, a:focus-visible { color: var(--acct2); }

.embedded-wrap {
  width: 100%;
  overflow: hidden;
}

.embedded-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  overflow: hidden;
}

.section-quoter {
  padding: 0;
}

.section-quoter .section-inner {
  max-width: none;
  padding: 0;
}
