:root {
  --ink: #11100f;
  --black: #0c0b0a;
  --ivory: #f8f4ec;
  --paper: #fffdf8;
  --gold: #c5a253;
  --gold-deep: #9b782f;
  --orange: #c85f28;
  --taupe: #d9d0c1;
  --muted: #706b63;
  --line: rgba(17, 16, 15, 0.14);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.section-copy { max-width: 620px; margin: 16px 0 0; color: var(--muted); }
.gift-copy { margin: -18px 0 32px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 0.9rem; font-weight: 700; }
.text-link::after { content: "→"; }
.announcement {
  background: var(--gold);
  color: #17120a;
  padding: 9px 16px;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  gap: 24px;
}
.logo img { width: 235px; max-height: 64px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.045em; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--orange); transition: right .2s ease; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.icon-button:hover { background: var(--ivory); }
.icon-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding-inline: 4px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
}
.menu-toggle { display: none; }

.hero { overflow: hidden; background: var(--black); color: white; }
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 680px; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 90px 70px 90px max(20px, calc((100vw - var(--max)) / 2)); }
.hero .eyebrow { color: #e1c77e; }
.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 7.8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.05em;
}
.hero h1 em { color: var(--gold); font-weight: 400; }
.hero-copy > p:not(.eyebrow) { max-width: 550px; margin: 26px 0 34px; color: #ddd6ca; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.gold { border-color: var(--gold); background: var(--gold); color: #17120a; }
.button.outline-light { border-color: rgba(255,255,255,.55); background: transparent; color: white; }
.button.outline { background: transparent; color: var(--ink); }
.button.orange { border-color: var(--orange); background: var(--orange); }
.button.full { width: 100%; }
.button:disabled { opacity: .48; cursor: not-allowed; transform: none; }

.product-gallery { width: 100%; min-width: 0; max-width: 100%; }
.product-thumbnails { display: flex; gap: 10px; width: 100%; min-width: 0; margin-top: 12px; overflow-x: auto; scrollbar-width: thin; }
.product-thumbnail { flex: 1 1 0; min-width: 0; max-width: 150px; overflow: hidden; aspect-ratio: 4 / 5; padding: 0; border: 2px solid transparent; background: var(--ivory); cursor: pointer; }
.product-thumbnail.active { border-color: var(--gold-deep); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.size-chart-scroll { width: 100%; min-width: 0; max-width: 100%; overflow-x: auto; margin: 14px 0; overscroll-behavior-inline: contain; }
.size-chart-scroll table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: .88rem; }
.size-chart-scroll th, .size-chart-scroll td { padding: 9px 10px; border: 1px solid var(--line); text-align: left; white-space: nowrap; }
.size-chart-scroll th { background: var(--ivory); }
.stock-pending { padding: 12px 14px; border-left: 3px solid var(--gold); background: var(--ivory); color: var(--muted); font-size: .9rem; }
.hero-visual { position: relative; min-height: 560px; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,11,10,.42), transparent 36%), linear-gradient(0deg, rgba(12,11,10,.5), transparent 35%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-stamp { position: absolute; z-index: 2; right: 30px; bottom: 28px; display: grid; width: 118px; height: 118px; place-items: center; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; color: white; text-align: center; font-size: .69rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero-stamp::before { content: ""; position: absolute; inset: 7px; border: 1px solid var(--gold); border-radius: inherit; }

.resort-hero { overflow: hidden; background: var(--black); color: white; }
.resort-hero-inner {
  position: relative;
  width: min(100%, 1480px);
  min-height: 720px;
  margin-inline: auto;
}
.resort-collage {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.resort-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,4,.72) 0%, rgba(4,4,4,.46) 38%, rgba(4,4,4,.04) 73%), linear-gradient(0deg, rgba(4,4,4,.28), transparent 45%);
  pointer-events: none;
}
.resort-photo {
  position: absolute;
  inset: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #222;
}
.resort-photo img { width: 100%; height: 100%; object-fit: cover; }
.resort-photo-main img { object-position: center 18%; filter: brightness(1.12) saturate(1.03); }
.resort-copy {
  display: flex;
  position: relative;
  z-index: 2;
  width: min(58%, 760px);
  min-height: 720px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 72px clamp(44px, 6vw, 92px);
  color: white;
}
.resort-copy .eyebrow { margin-bottom: 14px; color: #ecd995; }
.resort-copy h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6vw, 6.3rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.05em;
}
.resort-rule { width: 66px; height: 2px; margin: 28px 0 20px; background: var(--gold); }
.resort-copy > p:not(.eyebrow) { max-width: 490px; margin: 0 0 28px; color: #f0ebe4; font-size: 1.06rem; line-height: 1.65; }
.resort-copy .button { min-width: 220px; }
.section-gold-rule { display: block; width: 64px; height: 2px; margin-bottom: 17px; background: var(--gold); }
.swim-first { padding-top: 84px; }
.swim-first .section-head { align-items: center; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--ivory); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 21px 26px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--display); font-size: 1.08rem; font-weight: 400; }
.trust-item span { color: var(--muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 96px 0; }
.section.ivory { background: var(--ivory); }
.section.dark { background: var(--black); color: white; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { position: relative; overflow: hidden; min-height: 470px; background: #d6d0c7; color: white; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card:hover img { transform: scale(1.035); }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 58%); }
.category-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px 24px; }
.category-content span { color: #e5d19a; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.category-copy-mobile { display: none; }
.category-content h3 { margin: 4px 0 0; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 18px; }
.product-card { min-width: 0; }
.product-image { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #eee8dd; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.03); }
.product-label { position: absolute; top: 12px; left: 12px; padding: 6px 9px; background: rgba(255,253,248,.92); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.quick-add { position: absolute; right: 10px; bottom: 10px; left: 10px; min-height: 42px; border: 0; background: rgba(12,11,10,.9); color: white; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: .2s ease; cursor: pointer; }
.product-card:hover .quick-add, .quick-add:focus-visible { opacity: 1; transform: none; }
.quick-add:disabled { opacity: 1; cursor: not-allowed; transform: none; }
.product-card.sold-out .product-image img { opacity: .68; }
.product-card.sold-out .product-label { background: var(--orange); color: white; }
.product-info { padding-top: 13px; }
.product-category { margin: 0 0 2px; color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-name { margin: 0; font-family: var(--display); font-size: 1.08rem; font-weight: 400; line-height: 1.3; }
.product-price { margin: 6px 0 0; font-size: .92rem; font-weight: 750; }
.editorial { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.editorial-image { min-height: 620px; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px clamp(32px, 7vw, 110px); background: var(--gold); color: #17120a; }
.editorial-copy blockquote { margin: 0 0 30px; font-family: var(--display); font-size: clamp(2.25rem, 4.2vw, 4.2rem); line-height: 1.02; letter-spacing: -.03em; }
.editorial-copy p { max-width: 520px; margin: 0 0 30px; }
.instagram-band { padding: 36px 0; background: var(--orange); color: white; }
.instagram-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.instagram-inner p { margin: 0; font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.5rem); line-height: 1.1; }
.instagram-inner a { border-color: white; }

.page-hero { padding: 86px 0 66px; border-bottom: 1px solid var(--line); background: var(--ivory); }
.page-hero.narrow .container { max-width: 860px; }
.page-hero h1 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(3rem, 7vw, 6rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.page-hero p:not(.eyebrow) { max-width: 690px; margin: 20px 0 0; color: var(--muted); font-size: 1.04rem; }
.shop-hero { text-align: center; }
.shop-hero h1 { max-width: none; white-space: nowrap; font-size: clamp(3rem, 5.4vw, 5.4rem); }
.shop-hero p:not(.eyebrow) { margin-inline: auto; }
.shop-toolbar { position: sticky; z-index: 20; top: 92px; padding: 16px 0; border-bottom: 1px solid var(--line); background: rgba(255,253,248,.96); backdrop-filter: blur(12px); }
.toolbar-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; }
.filters { display: flex; grid-column: 1; grid-row: 1; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter-button { white-space: nowrap; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: .78rem; font-weight: 750; cursor: pointer; }
.filter-button.active { border-color: var(--black); background: var(--black); color: white; }
.subfilters { display: flex; grid-column: 1 / -1; grid-row: 2; gap: 14px; overflow-x: auto; padding-top: 3px; scrollbar-width: none; }
.subfilters[hidden] { display: none; }
.subfilters::-webkit-scrollbar { display: none; }
.subfilter-group { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.subfilter-label { padding-right: 2px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.subfilter-button { white-space: nowrap; padding: 7px 12px; border: 1px solid #d8c89f; border-radius: 999px; background: #fffaf0; color: #65532c; font-size: .75rem; font-weight: 750; cursor: pointer; }
.subfilter-button.active { border-color: var(--gold-deep); background: var(--gold); color: #17120a; }
.search-box { display: flex; grid-column: 2; grid-row: 1; align-items: center; width: 240px; border: 1px solid var(--line); background: white; }
.search-box input { width: 100%; padding: 10px 12px; border: 0; outline: none; background: transparent; }
.sort-select { grid-column: 3; grid-row: 1; padding: 10px 32px 10px 12px; border: 1px solid var(--line); background: white; color: var(--ink); }
.shop-summary { display: flex; align-items: center; justify-content: space-between; margin: 0 0 26px; color: var(--muted); font-size: .86rem; }
.load-more-wrap { display: flex; justify-content: center; margin-top: 48px; }
.load-more-wrap .button.is-end { cursor: default; opacity: .72; background: var(--ivory); color: var(--muted); border-color: var(--line); }
.empty-state { grid-column: 1 / -1; padding: 72px 20px; border: 1px solid var(--line); text-align: center; }

.story-intro { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(40px, 9vw, 130px); align-items: start; }
.story-intro .lead { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.08; }
.story-body p:first-child { margin-top: 0; }
.story-body p { color: #4f4b45; font-size: 1.05rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 68px; background: var(--line); border: 1px solid var(--line); }
.value-card { padding: 38px 30px; background: var(--paper); }
.value-card span { color: var(--gold-deep); font-family: var(--display); font-size: 2rem; }
.value-card h3 { margin: 12px 0 8px; font-family: var(--display); font-size: 1.5rem; font-weight: 400; }
.value-card p { margin: 0; color: var(--muted); }

.care-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.care-aside { position: sticky; top: 130px; }
.care-aside h2 { margin: 0; font-family: var(--display); font-size: 2.5rem; font-weight: 400; line-height: 1.05; }
.care-aside p { color: var(--muted); }
.care-links { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.care-links a { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.care-group { scroll-margin-top: 140px; padding: 0 0 54px; margin-bottom: 54px; border-bottom: 1px solid var(--line); }
.care-group:last-child { border-bottom: 0; }
.care-group h2 { margin: 0 0 22px; font-family: var(--display); font-size: 2.2rem; font-weight: 400; }
.notice { padding: 16px 18px; margin: 20px 0; border-left: 3px solid var(--orange); background: #f9eee7; color: #5a321e; }
.delivery-rates { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0; }
.delivery-rates div { padding: 18px; border: 1px solid var(--line); background: var(--ivory); }
.delivery-rates strong, .delivery-rates span { display: block; }
.delivery-rates span { margin-top: 4px; color: var(--muted); }
.care-group h3 { margin: 28px 0 8px; font-size: 1rem; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; padding: 19px 2px; font-weight: 750; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--orange); font-size: 1.4rem; font-weight: 400; }
.accordion details[open] summary::after { content: "−"; }
.accordion .answer { padding: 0 32px 20px 2px; color: var(--muted); }
.size-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 22px; }
.size-card { padding: 22px; border: 1px solid var(--line); background: var(--ivory); }
.size-card strong { display: block; font-family: var(--display); font-size: 1.2rem; }
.contact-box { padding: 34px; background: var(--black); color: white; }
.contact-box h3 { margin: 0 0 8px; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.contact-box p { margin: 0 0 24px; color: #cbc3b7; }
.contact-box .contact-number { color: white; font-family: var(--display); font-size: 1.5rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.product-page { padding: 74px 0 100px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(40px, 7vw, 100px); align-items: start; min-width: 0; }
.product-main-image { display: grid; width: 100%; max-width: 100%; aspect-ratio: 4 / 5; place-items: center; overflow: hidden; background: var(--ivory); }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; }
.product-details { position: sticky; top: 126px; min-width: 0; max-width: 100%; padding-top: 18px; }
.breadcrumbs { margin-bottom: 24px; color: var(--muted); font-size: .78rem; }
.product-details h1 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4.5vw, 4.6rem); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.product-details .price { margin: 18px 0; font-size: 1.25rem; font-weight: 800; }
.product-description { color: var(--muted); }
.choice { margin: 26px 0; }
.choice label { display: block; margin-bottom: 8px; font-size: .77rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.choice-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.choice-heading span { font-size: .77rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.choice-heading small { color: var(--muted); font-size: .72rem; }
.choice select { width: 100%; max-width: 100%; min-height: 50px; padding: 10px 12px; border: 1px solid var(--line); background: white; }
.size-options { display: grid; grid-template-columns: repeat(4, minmax(54px, 1fr)); gap: 8px; margin-top: 10px; }
.size-option { min-height: 44px; padding: 8px; border: 1px solid var(--ink); background: white; color: var(--ink); font-size: .82rem; font-weight: 800; cursor: pointer; }
.size-option:hover:not(:disabled), .size-option.selected { border-color: var(--orange); background: var(--orange); color: white; }
.size-option.unavailable, .size-option:disabled { border-color: #d6d0c7; background: #eeeae3; color: #a49d93; cursor: not-allowed; text-decoration: line-through; }
.variant-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 12px; }
.variant-option { display: grid; grid-template-columns: 62px minmax(0, 1fr); align-items: center; gap: 10px; min-width: 0; min-height: 72px; padding: 5px; border: 1px solid var(--line); background: white; color: var(--ink); text-align: left; cursor: pointer; }
.variant-option:hover, .variant-option.selected { border-color: var(--orange); box-shadow: inset 0 0 0 1px var(--orange); }
.variant-option img { width: 62px; height: 62px; object-fit: cover; background: var(--ivory); }
.variant-option span { display: grid; min-width: 0; gap: 3px; padding-right: 5px; }
.variant-option small { color: var(--gold-deep); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.variant-option strong { font-size: .76rem; line-height: 1.25; }
.size-guide { width: 100%; min-width: 0; max-width: 100%; margin: 28px 0 24px; padding: 22px 0 4px; border-block: 1px solid var(--line); }
.size-guide-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.size-guide-heading .eyebrow { margin: 0; }
.size-guide-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.35rem); font-weight: 500; }
.size-guide-body { width: 100%; min-width: 0; max-width: 100%; padding: 0 0 20px; }
.size-guide-body img { display: block; width: 100%; height: auto; border: 1px solid var(--line); background: white; }
.size-guide-body p, .size-guide-missing { color: var(--muted); font-size: .8rem; }
.size-chart-section + .size-chart-section { margin-top: 22px; }
.size-chart-section h3 { margin-bottom: 8px; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.size-chart-subsection + .size-chart-subsection { margin-top: 16px; }
.size-chart-subsection h4 { margin: 0 0 6px; font-size: .82rem; }
.sold-out-message { display: grid; gap: 3px; }
.sold-out-message strong { color: var(--ink); }
.discount-row { color: #735418; }
.size-guide-missing { margin: 22px 0 24px; padding: 16px; border-left: 3px solid var(--orange); background: var(--ivory); }
.size-guide-missing strong { color: var(--ink); }
.size-guide-missing p { margin: 5px 0 0; }
.size-guide-missing a { border-bottom: 1px solid currentColor; }
.product-specs { margin-top: 26px; border-top: 1px solid var(--line); }
.product-spec { display: grid; grid-template-columns: 132px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.product-spec strong { color: var(--ink); }
.product-spec span { color: var(--muted); }
.related-products { padding-top: 0; }
.product-notes { display: grid; gap: 10px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.product-notes span::before { content: "✓"; margin-right: 9px; color: var(--gold-deep); font-weight: 900; }

.cart-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: start; }
.cart-list { border-top: 1px solid var(--line); }
.cart-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 110px; height: 135px; object-fit: cover; background: var(--ivory); }
.cart-item h3 { margin: 0 0 4px; font-family: var(--display); font-size: 1.2rem; font-weight: 400; }
.cart-item p { margin: 3px 0; color: var(--muted); font-size: .82rem; }
.remove-item { padding: 0; border: 0; background: transparent; color: var(--orange); text-decoration: underline; cursor: pointer; }
.summary-card { position: sticky; top: 126px; padding: 30px; background: var(--ivory); }
.summary-card h2 { margin: 0 0 20px; font-family: var(--display); font-size: 1.8rem; font-weight: 400; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; }
.order-variant { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; }
.summary-row.total { margin-top: 12px; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 800; }
.summary-note { margin: 18px 0; color: var(--muted); font-size: .8rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr .72fr; gap: 50px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 6px; font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.form-field input, .form-field select { width: 100%; min-height: 50px; padding: 11px 12px; border: 1px solid var(--line); background: white; }
.checkout-notice { padding: 22px; margin-top: 24px; border-left: 3px solid var(--gold); background: var(--ivory); }
.checkout-notice p { margin: 8px 0 0; color: var(--muted); }
.legal-copy { max-width: 780px; }
.legal-copy h2 { margin: 42px 0 10px; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.legal-copy p, .legal-copy li { color: #504b44; }

.site-footer { padding: 72px 0 26px; background: var(--black); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 60px; }
.footer-brand img { width: 250px; max-height: 76px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 420px; color: #bdb5a9; }
.footer-column h3 { margin: 0 0 18px; color: #e2c981; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 9px 0; color: #d8d1c7; font-size: .9rem; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #8f887f; font-size: .76rem; }
.footer-bottom a { color: #d8d1c7; border-bottom: 1px solid currentColor; }
.toast { position: fixed; z-index: 100; right: 22px; bottom: 22px; max-width: min(360px, calc(100vw - 44px)); padding: 14px 18px; border-left: 3px solid var(--gold); background: var(--black); color: white; box-shadow: 0 16px 50px rgba(0,0,0,.2); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .site-header { backdrop-filter: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav { position: fixed; inset: 0; z-index: 60; display: none; min-height: 100dvh; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 112px 30px 44px; overflow-y: auto; background: var(--black); color: white; }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 18px 2px; border-bottom: 1px solid rgba(255,255,255,.2); font-family: var(--display); font-size: clamp(1.8rem, 7vw, 2.4rem); font-weight: 400; }
  .nav a::after { display: none; }
  .menu-toggle { display: grid; z-index: 70; }
  .menu-toggle.active { position: fixed; top: 28px; right: 24px; color: white; }
  .logo { justify-self: center; }
  .logo img { width: 210px; }
  .search-link { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 74px 30px 60px; }
  .hero-visual { min-height: 560px; }
  .resort-hero-inner, .resort-copy { min-height: 650px; }
  .resort-copy { width: min(72%, 660px); padding: 54px 38px; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 540px; }
  .editorial { grid-template-columns: 1fr; }
  .story-intro, .care-layout { grid-template-columns: 1fr; }
  .care-aside { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 40px), var(--max)); }
  .announcement { padding: 8px 12px; font-size: .65rem; letter-spacing: .08em; }
  .header-inner { min-height: 84px; gap: 10px; }
  .logo img { width: 205px; max-height: 62px; }
  .icon-button { width: 38px; height: 38px; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 68px 20px 52px; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5.8rem); }
  .hero-visual { min-height: 460px; }
  .hero-stamp { width: 98px; height: 98px; }
  .resort-hero-inner { min-height: 660px; }
  .resort-collage::after { background: linear-gradient(0deg, rgba(4,4,4,.82) 0%, rgba(4,4,4,.54) 47%, rgba(4,4,4,.12) 100%); }
  .resort-photo-main img { object-position: center 22%; }
  .resort-copy {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 660px;
    justify-content: flex-end;
    padding: 38px 24px 42px;
  }
  .resort-copy h1 { max-width: 340px; font-size: clamp(2.85rem, 13vw, 4rem); line-height: .95; }
  .resort-rule { margin: 18px 0 14px; }
  .resort-copy > p:not(.eyebrow) { margin: 0 0 24px; font-size: 1rem; line-height: 1.55; }
  .resort-copy .button { width: 100%; }
  .swim-first { padding-top: 58px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 68px 0; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 26px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .category-card { min-height: 300px; }
  .category-content { padding: 18px 14px; }
  .category-copy-desktop { display: none; }
  .category-copy-mobile { display: inline; }
  .category-content span { font-size: .66rem; letter-spacing: .1em; line-height: 1.4; }
  .category-content h3 { font-size: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 10px; }
  .product-name { font-size: .98rem; }
  .quick-add { position: static; width: 100%; margin-top: 8px; opacity: 1; transform: none; }
  .editorial-image { min-height: 480px; }
  .editorial-copy { padding: 54px 22px; }
  .instagram-inner { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 60px 0 46px; }
  .shop-hero h1 { white-space: normal; font-size: clamp(2.6rem, 13vw, 4rem); }
  .shop-toolbar { top: 84px; }
  .toolbar-inner { grid-template-columns: 1fr auto; }
  .filters { grid-column: 1 / -1; grid-row: 2; }
  .subfilters { grid-row: 3; flex-direction: column; align-items: flex-start; overflow: visible; }
  .subfilter-group { width: 100%; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
  .subfilter-group::-webkit-scrollbar { display: none; }
  .search-box { grid-column: 1; grid-row: 1; width: auto; }
  .sort-select { grid-column: 2; grid-row: 1; max-width: 145px; }
  .values-grid { grid-template-columns: 1fr; }
  .size-list { grid-template-columns: 1fr; }
  .delivery-rates { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: minmax(0, 1fr); width: 100%; min-width: 0; max-width: 100%; gap: 0; }
  .product-page { padding: 30px 0 70px; }
  .product-gallery { width: 100%; max-width: none; margin-inline: auto; }
  .product-main-image { width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .product-thumbnails { gap: 7px; }
  .product-thumbnail { max-width: none; }
  .variant-options { grid-template-columns: 1fr; }
  .product-details { width: 100%; min-width: 0; max-width: 100%; padding: 24px 2px 0; }
  .breadcrumbs { margin-bottom: 16px; }
  .product-details h1 { max-width: 100%; overflow-wrap: break-word; font-size: clamp(1.9rem, 8vw, 2.3rem); line-height: 1.08; }
  .product-description { margin-right: 0; overflow-wrap: break-word; }
  .size-guide-heading h2 { font-size: 1.75rem; }
  .size-guide-heading { min-width: 0; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px; }
  .size-guide-body, .size-chart-section { min-width: 0; max-width: 100%; }
  .size-chart-scroll { width: 100%; max-width: 100%; margin-inline: 0; }
  .size-chart-scroll table { min-width: 620px; table-layout: auto; font-size: .72rem; }
  .size-chart-scroll th, .size-chart-scroll td { padding: 7px 6px; white-space: nowrap; }
  .product-details { position: static; }
  .product-spec { grid-template-columns: 104px minmax(0, 1fr); gap: 12px; }
  .product-spec span { min-width: 0; overflow-wrap: anywhere; }
  .cart-item { grid-template-columns: 86px 1fr; }
  .cart-item img { width: 86px; height: 108px; }
  .cart-item > strong { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
