@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&family=Sour+Gummy:wght@500;600;700&display=swap");

:root {
  --ink: #132b46;
  --blue: #0f5c91;
  --sky: #dff2f7;
  --paper: #fffdf7;
  --accent: #e76d32;
  --accent2: #f3b93e;
  --soft: #f7efe1;
  --green: #3f7d4c;
  --radius: 28px;
  --shadow: 0 15px 45px rgba(20, 43, 70, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.55;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.notice {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.notice span {
  color: var(--accent2);
}
header {
  position: absolute;
  top: 39px;
  left: 0;
  right: 0;
  z-index: 5;
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 0 0 22px 22px;
  padding: 0 25px;
  box-shadow: 0 8px 30px rgba(20, 43, 70, 0.12);
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.nav .brand-logo {
  width: 44px;
  height: 44px;
}
.footer .brand-logo {
  width: 34px;
  height: 34px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
  font-size: 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  padding: 14px 23px;
  font-weight: 900;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 26%, transparent);
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.light {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid #cfdbe1;
  box-shadow: none;
}
.hero {
  min-height: 790px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #153752;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 35, 57, 0.9) 0%,
    rgba(10, 35, 57, 0.65) 48%,
    rgba(10, 35, 57, 0.08) 82%
  );
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 660px;
  padding-top: 120px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  color: var(--accent2);
  margin-bottom: 15px;
}
.hero h1,
h2 {
  font-family: "Sour Gummy";
  line-height: 0.98;
  margin: 0;
}
.hero h1 {
  font-size: clamp(56px, 7.3vw, 102px);
  letter-spacing: -0.035em;
}
.hero h1 em {
  display: block;
  color: var(--accent2);
  font-style: normal;
}
.hero p {
  font-size: 20px;
  max-width: 580px;
  margin: 25px 0 32px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.scribble {
  position: absolute;
  right: 4%;
  bottom: 6%;
  z-index: 2;
  background: var(--accent2);
  color: var(--ink);
  width: 155px;
  height: 155px;
  border-radius: 48% 52% 46% 54%;
  display: grid;
  place-items: center;
  text-align: center;
  font: 700 21px/1.1 "Sour Gummy";
  transform: rotate(7deg);
  padding: 18px;
}
.trust {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}
.trust-inner {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 30px;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border-right: 1px solid #e7edf0;
}
.trust-item:last-child {
  border: 0;
}
.trust-icon {
  font-size: 25px;
}
.trust-item small {
  display: block;
  font-weight: 600;
  color: #637486;
}
section {
  padding: 100px 0;
}
.intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 46px;
}
.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 9px;
}
.intro h2,
.split h2,
.cta h2 {
  font-size: clamp(42px, 5vw, 65px);
  color: var(--ink);
}
.intro p {
  font-size: 18px;
  color: #526575;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(20, 43, 70, 0.16);
}
.card-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-media {
  height: 230px;
  position: relative;
}
.card-media img {
  height: 100%;
  object-fit: cover;
}
.age {
  position: absolute;
  left: 16px;
  top: 15px;
  background: var(--accent2);
  color: var(--ink);
  border-radius: 50px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}
.card-body {
  padding: 23px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 {
  font: 700 27px/1.05 "Sour Gummy";
  margin: 0 0 10px;
}
.card p {
  color: #637486;
  font-size: 14px;
  margin: 0 0 18px;
}
.card-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #edf0f1;
  padding-top: 16px;
  font-weight: 900;
}
.card-bottom a {
  color: var(--accent);
  position: relative;
  z-index: 2;
}
.footer a:hover {
  text-decoration: underline;
}
.soft {
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.photo-stack {
  position: relative;
  padding: 0 0 45px 35px;
}
.photo-stack img {
  height: 510px;
  object-fit: cover;
  border-radius: 40% 40% 26px 26px;
  box-shadow: var(--shadow);
}
.photo-note {
  position: absolute;
  bottom: 0;
  right: -15px;
  background: var(--accent2);
  width: 185px;
  height: 185px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 25px;
  font: 700 22px/1.1 "Sour Gummy";
  transform: rotate(-7deg);
}
.checks {
  list-style: none;
  padding: 0;
  margin: 28px 0 35px;
  display: grid;
  gap: 14px;
}
.checks li {
  display: flex;
  gap: 12px;
  font-weight: 800;
}
.checks li:before {
  content: "✓";
  width: 25px;
  height: 25px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}
.quote {
  background: white;
  border-radius: 28px;
  padding: 35px;
  box-shadow: var(--shadow);
  font-size: 20px;
  font-weight: 700;
}
.stars {
  color: #f3ad21;
  letter-spacing: 3px;
}
.quote small {
  display: block;
  margin-top: 14px;
  color: #667789;
  font-size: 14px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}
.faq-grid h2 {
  font-size: 52px;
}
.faq details {
  border-bottom: 1px solid #d9e0e4;
  padding: 19px 5px;
}
.faq summary {
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}
.faq details p {
  color: #5d6e7b;
}
.cta {
  padding: 50px 0 100px;
}
.cta-inner {
  background: var(--blue);
  color: white;
  border-radius: 35px;
  padding: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: #fff;
  max-width: 650px;
}
.cta p {
  margin: 13px 0 0;
  color: #d6e9f3;
}
.footer {
  background: var(--ink);
  color: #dbe5eb;
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: white;
  margin: 0 0 15px;
}
.footer a {
  display: block;
  margin: 7px 0;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding-top: 22px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.spring {
  --accent: #e34d72;
  --accent2: #f5ce38;
  --soft: #f1f7e9;
  --green: #5b944a;
}
.spring .hero:after {
  background: linear-gradient(
    90deg,
    rgba(28, 54, 47, 0.9),
    rgba(28, 54, 47, 0.53) 54%,
    rgba(28, 54, 47, 0.08)
  );
}
.spring .hero {
  background: #315c50;
}
.spring .brand-mark {
  background: #e34d72;
}
.season-switch {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 50px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .navlinks a:not(.btn) {
    display: none;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-item {
    border: 0;
  }
  .split,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .photo-stack {
    max-width: 650px;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: min(100% - 24px, 1160px);
  }
  header {
    top: 39px;
  }
  .nav {
    height: 75px;
    padding: 0 14px;
  }
  .brand-logo {
    width: 30px;
    height: 30px;
  }
  .nav .brand-logo {
    width: 38px;
    height: 38px;
  }
  .nav .btn {
    padding: 11px 14px;
  }
  .hero {
    min-height: 740px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero p {
    font-size: 17px;
  }
  .scribble {
    display: none;
  }
  .trust {
    margin-top: -25px;
  }
  .trust-inner {
    padding: 18px 10px;
  }
  .trust-item {
    font-size: 12px;
    justify-content: flex-start;
  }
  .trust-icon {
    font-size: 20px;
  }
  section {
    padding: 75px 0;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card-media {
    height: 250px;
  }
  .split {
    gap: 40px;
  }
  .photo-stack {
    padding: 0 0 35px;
  }
  .photo-stack img {
    height: 390px;
  }
  .photo-note {
    width: 140px;
    height: 140px;
    font-size: 18px;
    right: 0;
  }
  .faq-grid h2 {
    font-size: 42px;
  }
  .cta-inner {
    padding: 40px 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    flex-direction: column;
    gap: 8px;
  }
  .season-switch {
    bottom: 8px;
    left: 8px;
  }
}

/* Complete mobile layout */
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  .notice {
    min-height: 39px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.35;
  }
  header {
    top: 39px;
  }
  .nav {
    border-radius: 0 0 17px 17px;
  }
  .navlinks {
    gap: 0;
  }
  .navlinks .btn {
    font-size: 13px;
    white-space: nowrap;
    box-shadow: none;
  }
  .hero {
    min-height: 690px;
    align-items: end;
  }
  .hero:after,
  .spring .hero:after {
    background: linear-gradient(
      0deg,
      rgba(10, 35, 57, 0.95) 0%,
      rgba(10, 35, 57, 0.73) 56%,
      rgba(10, 35, 57, 0.18) 100%
    );
  }
  .hero-bg {
    object-position: 58% center;
  }
  .spring .hero-bg {
    object-position: 55% center;
  }
  .hero-content {
    padding: 150px 0 88px;
    max-width: 100%;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: clamp(43px, 13vw, 61px);
    line-height: 0.94;
  }
  .hero p {
    font-size: 16px;
    line-height: 1.5;
    margin: 20px 0 26px;
    max-width: 34rem;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .btn {
    padding: 12px 17px;
    font-size: 13px;
  }
  .trust {
    margin-top: -26px;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    padding: 17px 14px;
    gap: 15px 8px;
    border-radius: 19px;
  }
  .trust-item {
    justify-content: flex-start;
    padding: 0 4px;
    line-height: 1.25;
  }
  .trust-item small {
    margin-top: 3px;
    line-height: 1.25;
  }
  section {
    padding: 68px 0;
  }
  .intro {
    margin-bottom: 30px;
  }
  .intro h2,
  .split h2,
  .cta h2 {
    font-size: clamp(38px, 11vw, 50px);
  }
  .intro p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .cards {
    gap: 18px;
  }
  .card {
    border-radius: 22px;
  }
  .card-media {
    height: clamp(220px, 65vw, 300px);
  }
  .card-body {
    padding: 20px;
  }
  .card h3 {
    font-size: 26px;
  }
  .card p {
    font-size: 14px;
  }
  .card-bottom {
    gap: 12px;
    font-size: 14px;
  }
  .split {
    gap: 35px;
  }
  .photo-stack {
    padding: 0 0 28px;
  }
  .photo-stack img {
    height: clamp(330px, 105vw, 460px);
    border-radius: 30% 30% 22px 22px;
  }
  .photo-note {
    width: 125px;
    height: 125px;
    padding: 17px;
    font-size: 16px;
  }
  .checks {
    gap: 12px;
    margin: 23px 0 28px;
  }
  .checks li {
    font-size: 15px;
  }
  .split > .btn {
    width: 100%;
  }
  .quote {
    padding: 26px 22px;
    border-radius: 22px;
    font-size: 17px;
  }
  .faq-grid {
    gap: 20px;
  }
  .faq-grid h2 {
    font-size: 42px;
  }
  .faq details {
    padding: 17px 2px;
  }
  .faq summary {
    font-size: 16px;
    padding-right: 10px;
  }
  .cta {
    padding: 35px 0 82px;
  }
  .cta-inner {
    padding: 34px 23px;
    border-radius: 25px;
    gap: 24px;
  }
  .cta-inner .btn {
    width: 100%;
  }
  .footer {
    padding: 43px 0 75px;
  }
  .footer-grid {
    gap: 30px;
  }
  .footer p {
    font-size: 14px;
  }
  .copyright {
    margin-top: 28px;
  }
  .season-switch {
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    text-align: center;
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .wrap {
    width: calc(100% - 20px);
  }
  .notice span {
    display: none;
  }
  .nav {
    padding: 0 10px;
  }
  .nav .brand-logo {
    width: 36px;
    height: 36px;
  }
  .navlinks .btn {
    padding: 10px 11px;
    font-size: 12px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding-bottom: 72px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions .btn {
    padding: 12px 9px;
    text-align: center;
  }
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 18px;
  }
  .trust-item {
    font-size: 13px;
  }
  .trust-icon {
    width: 27px;
    text-align: center;
  }
  section {
    padding: 58px 0;
  }
  .card-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .photo-note {
    width: 112px;
    height: 112px;
    font-size: 15px;
  }
  .faq-grid h2 {
    font-size: 38px;
  }
}

/* SEO content, practical details and richer social proof */
.season-intro {
  padding: 90px 0 30px;
}
.season-intro .intro {
  margin-bottom: 0;
}
.season-intro .intro p {
  max-width: 900px;
  margin: 22px auto 0;
  line-height: 1.75;
}
.practical {
  padding: 90px 0;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fact {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(20, 43, 70, 0.08);
}
.fact > span {
  font-size: 30px;
}
.fact h3 {
  font: 700 24px/1.1 "Sour Gummy";
  margin: 12px 0 7px;
}
.fact p {
  margin: 0;
  color: #5d6e7b;
  font-size: 15px;
}
.center {
  text-align: center;
  margin-top: 34px;
}
.story p {
  color: #526575;
  font-size: 17px;
}
.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 900;
}
.review-shell {
  position: relative;
}
.review {
  display: none;
  min-height: 250px;
  align-content: center;
}
.review.active {
  display: block;
}
.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 17px;
}
.review-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.review-count {
  font-size: 13px;
  font-weight: 900;
  color: #687987;
}
.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}
.gallery img {
  border-radius: 22px;
  overflow: hidden;
}
.video-card {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.gallery img {
  height: 252px;
  object-fit: cover;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn.outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  box-shadow: none;
}
.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 0 38px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-trust img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 7px;
}
.footer-trust a {
  display: grid;
  gap: 2px;
}
.footer-trust .stars {
  font-size: 22px;
}
.footer-trust strong {
  color: #fff;
  font-size: 18px;
}
.footer-trust small {
  color: #aac0cf;
}
@media (max-width: 900px) {
  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .video-card video {
    min-height: auto;
    aspect-ratio: 16/9;
  }
  .gallery img {
    height: 230px;
  }
}
@media (max-width: 600px) {
  .season-intro {
    padding: 65px 0 15px;
  }
  .practical {
    padding: 65px 0;
  }
  .fact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .fact {
    padding: 20px;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 8px;
  }
  .fact > span {
    grid-row: 1/3;
  }
  .fact h3 {
    margin: 2px 0 5px;
  }
  .fact p {
    grid-column: 2;
  }
  .media-grid {
    gap: 12px;
  }
  .gallery {
    gap: 9px;
  }
  .gallery img {
    height: 44vw;
    border-radius: 16px;
  }
  .cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer-trust {
    justify-content: flex-start;
    gap: 18px;
  }
  .footer-trust img {
    width: 72px;
    height: 72px;
  }
  .footer-trust strong {
    font-size: 16px;
  }
  .footer-trust small {
    font-size: 12px;
  }
}

/* Branded desktop header and accessible mobile navigation */
.brand{gap:11px}.brand-name{font:700 24px/1 'Sour Gummy';color:var(--blue);white-space:nowrap}.menu-toggle,.mobile-book{display:none}
.back-to-top{position:fixed;right:22px;bottom:22px;z-index:20;width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:var(--ink);color:#fff;font-size:22px;font-weight:900;box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s}.back-to-top.visible{opacity:1;visibility:visible;transform:none}.back-to-top:hover{background:var(--accent);transform:translateY(-2px)}
@media(max-width:900px){
  .notice{height:52px;min-height:52px;padding:7px 12px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;column-gap:5px;font-size:11px;line-height:1.2}.notice span{display:inline;color:var(--accent2)}
  header{top:52px}.nav{position:relative;height:72px;gap:8px}.brand{gap:7px;margin-right:auto}.nav .brand-logo{width:40px;height:40px}.brand-name{font-size:18px}
  .mobile-book{display:inline-flex;padding:10px 13px!important;font-size:12px!important;white-space:nowrap}
  .menu-toggle{display:flex;width:42px;height:42px;padding:10px;border:0;border-radius:50%;background:var(--ink);flex-direction:column;align-items:center;justify-content:center;gap:4px;cursor:pointer;flex:none}.menu-toggle span{display:block;width:19px;height:2px;background:#fff;border-radius:2px;transition:.2s}.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
  .navlinks{position:absolute;top:calc(100% + 8px);left:0;right:0;display:flex!important;flex-direction:column;align-items:stretch;gap:0;background:#fff;border-radius:18px;padding:8px;box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(-8px);transition:.2s;pointer-events:none}.navlinks.open{opacity:1;visibility:visible;transform:none;pointer-events:auto}.navlinks a:not(.btn){display:block!important;padding:14px 15px;border-bottom:1px solid #edf0f1;font-size:15px}.navlinks .btn{display:none}
  .hero-content{padding-top:175px}.back-to-top{right:14px;bottom:62px;width:42px;height:42px}.season-switch{padding-right:58px}
}
@media(max-width:390px){.notice span{display:inline}.brand-name{font-size:16px}.mobile-book{padding:9px 10px!important;font-size:11px!important}.nav{padding:0 9px}.menu-toggle{width:39px;height:39px}.hero-content{padding-top:190px}}
