.hero-arrow {
  width: 52px;
  height: 52px;
  top: 50%;
  bottom: auto;
  z-index: 4;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  margin: 0;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.carousel-control-prev.hero-arrow {
  left: 24px;
  right: auto;
}
.carousel-control-next.hero-arrow {
  left: auto;
  right: 24px;
}
.hero-arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.hero-arrow i {
  font-size: 19px;
}
.contact-page {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
}
.contact-page h1 {
  font-size: clamp(60px, 8vw, 110px);
}
.contact-lead {
  color: #53665b;
  max-width: 440px;
  font-size: 18px;
  margin: 34px 0;
}
.contact-signoff {
  font:
    600 28px "Fraunces",
    serif;
  margin-top: 85px;
}
.contact-signoff em {
  color: var(--coral);
}
@media (max-width: 767.98px) {
  .hero-arrow {
    width: 44px;
    height: 44px;
  }
  .carousel-control-prev.hero-arrow {
    left: 16px;
    right: auto;
  }
  .carousel-control-next.hero-arrow {
    left: auto;
    right: 16px;
  }
  .contact-page {
    display: block;
  }
  .contact-page-details {
    padding-top: 64px;
  }
  .contact-signoff {
    margin-top: 60px;
  }
}
/* Full-viewport hero without the announcement strip. */
.hero-section,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  min-height: 100vh;
}
:root {
  --ink: #17352d;
  --forest: #234d3c;
  --moss: #9eb394;
  --paper: #f6f2e9;
  --coral: #ef775f;
  --yellow: #f3c85b;
  --line: rgba(23, 53, 45, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
.site-width {
  max-width: 1240px;
  margin: 0 auto;
}
.topline {
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4vw;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topline a {
  color: #fff;
  text-decoration: none;
}
.topline i {
  margin-left: 4px;
}
.site-nav {
  background: var(--paper);
  padding: 20px 4vw;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
}
.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.site-logo-header {
  height: 48px;
}
.brand-mark {
  font-family: "DM Sans", sans-serif;
  color: var(--coral);
  font-size: 25px;
  margin-right: 4px;
}
.brand-dot {
  color: var(--coral);
}
.nav-link {
  color: var(--ink);
  font-size: 14px;
}
.nav-link:hover,
.text-link:hover {
  color: var(--coral);
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.nav-cta {
  background: var(--coral);
  color: #fff;
  border-radius: 2px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  color: #fff;
}
.hero-section {
  position: relative;
  min-height: calc(100vh - 92px);
}
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  min-height: calc(100vh - 92px);
  height: calc(100vh - 92px);
}
.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 22, 0.3) 0%, rgba(10, 30, 22, 0.75) 50%, rgba(10, 30, 22, 0.4) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow.accent {
  color: var(--coral);
}
h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.98;
  margin: 0;
}
h1 {
  font-size: clamp(60px, 8vw, 114px);
  max-width: 960px;
}
h2 {
  font-size: clamp(43px, 5vw, 72px);
}
h3 {
  font-size: 34px;
}
em {
  font-style: normal;
  color: var(--yellow);
}
.hero-copy {
  font-size: 18px;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.88);
  margin: 27px 0 31px;
}
.button {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 2px;
}
.button-light {
  background: #fff;
  color: var(--ink);
}
.button-light:hover {
  background: var(--yellow);
  color: var(--ink);
}
.button-coral {
  background: var(--coral);
  color: #fff;
}
.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: 20px 5vw;
  color: #fff;
  background: var(--ink);
  border-top: 4px solid var(--coral);
  box-shadow: 0 -8px 30px rgba(23, 53, 45, 0.2);
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.cookie-banner-title,
.cookie-banner-text {
  margin: 0;
}
.cookie-banner-title {
  color: var(--yellow);
  font-weight: 700;
}
.cookie-banner-text {
  max-width: 760px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}
.cookie-button {
  min-width: 96px;
  justify-content: center;
  text-align: center;
}
.cookie-banner .button-light {
  color: var(--ink);
}
.hero-note {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  right: 5vw;
  color: #fff;
  display: flex;
  gap: 13px;
  align-items: center;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.hero-note .line {
  width: 58px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}
.carousel-indicators {
  justify-content: center;
  margin-bottom: 28px;
}
.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 2px;
  border: 0;
  margin-right: 7px;
}
.section-pad {
  padding: 50px 4vw;
}
.story-section {
  background: #f6f2e9;
}
.story-row {
  margin-bottom: 145px;
}
.story-row:last-child {
  margin-bottom: 0;
}
.story-row-reverse {
  padding-top: 0;
}
.image-frame {
  height: 670px;
  position: relative;
  overflow: hidden;
}
.image-frame:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
.image-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.frame-sun img {
  object-position: center 42%;
}
.frame-leaf img {
  object-position: center 52%;
}
.story-copy p:not(.eyebrow) {
  color: #506059;
  margin: 25px 0;
}
.text-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 5px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  gap: 9px;
}
.mini-facts {
  display: flex;
  gap: 40px;
  margin-top: 39px;
}
.mini-facts div {
  display: flex;
  flex-direction: column;
}
.mini-facts strong {
  font:
    600 35px "Fraunces",
    serif;
  color: var(--coral);
}
.mini-facts span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #64746c;
}
.toys-section {
  background: #dce4d6;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 260px;
  margin: 0;
  color: #53665b;
  font-size: 14px;
}
.toy-card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 520px;
  color: #fff;
  text-decoration: none;
  background: var(--forest);
}
.toy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(1);
}
.toy-card:hover img {
  transform: scale(1.06);
}
.toy-overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(9, 31, 24, 0.8), transparent 65%);
}
.toy-overlay > span:first-child {
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.toy-overlay h3 {
  color: #fff;
  margin-bottom: 19px;
}
.toy-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.toy-link i {
  color: var(--yellow);
  margin-left: 7px;
}
.benefits-section {
  background: #dce4d6;
  padding: 42px 4vw;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  height: 100%;
}
.benefit-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font-size: 21px;
}
.benefit-item p {
  max-width: 295px;
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}
.instagram-banner {
  background: var(--yellow);
  padding: 62px 4vw;
}
.instagram-banner h2 {
  font-size: clamp(34px, 4vw, 54px);
}
.contact-section {
  background: var(--paper);
}
.contact-details p {
  color: #53665b;
  max-width: 350px;
  margin-bottom: 27px;
}
.contact-details a {
  display: block;
  color: var(--ink);
  font:
    600 24px "Fraunces",
    serif;
  text-decoration: none;
  margin: 7px 0;
}

.contact-details .button-coral {
  color: #fff;
  border-radius: 0px;
}

.contact-details .button-coral:hover {
  background: var(--coral);
}

.contact-note {
  display: block;
  color: #78857f;
  font-size: 12px;
  margin-top: 27px;
}
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  padding: 24px 4vw;
}
footer a {
  color: #fff;
  text-decoration: none;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
}
.site-logo-footer {
  height: 42px;
}
.gallery-nav {
  border-bottom: 1px solid var(--line);
}
.gallery-page {
  min-height: calc(100vh - 150px);
}
.gallery-page h1 {
  font-size: clamp(60px, 9vw, 120px);
  margin-bottom: 22px;
}
.gallery-intro {
  color: #53665b;
  max-width: 900px;
  margin-bottom: 85px;
}
.gallery-group {
  margin-bottom: 100px;
  scroll-margin-top: 30px;
}
.gallery-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 17px;
  margin-bottom: 20px;
}
.gallery-title h2 {
  font-size: 42px;
}
.gallery-title span {
  font-size: 13px;
  color: #65736c;
}
.gallery-group img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.gallery-card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 320px;
  color: #fff;
  background: var(--forest);
  text-decoration: none;
}
.gallery-card img {
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.06);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(9, 31, 24, 0.88), transparent 50%);
}
.gallery-card-overlay strong {
  color: #fff;
  font:
    600 24px "Fraunces",
    serif;
}
.gallery-card-overlay small {
  margin-top: 7px;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-card-overlay i {
  margin-left: 5px;
}
.product-page {
  min-height: calc(100vh - 150px);
}
.product-heading {
  max-width: 670px;
  margin-bottom: 48px;
}
.product-back {
  display: inline-block;
  margin-bottom: 52px;
}
.product-heading h2 {
  margin: 12px 0 18px;
  font-size: clamp(52px, 8vw, 100px);
}
.product-description {
  max-width: 900px;
  color: #53665b;
}
.product-viewer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 18px;
  align-items: start;
}
.product-main-image {
  position: relative;
  overflow: hidden;
  height: min(70vh, 680px);
  background: var(--forest);
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-50%);
}
.product-arrow-prev {
  left: 18px;
}
.product-arrow-next {
  right: 18px;
}
.product-thumbnails {
  display: grid;
  gap: 12px;
}
.product-thumbnails button {
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  background: var(--paper);
}
.product-thumbnails button.is-active {
  border-color: var(--coral);
}
.product-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-cta {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 35px;
}
.gallery-cta p {
  font:
    600 34px "Fraunces",
    serif;
  margin: 0;
}
@media (max-width: 767.98px) {
  .cookie-banner {
    padding: 18px 6vw;
  }
  .cookie-banner-content {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
  }
  footer .container {
    align-items: center;
    text-align: center;
  }
  .topline {
    padding: 8px 5vw;
  }
  .topline span {
    display: none;
  }
  .topline {
    justify-content: flex-end;
  }
  .site-nav {
    padding: 16px 5vw;
  }
  .hero-section,
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    min-height: 660px;
    height: 660px;
  }
  .hero-content {
    padding: 0 8vw;
    justify-content: center;
    padding-bottom: 105px;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-copy {
    font-size: 16px;
    margin: 20px 0;
  }
  .hero-note {
    display: none;
  }
  .section-pad {
    padding: 78px 6vw;
  }
  .story-row {
    margin-bottom: 85px;
  }
  .story-row-reverse {
    padding-top: 0;
  }
  .story-row .image-frame {
    height: 430px;
    margin-bottom: 48px;
  }
  .story-row-reverse .image-frame {
    margin-bottom: 48px;
  }
  .story-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .mini-facts {
    gap: 20px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 15px;
  }
  .toy-card {
    height: 420px;
  }
  .benefits-section {
    padding: 38px 6vw;
  }
  .benefit-item p {
    max-width: none;
  }
  .instagram-banner {
    padding: 52px 6vw;
  }
  .contact-details a {
    font-size: 21px;
  }
  .gallery-page h1 {
    font-size: 70px;
  }
  .gallery-intro {
    margin-bottom: 58px;
  }
  .gallery-title {
    display: block;
  }
  .gallery-title h2 {
    font-size: 36px;
    margin-bottom: 7px;
  }
  .gallery-group img {
    height: 220px;
  }
  .gallery-card {
    height: 220px;
  }
  .gallery-card-overlay {
    padding: 14px;
  }
  .gallery-card-overlay strong {
    font-size: 19px;
  }
  .gallery-card-overlay small {
    font-size: 9px;
  }
  .product-back {
    margin-bottom: 36px;
  }
  .product-heading h2 {
    font-size: 50px;
    margin-top: 0px;
  }
  .product-viewer {
    display: block;
  }
  .product-main-image {
    height: 30vh;
  }
  .product-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 12px;
  }
  .product-thumbnails button {
    height: 72px;
  }
  .gallery-cta {
    display: block;
  }
  .gallery-cta p {
    margin-bottom: 20px;
  }
}
