:root {
  --ink: #123347;
  --teal: #0c3e47;
  --soft: #f7f7f5;
}
body {
  color: var(--ink);
  background: #fefefe;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
}
.btn {
  border-radius: 28px;
  padding: 10px 25px;
  gap: 16px;
  font-size: 14px;
}
.btn:hover {
  background: #185a63;
}
.btn.outline {
  border: 1px solid #527783;
  color: var(--teal);
  background: transparent;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid #277886;
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  top: -60px;
  right: 20px;
  z-index: 100;
  background: white;
  padding: 10px;
}
.skip-link:focus {
  top: 0;
}
.site-header {
  height: 72px;
  background: #ffffffef;
  position: relative;
}
.site-header .nav {
  gap: 30px;
}
.site-header .nav > nav {
  justify-content: center;
  gap: 30px;
  font-size: 14px;
}
.logo {
  font:
    27px Lato,
    Arial;
  letter-spacing: 10px;
  color: #123347;
  white-space: nowrap;
  display: block;
  direction: ltr;
}
.logo small {
  display: block;
  font:
    6px Lato,
    Arial;
  letter-spacing: 2.2px;
  text-align: center;
  margin-top: 7px;
}
.header-tools {
  display: flex;
  gap: 26px;
  align-items: center;
}
.header-tools svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
  display: block;
}
.header-tools button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}
.language {
  font: 12px Lato;
  margin-left: 32px;
}
.header-search:not([hidden]) {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  box-shadow: 0 10px 25px #1232;
  padding: 20px;
  direction: rtl;
  z-index: 30;
}
.header-search label {
  font-size: 14px;
}
.header-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d9e2e2;
  border-radius: 8px;
  padding: 12px;
  font: 12px IRANSans;
}
.coastal-hero {
  height: clamp(410px, 34vw, 540px);
  position: relative;
  overflow: hidden;
  background: #dce9ed;
}
.coastal-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  direction: ltr;
}
.coastal-copy {
  direction: rtl;
  text-align: right;
  width: 35%;
  padding: 20px 0;
  color: #0b3d47;
}
.coastal-copy h1 {
  font-size: clamp(31px, 3.2vw, 49px);
  line-height: 1.55;
  margin: 16px 0;
}
.coastal-copy p {
  font-size: 16px;
  margin: 0 0 20px;
}
.coastal-copy .eyebrow {
  font-size: 14px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  direction: ltr;
  justify-content: flex-end;
}
.hero-actions a {
  direction: rtl;
  padding: 9px 22px;
  font-size: 12px;
}
.hero-motto {
  font: 15px/1.8 Lato;
  letter-spacing: 7px;
  align-self: center;
  margin-right: 5px;
  color: #234858;
}
.hero-motto span {
  display: block;
  margin-top: 24px;
  text-align: right;
}
.section-heading {
  text-align: center;
  margin: 0 0 24px;
}
.section-heading h2 {
  font-size: 27px;
  margin: 0;
  font-weight: 700;
  line-height: 1.7;
}
.section-heading p {
  font-size: 14px;
  color: #637485;
  margin: 3px 0 0;
}
.world-section {
  padding-top: 24px;
}
.world-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  direction: ltr;
}
.world-card {
  border-radius: 42% 45% 28px 28px / 26% 22% 28px 28px;
  overflow: hidden;
  text-align: center;
  direction: rtl;
  background: #fbefed;
  transition: transform 0.25s;
}
.world-card:hover {
  transform: translateY(-5px);
}
.world-card.ocean {
  background: #edf5f9;
}
.world-card.ivory {
  background: #f2f0e9;
}
.world-card.sage {
  background: #eaf0e9;
}
.world-scene {
  height: 245px;
  position: relative;
  padding-top: 35px;
  background:
    radial-gradient(ellipse at 75% 15%, #fff9, transparent 60%),
    linear-gradient(145deg, #deb9ac66, #fff6);
}
.ocean .world-scene {
  background: linear-gradient(#c5e5f0, #eff9fc 65%, #bbd9df);
}
.ivory .world-scene {
  background: linear-gradient(135deg, #e9e5da, #faf9f4 60%, #dcd8cd);
}
.sage .world-scene {
  background:
    radial-gradient(ellipse at 5% 90%, #4d704a88, transparent 50%),
    linear-gradient(130deg, #e8efe4, #b6c9b6);
}
/* .world-scene:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 9%;
  width: 82%;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(#fff, #dedbd0);
  box-shadow: 0 -2px 8px #ffffff80;
} */
.world-wordmark {
  position: relative;
  z-index: 2;
  font: 23px Lato;
  letter-spacing: 6px;
  color: #b86d5d;
}
.world-wordmark small {
  font-size: 15px;
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
}
.ocean .world-wordmark {
  color: #173d81;
}
.ivory .world-wordmark {
  color: #8b7146;
}
.sage .world-wordmark {
  color: #246140;
}
.world-bottles {
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 168px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}
.world-bottles img {
  width: 53%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(4px 8px 5px #22332218);
}
.world-bottles img + img {
  margin-left: -20px;
  height: 83%;
}
.world-caption {
  position: relative;
  padding: 14px 7px 17px;
  z-index: 3;
}
.world-caption h3 {
  font-size: 19px;
  margin: 0;
}
.rose .world-caption {
  color: #98382e;
}
.ocean .world-caption {
  color: #183b79;
}
.ivory .world-caption {
  color: #765328;
}
.world-caption p,
.world-caption span {
  font-size: 13px;
  margin: 0;
}
.category-section {
  padding: 22px 0;
}
.inline-heading {
  position: relative;
  margin-bottom: 12px;
}
.inline-heading > a {
  position: absolute;
  right: 0;
  font-size: 13px;
}
.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.category-image {
  width: 150px;
  height: 150px;
  display: flex;
  margin: 0 auto 3px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7f7f5, #f0f0ed);
  border: 1px solid #fff;
}
.category-image img {
  height: 83%;
  width: 74%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.2s;
}
.category-row a:hover img {
  transform: scale(1.07);
}
.category-row b {
  font-size: 15px;
  font-weight: 400;
}
.category-symbol {
  font-size: 47px;
  color: #42787b;
}
.routine-banner {
  min-height: 280px;
  display: grid;
  grid-template-columns: 42% 32% 26%;
  direction: ltr;
  align-items: center;
  background:
    linear-gradient(110deg, #e4eff0aa, #ecf7f8e8),
    url("../img/laguna-hero.png") center bottom/cover;
}
.routine-portrait {
  align-self: stretch;
  border-radius: 0 90px 90px 0;
  background: url("../img/coastal-hero.png") 51% 47% / auto 155%;
  position: relative;
  overflow: hidden;
}
.routine-portrait:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #173d4366, transparent 70%);
}
.routine-portrait span {
  position: absolute;
  left: 10%;
  top: 28%;
  font: 23px/1.3 Lato;
  letter-spacing: 3px;
  color: white;
  z-index: 1;
}
.routine-copy {
  direction: rtl;
  padding: 26px 28px;
}
.routine-copy h2,
.club-copy h2 {
  font-size: 26px;
  line-height: 1.7;
  margin: 0 0 7px;
}
.routine-copy p,
.club-copy p {
  font-size: 13px;
  line-height: 2;
  margin: 0 0 18px;
}
.routine-steps,
.club-perks {
  display: flex;
  justify-content: space-evenly;
  gap: 12px;
  direction: rtl;
  padding: 15px 25px;
  text-align: center;
}
.routine-steps i,
.club-perks i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #ffffffb0;
  font: 36px Georgia;
  font-style: normal;
  margin: 0 auto 10px;
  border: 1px solid #e3e8e6;
  color: #164450;
}
.routine-steps span,
.club-perks span {
  display: block;
  font-size: 12px;
  line-height: 1.7;
}
.club-banner {
  display: grid;
  grid-template-columns: 34% 40% 26%;
  direction: ltr;
  background: linear-gradient(110deg, #f0f0ed, #fff);
  min-height: 190px;
  overflow: hidden;
}
.club-copy {
  direction: rtl;
  padding: 26px 20px 22px 16%;
}
.club-perks {
  align-self: center;
  direction: ltr;
  padding: 12px;
}
.club-perks > div {
  direction: rtl;
}
.club-perks i {
  width: 53px;
  height: 53px;
  background: transparent;
  font-size: 31px;
}
.club-art {
  position: relative;
  background:
    linear-gradient(100deg, #164b55bb, #164b5520),
    url("../img/coastal-hero.png") 96% 60% / auto 180%;
  padding: 27px 30px;
  color: white;
  clip-path: polygon(8% 8%, 100% 0, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.club-art > span {
  font: 23px Lato;
  letter-spacing: 8px;
}
.club-art small {
  display: block;
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 7px;
}
.club-art p {
  font: 9px/1.6 Lato;
  letter-spacing: 4px;
  border-left: 1px solid white;
  padding-left: 16px;
  margin-left: 50px;
}
.featured-section {
  padding: 20px 0 10px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  direction: ltr;
}
.featured-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(120deg, #f8f8f7, #f3f3f1);
  padding: 14px 12px;
}
.featured-card > a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.featured-card img {
  height: 132px;
  width: 43%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.featured-card h3 {
  font-size: 14px;
  line-height: 1.9;
  margin: 15px 0;
}
.featured-card a > div {
  direction: rtl;
  flex: 1;
}
.featured-card a span {
  font-size: 12px;
  color: #5c7276;
}
.favorite-btn {
  position: absolute;
  top: 7px;
  right: 12px;
  border: 0;
  background: none;
  color: #87969c;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.favorite-btn[aria-pressed="true"] {
  color: #b95461;
}
.favorite-status {
  font-size: 13px;
  margin: 4px 0;
  min-height: 18px;
}
.journal-section {
  padding: 0 0 24px;
}
.journal-section .section-heading {
  margin-bottom: 14px;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  direction: ltr;
}
.journal-card {
  background: #f7f7f5;
  border-radius: 12px;
  overflow: hidden;
}
.journal-card .journal-card-link {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}
.journal-card .journal-card-link::-webkit-details-marker {
  display: none;
}
.journal-card .journal-card-link > span + span {
  direction: rtl;
  flex: 1;
  padding: 12px 18px 12px 0;
}
.journal-card b {
  font-size: 15px;
  font-weight: 400;
  display: block;
}
.journal-card small {
  display: block;
  font-size: 12px;
  margin-top: 15px;
}
.journal-image {
  display: block;
  width: 40%;
  height: 135px;
  flex-shrink: 0;
  border-radius: 12px;
  background: url("../img/coastal-hero.png") 96% 70% / auto 180%;
}
.journal-image.sun {
  background-position: 52% 40%;
  background-size: auto 180%;
}
.journal-image.care {
  background-image: url("../img/laguna-hero.png");
  background-position: 95% 70%;
}
.journal-card > p {
  font-size: 14px;
  direction: rtl;
  padding: 0 18px 15px;
}
.laguna-footer {
  background: #f4f4f2;
  color: var(--ink);
  padding-top: 25px;
}
.laguna-footer .footer-grid.footer-grid-clean {
  direction: rtl;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
}
.laguna-footer .footer-grid-clean .footer-brand {text-align: right;}
@media(max-width:800px){.laguna-footer .footer-grid.footer-grid-clean{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:480px){.laguna-footer .footer-grid.footer-grid-clean{grid-template-columns:1fr}}
.laguna-footer .footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.85fr 0.85fr 1.4fr;
  direction: ltr;
  gap: 35px;
}
.laguna-footer .footer-grid > div {
  direction: rtl;
}
.laguna-footer .footer-brand {
  text-align: left;
}
.laguna-footer h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink);
}
.laguna-footer .footer-grid a,
.laguna-footer .footer-grid p {
  color: #627080;
  font-size: 13px;
}
.laguna-footer .footer-grid .logo {
  font-size: 28px;
  color: var(--ink);
}
.laguna-footer .footer-grid .btn {
  color: white;
  margin-top: 10px;
  font-size: 13px;
}
.laguna-footer .copyright {
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #e5e5e1;
  margin-top: 22px;
  font-size: 11px;
  padding: 12px 0;
}
.copyright span {
  margin-left: auto;
}
.footer-brand .logo small {
  text-align: right;
}
@media (min-width: 1600px) {
  .coastal-copy {
    padding-left: 0;
  }
  .coastal-hero {
    height: 540px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .site-header .nav {
    gap: 20px;
  }
  .site-header .nav > nav {
    gap: 20px;
    font-size: 13px;
  }
  .language {
    margin-left: 0;
  }
  .header-tools {
    gap: 18px;
  }
  .world-scene {
    height: 205px;
  }
  .world-bottles {
    height: 140px;
  }
  .world-wordmark {
    font-size: 22px;
  }
  .world-caption h3 {
    font-size: 16px;
  }
  .routine-copy {
    padding: 20px;
  }
  .routine-copy h2,
  .club-copy h2 {
    font-size: 22px;
  }
  .routine-steps {
    padding: 10px;
    gap: 7px;
  }
  .routine-steps i {
    width: 53px;
    height: 53px;
  }
  .club-copy {
    padding-left: 25px;
  }
  .club-perks {
    gap: 6px;
  }
  .club-perks span {
    font-size: 11px;
  }
  .featured-grid {
    gap: 12px;
  }
  .featured-card img {
    height: 116px;
  }
  .laguna-footer .footer-grid {
    gap: 20px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions a {
    padding: 9px 14px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    height: 66px;
  }
  .site-header .nav {
    gap: 16px;
  }
  .site-header .nav > nav {
    display: none;
    top: 66px;
    height: auto;
    padding: 18px;
    align-items: stretch;
  }
  .site-header .nav > nav.open {
    display: flex;
  }
  .site-header .nav > nav a {
    padding: 10px;
  }
  .site-header .logo {
    margin-left: auto;
    font-size: 26px;
  }
  .logo small {
    font-size: 7px;
  }
  .header-tools {
    gap: 17px;
  }
  .menu-btn {
    order: -1;
    color: var(--ink);
  }
  .language {
    display: none;
  }
  .header-search:not([hidden]) {
    top: 66px;
    flex-wrap: wrap;
  }
  .header-search label {
    width: 100%;
  }
  .coastal-hero {
    height: 410px;
  }
  .coastal-hero > img {
    object-position: 55%;
  }
  .coastal-copy {
    width: 47%;
    background: #f7faf987;
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(3px);
  }
  .coastal-copy h1 {
    font-size: 31px;
  }
  .coastal-copy p {
    font-size: 14px;
  }
  .hero-motto {
    display: none;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .world-scene {
    height: 245px;
  }
  .world-bottles {
    height: 170px;
  }
  .world-caption h3 {
    font-size: 19px;
  }
  .category-row {
    gap: 10px;
  }
  .category-image {
    width: 85px;
    height: 85px;
  }
  .category-row b {
    font-size: 13px;
  }
  .routine-banner {
    grid-template-columns: 40% 60%;
  }
  .routine-steps {
    grid-column: 2;
    grid-row: 2;
    padding-bottom: 20px;
  }
  .routine-portrait {
    grid-row: 1/3;
  }
  .routine-copy {
    padding: 24px;
  }
  .club-banner {
    grid-template-columns: 60% 40%;
  }
  .club-copy {
    padding: 24px;
  }
  .club-perks {
    grid-column: 1;
    grid-row: 2;
    padding: 10px 15px 25px;
  }
  .club-art {
    grid-column: 2;
    grid-row: 1/3;
  }
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journal-grid {
    gap: 12px;
  }
  .journal-card .journal-card-link {
    flex-direction: column;
    gap: 0;
  }
  .journal-image {
    width: 100%;
    height: 125px;
  }
  .journal-card .journal-card-link > span + span {
    padding: 15px;
    width: 100%;
  }
  .laguna-footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-membership {
    grid-column: 2/4;
  }
  .section-heading h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .header-tools {
    gap: 14px;
  }
  .header-tools svg {
    width: 18px;
  }
  .site-header .nav {
    gap: 12px;
  }
  .site-header .logo {
    font-size: 23px;
    letter-spacing: 6px;
  }
  .coastal-hero {
    height: 560px;
  }
  .coastal-hero > img {
    height: 310px;
    object-position: 61% top;
  }
  .hero-inner {
    align-items: flex-end;
    padding-bottom: 20px;
  }
  .coastal-copy {
    width: 100%;
    background: linear-gradient(120deg, #f5f8f6, #e1edf0);
    backdrop-filter: none;
    padding: 20px;
  }
  .coastal-copy h1 {
    font-size: 31px;
    line-height: 1.5;
    margin: 6px 0;
  }
  .coastal-copy h1 br {
    display: none;
  }
  .coastal-copy .eyebrow {
    font-size: 12px;
    margin: 0;
  }
  .coastal-copy p {
    margin: 8px 0 14px;
  }
  .hero-actions {
    justify-content: flex-start;
    direction: rtl;
  }
  .world-section {
    padding-top: 22px;
  }
  .section-heading h2 {
    font-size: 22px;
  }
  .section-heading p {
    font-size: 12px;
  }
  .world-grid {
    gap: 12px;
  }
  .world-scene {
    height: 195px;
    padding-top: 30px;
  }
  .world-wordmark {
    font-size: 20px;
    letter-spacing: 4px;
  }
  .world-wordmark small {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .world-bottles {
    height: 125px;
    left: 3%;
    right: 3%;
  }
  .world-caption {
    padding: 10px 5px 13px;
  }
  .world-caption h3 {
    font-size: 14px;
  }
  .world-caption p,
  .world-caption span {
    font-size: 11px;
  }
  .category-row {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 15px;
  }
  .category-image {
    width: 83px;
    height: 83px;
  }
  .inline-heading {
    text-align: right;
    padding-bottom: 6px;
  }
  .inline-heading h2 {
    font-size: 21px;
  }
  .inline-heading > a {
    font-size: 11px;
  }
  .inline-heading h2 {
    padding-left: 75px;
  }
  .routine-banner {
    grid-template-columns: 1fr;
  }
  .routine-portrait {
    height: 210px;
    grid-row: auto;
    border-radius: 0 0 65px 0;
    background-size: auto 190%;
  }
  .routine-portrait span {
    top: 20%;
    font-size: 23px;
  }
  .routine-copy {
    padding: 22px 24px 8px;
  }
  .routine-steps {
    grid-column: 1;
    grid-row: auto;
    justify-content: space-evenly;
  }
  .club-banner {
    grid-template-columns: 1fr;
  }
  .club-copy {
    padding: 23px;
  }
  .club-perks {
    grid-column: 1;
    grid-row: auto;
  }
  .club-art {
    grid-column: 1;
    grid-row: auto;
    min-height: 160px;
    clip-path: none;
    background-size: cover;
    flex-direction: row;
    align-items: center;
  }
  .featured-grid {
    gap: 10px;
  }
  .featured-card {
    padding: 18px 9px 12px;
  }
  .featured-card > a {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .featured-card img {
    width: 100%;
    height: 120px;
  }
  .featured-card h3 {
    font-size: 13px;
    margin: 10px 0;
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .journal-card .journal-card-link {
    flex-direction: row;
  }
  .journal-image {
    width: 36%;
    height: 120px;
  }
  .journal-card .journal-card-link > span + span {
    padding: 14px;
  }
  .laguna-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-membership {
    grid-column: auto;
  }
  .laguna-footer .copyright {
    flex-wrap: wrap;
    gap: 15px;
  }
  .copyright span {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}

.world-bottles {
  mix-blend-mode: multiply;
}
.world-bottles img {
  filter: none;
}
.club-art {
  background-size: auto 250%;
  background-position: 100% 65%;
}
/* Product gallery: compact two-row catalogue matching the supplied reference. */
.gallery-section {
  padding: 25px 0 20px;
}
.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 16px;
}
.gallery-header h2 {
  font-size: 27px;
  line-height: 1.5;
  margin: 0;
}
.gallery-header p {
  font-size: 14px;
  color: #718092;
  margin: 3px 0 0;
}
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-filters button {
  font: 11px IRANSans;
  color: #40546b;
  border: 0;
  border-radius: 8px;
  background: #f2f3f4;
  min-width: 124px;
  padding: 10px 15px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.gallery-filters button:hover {
  background: #e8edef;
}
.gallery-filters button[aria-pressed="true"] {
  background: #fbe1db;
  color: #a15143;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}
.gallery-card {
  min-width: 0;
  text-align: center;
  border: 1px solid #eceeef;
  border-radius: 10px;
  background: linear-gradient(145deg, #f3f3f3 0%, #fafafa 50%, #fff 100%);
  padding: 5px 16px 9px;
}
.gallery-card[hidden] {
  display: none;
}
.gallery-product {
  display: block;
}
.gallery-product img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.2s;
}
.gallery-product:hover img {
  transform: scale(1.04);
}
.gallery-product h3 {
  font-size: 15px;
  line-height: 2.5;
  margin: 0;
  min-height: 24px;
  color: #425d76;
  font-weight: 400;
}
.gallery-buy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 148px;
  background: #edf1f2;
  color: #346571;
  border-radius: 7px;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1.8;
}
.gallery-buy:hover {
  background: #dfe9eb;
}
.gallery-buy svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}
.gallery-status {
  font-size: 13px;
  color: #667c86;
  margin: 0;
}
.gallery-status:empty {
  display: none;
}
.gallery-status:not(:empty) {
  margin-top: 8px;
}
@media (max-width: 1100px) {
  .gallery-filters {
    gap: 8px;
  }
  .gallery-filters button {
    min-width: 105px;
    padding: 9px 10px;
  }
  .gallery-header {
    gap: 15px;
  }
  .gallery-header h2 {
    font-size: 25px;
  }
  .gallery-header p {
    font-size: 13px;
  }
  .gallery-product img {
    height: 108px;
  }
  .gallery-product h3 {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .gallery-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .gallery-filters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gallery-filters button {
    min-width: 0;
    font-size: 12px;
    padding: 10px 4px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .gallery-product img {
    height: 135px;
  }
}
@media (max-width: 480px) {
  .gallery-section {
    padding-top: 22px;
  }
  .gallery-header h2 {
    font-size: 24px;
  }
  .gallery-filters {
    gap: 5px;
  }
  .gallery-filters button {
    font-size: 11px;
    padding: 9px 3px;
  }
  .gallery-card {
    padding: 6px 8px 9px;
  }
  .gallery-product img {
    height: 112px;
  }
  .gallery-product h3 {
    font-size: 13px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-buy {
    min-width: 0;
    width: 100%;
    max-width: 148px;
    font-size: 11px;
  }
}

/* Consistent spacing between homepage sections. */
.laguna-home {
  --section-gap: 64px;
  --heading-gap: 28px;
  display: flow-root;
  padding-bottom: var(--section-gap);
}
.laguna-home > section + section {
  margin-top: var(--section-gap);
}
.laguna-home > .world-section,
.laguna-home > .category-section,
.laguna-home > .gallery-section,
.laguna-home > .journal-section {
  padding-top: 0;
  padding-bottom: 0;
}
.laguna-home .section-heading,
.laguna-home .gallery-header {
  margin-bottom: var(--heading-gap);
}
@media (max-width: 800px) {
  .laguna-home {
    --section-gap: 48px;
    --heading-gap: 24px;
  }
}
@media (max-width: 480px) {
  .laguna-home {
    --section-gap: 36px;
    --heading-gap: 20px;
  }
}

/* The routine and club banners form one connected composition. */
.laguna-home > .routine-banner + .club-banner {
  margin-top: 0;
}
.routine-banner {
  position: relative;
  min-height: 300px;
  grid-template-columns: 42% 32% 26%;
  background:
    linear-gradient(110deg, #e6f2f3e8, #e9f5f6dc),
    url("../img/laguna-hero.png") left bottom/cover;
}
.routine-portrait {
  border-radius: 0;
  clip-path: ellipse(100% 110% at 0% 34%);
  background-position: 52% 42%;
  background-size: auto 180%;
  min-height: 300px;
}
.routine-copy {
  padding: 30px 26px 42px;
  position: relative;
  z-index: 1;
}
.routine-steps {
  padding: 20px 30px 48px;
  position: relative;
  z-index: 1;
}
.routine-steps i {
  width: 78px;
  height: 78px;
}
.routine-steps svg,
.club-perks svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.club-banner {
  position: relative;
  isolation: isolate;
  overflow: visible;
  grid-template-columns: 34% 35% 31%;
  min-height: 205px;
  background: linear-gradient(105deg, #f4f4f2, #fdfdfc 68%, #edf2f0);
}
.club-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 135px 245px at -65px 110%,
      #dddeda 0 73%,
      transparent 74%
    ),
    radial-gradient(
      ellipse 180px 270px at -85px 115%,
      #e9eae7 0 77%,
      transparent 78%
    );
  pointer-events: none;
}
.club-copy {
  padding: 28px 30px 25px max(30px, 7vw);
  text-align: right;
  align-self: center;
}
.club-perks {
  position: relative;
  z-index: 1;
  gap: 10px;
  padding: 22px 12px;
}
.club-perks i {
  width: 62px;
  height: 62px;
  margin-bottom: 12px;
}
.club-perks span {
  font-size: 13px;
}
.club-art {
  position: relative;
  align-self: stretch;
  min-height: 265px;
  margin-top: -60px;
  padding: 77px 38px 22px 60px;
  clip-path: polygon(13% 18%, 100% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, #dbe3df40, #ffffff10),
    url("../img/coastal-hero.png") right center/auto 280%;
  overflow: hidden;
  justify-content: space-between;
}
.club-art:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  top: 22px;
  bottom: -24px;
  width: 57%;
  border-radius: 28px 10px 0 0;
  background: linear-gradient(115deg, #417982, #174b56 65%, #83a8ac);
  box-shadow: 10px 0 0 #ecf0e9aa;
  transform: rotate(-5deg);
}
.club-art > span {
  font-size: 28px;
  letter-spacing: 7px;
  text-shadow: 0 1px 2px #1235;
}
.club-art p {
  margin: 20px 0 0 40px;
  font-size: 11px;
}
@media (max-width: 1100px) and (min-width: 801px) {
  .routine-steps {
    padding-inline: 12px;
  }
  .routine-steps i {
    width: 60px;
    height: 60px;
  }
  .club-copy {
    padding-left: 40px;
    padding-right: 15px;
  }
  .club-perks span {
    font-size: 12px;
  }
  .club-perks i {
    width: 50px;
    height: 50px;
  }
  .club-art {
    padding-left: 42px;
    padding-right: 15px;
  }
  .club-art > span {
    font-size: 24px;
    letter-spacing: 5px;
  }
}
@media (max-width: 800px) {
  .routine-banner {
    grid-template-columns: 40% 60%;
  }
  .routine-portrait {
    grid-row: 1/3;
    min-height: 330px;
    clip-path: ellipse(100% 100% at 0% 35%);
  }
  .routine-copy {
    padding: 25px 24px 10px;
  }
  .routine-steps {
    grid-column: 2;
    grid-row: 2;
    padding: 10px 20px 30px;
  }
  .routine-steps i {
    width: 58px;
    height: 58px;
  }
  .club-banner {
    grid-template-columns: 62% 38%;
  }
  .club-copy {
    padding: 24px 28px 12px;
  }
  .club-perks {
    grid-column: 1;
    grid-row: 2;
    padding: 12px 20px 24px;
  }
  .club-perks i {
    width: 46px;
    height: 46px;
  }
  .club-perks span {
    font-size: 11px;
  }
  .club-art {
    grid-column: 2;
    grid-row: 1/3;
    margin-top: -25px;
    min-height: 280px;
    padding: 68px 15px 30px 35px;
    clip-path: polygon(10% 12%, 100% 0, 100% 100%, 0 100%);
  }
  .club-art > span {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .club-art p {
    margin-left: 10px;
  }
  .club-art:before {
    width: 72%;
    left: 9%;
  }
}
@media (max-width: 480px) {
  .routine-banner {
    grid-template-columns: 1fr;
  }
  .routine-portrait {
    grid-row: auto;
    height: 220px;
    min-height: 220px;
    clip-path: ellipse(100% 115% at 0% 0%);
    background-size: auto 190%;
  }
  .routine-copy {
    padding: 22px 24px 10px;
  }
  .routine-steps {
    grid-column: 1;
    grid-row: auto;
    padding-bottom: 28px;
  }
  .club-banner {
    grid-template-columns: 1fr;
  }
  .club-copy {
    padding: 28px 24px 12px;
  }
  .club-perks {
    grid-column: 1;
    grid-row: auto;
    padding: 12px 18px 24px;
  }
  .club-art {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
    min-height: 190px;
    padding: 52px 30px 25px 50px;
    clip-path: polygon(0 17%, 100% 0, 100% 100%, 0 100%);
    flex-direction: row;
    align-items: center;
  }
  .club-art:before {
    left: 7%;
    width: 52%;
    top: 20px;
  }
  .club-art > span {
    font-size: 26px;
    letter-spacing: 6px;
  }
  .club-art p {
    margin: 20px 0 0 0;
  }
  .club-banner:before {
    background: radial-gradient(
      ellipse 135px 245px at -95px 25%,
      #e5e6e2 0 73%,
      transparent 74%
    );
  }
}
.world-section .world-bottles {
  mix-blend-mode: normal;
}
.world-section .world-bottles img {
  width: 100%;
  mix-blend-mode: normal;
}
.laguna-home .world-section {
  margin-top: 48px;
}
@media (max-width: 480px) {
  .laguna-home .world-section {
    margin-top: 32px;
  }
}
.journal-article {
  max-width: 760px;
  margin-inline: auto;
}
.journal-article .journal-image {
  width: 100%;
  height: clamp(200px, 35vw, 380px);
  margin-block: 24px;
}
.journal-article p {
  line-height: 2.2;
}
/* Justify long-form copy; headings and interface text retain their layout alignment. */
.about-brand-copy > p,
.journal-article-body p:not(:has(> strong:only-child)),
.journal-article-body li,
.product-detail .content > p,
.product-detail .content li {
  text-align: justify;
  text-align-last: auto;
}
