@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

.cs-site {
  --cs-ink: #102d3c;
  --cs-deep: #08202d;
  --cs-water: #166f83;
  --cs-aqua: #65d7cf;
  --cs-coral: #f08369;
  --cs-sand: #f6f0e6;
  --cs-paper: #fffdf9;
  --cs-muted: #61747a;
  --cs-line: rgba(16, 45, 60, .14);
  --cs-shadow: 0 22px 60px rgba(8, 32, 45, .12);
}

body.cs-site {
  margin: 0;
  color: var(--cs-ink);
  background: var(--cs-sand);
  font-family: 'DM Sans', 'Trebuchet MS', sans-serif;
  line-height: 1.6;
}

.cs-site *, .cs-site *::before, .cs-site *::after { box-sizing: border-box; }
.cs-site a { color: inherit; }
.cs-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; }
.cs-site a:focus-visible, .cs-site button:focus-visible, .cs-site input:focus-visible,
.cs-site select:focus-visible, .cs-site textarea:focus-visible {
  outline: 3px solid var(--cs-coral);
  outline-offset: 4px;
}

.cs-shell { min-height: 100vh; overflow: hidden; }
.cs-container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--cs-coral);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.cs-eyebrow::before { content: ''; width: 30px; height: 2px; background: currentColor; }
.cs-display { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -.04em; }

.cs-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}
.cs-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.cs-brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--cs-aqua);
  border-radius: 50%;
  color: var(--cs-aqua);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.14em;
  background: rgba(101, 215, 207, .08);
}
.cs-brand-copy { display: grid; line-height: 1.05; }
.cs-brand-name { color: currentColor; font-family: 'Fraunces', Georgia, serif; font-size: 1.18rem; font-weight: 600; }
.cs-brand-tag { margin-top: 4px; color: var(--cs-muted); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.cs-header-dark { color: var(--cs-paper); }
.cs-header-dark .cs-brand-tag { color: rgba(255, 253, 249, .62); }
.cs-nav { display: flex; align-items: center; gap: 26px; font-size: .84rem; font-weight: 600; }
.cs-nav a { text-decoration: none; opacity: .78; transition: opacity .25s ease, color .25s ease; }
.cs-nav a:hover { color: var(--cs-coral); opacity: 1; }
.cs-nav-cta { padding: 10px 16px; border: 1px solid currentColor; border-radius: 999px; opacity: 1 !important; }
.cs-nav-cta:hover { border-color: var(--cs-coral); }

.cs-hero {
  position: relative;
  min-height: 620px;
  margin-top: -92px;
  padding: 190px 0 90px;
  overflow: hidden;
  color: var(--cs-paper);
  background: var(--cs-deep);
}
.cs-hero::before, .cs-hero::after {
  position: absolute;
  content: '';
  border-radius: 50%;
  pointer-events: none;
}
.cs-hero::before { width: 620px; height: 620px; right: -140px; top: 50px; background: radial-gradient(circle, rgba(22, 111, 131, .64), rgba(8, 32, 45, 0) 68%); }
.cs-hero::after { width: 450px; height: 450px; left: -210px; bottom: -250px; border: 1px solid rgba(101, 215, 207, .22); box-shadow: 0 0 0 45px rgba(101, 215, 207, .035), 0 0 0 90px rgba(101, 215, 207, .025); }
.cs-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); align-items: center; gap: 60px; }
.cs-hero h1 { max-width: 650px; margin: 22px 0 20px; font-size: clamp(3.4rem, 7vw, 6.7rem); line-height: .93; }
.cs-hero h1 em { color: var(--cs-aqua); font-style: normal; }
.cs-hero-lede { max-width: 500px; margin: 0; color: rgba(255, 253, 249, .73); font-size: 1.08rem; }
.cs-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.cs-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font: inherit; font-size: .84rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.cs-button:hover { transform: translateY(-2px); }
.cs-button-primary { color: var(--cs-deep); background: var(--cs-aqua); }
.cs-button-primary:hover { background: #8ce5de; }
.cs-button-ghost { color: var(--cs-paper); border-color: rgba(255, 253, 249, .35); background: transparent; }
.cs-button-ghost:hover { border-color: var(--cs-aqua); }
.cs-hero-note { margin-top: 28px; color: rgba(255, 253, 249, .52); font-size: .76rem; }

.cs-hero-art { position: relative; min-height: 390px; }
.cs-art-orbit, .cs-art-orbit::before, .cs-art-orbit::after { position: absolute; border: 1px solid rgba(101, 215, 207, .35); border-radius: 50%; }
.cs-art-orbit { width: 350px; height: 350px; top: 18px; left: 50%; transform: translateX(-50%) rotate(-16deg); }
.cs-art-orbit::before { content: ''; inset: 22px -26px; transform: rotate(64deg); }
.cs-art-orbit::after { content: ''; inset: 58px 30px; transform: rotate(-34deg); }
.cs-art-sun { position: absolute; top: 50px; right: 2%; width: 86px; height: 86px; border-radius: 50%; background: var(--cs-coral); box-shadow: 0 0 0 16px rgba(240, 131, 105, .1), 0 0 80px rgba(240, 131, 105, .35); }
.cs-art-card { position: absolute; top: 86px; left: 50%; display: grid; width: 238px; height: 290px; place-items: center; transform: translateX(-50%) rotate(7deg); border: 1px solid rgba(255, 253, 249, .3); border-radius: 120px 120px 32px 32px; color: var(--cs-paper); background: linear-gradient(160deg, #2a9eab, #0e526a 68%, #08303d); box-shadow: 30px 34px 0 rgba(101, 215, 207, .1), 0 30px 60px rgba(0, 0, 0, .25); }
.cs-art-card::before { position: absolute; content: ''; width: 120px; height: 120px; border: 1px solid rgba(255, 253, 249, .4); border-radius: 50%; }
.cs-art-card-copy { position: relative; z-index: 1; text-align: center; transform: rotate(-7deg); }
.cs-art-card-copy strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 2rem; line-height: .9; }
.cs-art-card-copy span { display: block; margin-top: 10px; color: var(--cs-aqua); font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.cs-art-wave { position: absolute; bottom: 18px; left: 9%; width: 84px; height: 42px; border-top: 2px solid var(--cs-aqua); border-radius: 50%; transform: rotate(-11deg); box-shadow: 0 12px 0 -5px var(--cs-aqua), 0 24px 0 -10px var(--cs-aqua); }

.cs-main { background: var(--cs-sand); }
.cs-section { padding: 100px 0; }
.cs-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.cs-section-heading h2 { max-width: 560px; margin: 10px 0 0; font-size: clamp(2.2rem, 5vw, 4rem); line-height: .98; }
.cs-section-heading p { max-width: 330px; margin: 0; color: var(--cs-muted); font-size: .95rem; }
.cs-catalog-controls { display: grid; grid-template-columns: 1fr 220px; gap: 12px; margin: 24px 0 34px; }
.cs-field, .cs-select, .cs-textarea { width: 100%; border: 1px solid var(--cs-line); border-radius: 14px; color: var(--cs-ink); background: rgba(255, 253, 249, .72); font: inherit; }
.cs-field, .cs-select { min-height: 50px; padding: 13px 16px; }
.cs-textarea { min-height: 124px; padding: 14px 16px; resize: vertical; }
.cs-field::placeholder, .cs-textarea::placeholder { color: #839296; }
.cs-status { min-height: 26px; margin: 0 0 18px; color: var(--cs-muted); font-size: .9rem; }
.cs-status-error { color: #a84036; }
.cs-status-success { color: #236a5b; }
.cs-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cs-product-card { position: relative; display: flex; min-height: 430px; flex-direction: column; overflow: hidden; border: 1px solid rgba(16, 45, 60, .1); border-radius: 26px; background: var(--cs-paper); box-shadow: 0 10px 25px rgba(8, 32, 45, .04); transition: transform .3s ease, box-shadow .3s ease; }
.cs-product-card:hover { transform: translateY(-6px); box-shadow: var(--cs-shadow); }
.cs-product-art { position: relative; display: grid; min-height: 205px; place-items: center; overflow: hidden; color: var(--cs-paper); background: linear-gradient(135deg, var(--cs-art-a, #1b8390), var(--cs-art-b, #0c4358)); }
.cs-product-art > img { width: 100%; height: 100%; min-height: 205px; object-fit: cover; }
.cs-product-art::before, .cs-product-art::after { position: absolute; content: ''; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; }
.cs-product-art::before { width: 190px; height: 190px; transform: translate(40px, -20px); }
.cs-product-art::after { width: 120px; height: 120px; transform: translate(-120px, 80px); }
.cs-product-art-label { position: relative; z-index: 1; width: 150px; height: 150px; padding: 20px; border: 1px solid rgba(255, 255, 255, .48); border-radius: 50%; text-align: center; background: rgba(8, 32, 45, .18); }
.cs-product-art-label strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 2.05rem; line-height: 1; }
.cs-product-art-label span { display: block; margin-top: 8px; font-size: .57rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.cs-product-content { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.cs-product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--cs-muted); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cs-badge { display: inline-flex; width: fit-content; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 999px; font-size: .63rem; letter-spacing: .06em; text-transform: uppercase; }
.cs-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.cs-badge-on_request { color: #96621d; background: #fff1ce; }
.cs-badge-available { color: #236a5b; background: #dff4e9; }
.cs-badge-limited { color: #9a4937; background: #ffe4d9; }
.cs-badge-unavailable { color: #66767b; background: #e8edef; }
.cs-product-card h3 { margin: 16px 0 7px; font-family: 'Fraunces', Georgia, serif; font-size: 1.75rem; line-height: 1; }
.cs-product-card p { margin: 0; color: var(--cs-muted); font-size: .9rem; }
.cs-product-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--cs-water); font-size: .82rem; font-weight: 700; text-decoration: none; }
.cs-product-link::after { content: '↗'; font-size: 1.1rem; transition: transform .2s ease; }
.cs-product-link:hover::after { transform: translate(3px, -3px); }
.cs-group { margin-top: 66px; }
.cs-group:first-child { margin-top: 0; }
.cs-group h3 { margin: 0 0 18px; font-family: 'Fraunces', Georgia, serif; font-size: 2rem; }
.cs-empty { padding: 45px 20px; border: 1px dashed var(--cs-line); border-radius: 20px; color: var(--cs-muted); text-align: center; }

.cs-note-band { position: relative; padding: 70px 0; color: var(--cs-paper); background: var(--cs-water); overflow: hidden; }
.cs-note-band::after { position: absolute; content: ''; width: 440px; height: 440px; right: -180px; top: -210px; border: 1px solid rgba(255, 253, 249, .22); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255, 253, 249, .04), 0 0 0 68px rgba(255, 253, 249, .03); }
.cs-note-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cs-note-band h2 { max-width: 520px; margin: 12px 0 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
.cs-note-band p { max-width: 490px; margin: 0; color: rgba(255, 253, 249, .76); }
.cs-note-band .cs-eyebrow { color: var(--cs-aqua); }

.cs-detail-hero { padding: 62px 0 52px; background: var(--cs-paper); }
.cs-breadcrumb { color: var(--cs-muted); font-size: .8rem; }
.cs-breadcrumb a { color: var(--cs-water); text-underline-offset: 4px; }
.cs-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; margin-top: 45px; }
.cs-detail-visual { position: sticky; top: 22px; display: grid; min-height: 490px; place-items: center; overflow: hidden; border-radius: 34px; background: linear-gradient(140deg, #2a9eab, #0c4358); box-shadow: var(--cs-shadow); }
.cs-detail-visual::before, .cs-detail-visual::after { position: absolute; content: ''; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; }
.cs-detail-visual > img { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 490px; object-fit: cover; }
.cs-detail-visual::before { width: 420px; height: 420px; }
.cs-detail-visual::after { width: 270px; height: 270px; }
.cs-detail-visual .cs-product-art-label { width: 210px; height: 210px; padding-top: 70px; }
.cs-detail-visual .cs-product-art-label strong { font-size: 3.2rem; }
.cs-detail-copy h1 { max-width: 680px; margin: 18px 0; font-size: clamp(3rem, 6vw, 5.7rem); line-height: .92; }
.cs-detail-copy > p { max-width: 600px; color: var(--cs-muted); font-size: 1.06rem; }
.cs-detail-availability { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 25px 0; }
.cs-detail-availability-note { color: var(--cs-muted); font-size: .85rem; }
.cs-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 30px 0 0; }
.cs-spec { padding: 15px 17px; border: 1px solid var(--cs-line); border-radius: 15px; background: var(--cs-sand); }
.cs-spec dt { color: var(--cs-muted); font-size: .65rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.cs-spec dd { margin: 3px 0 0; font-size: .9rem; font-weight: 600; }

.cs-form-section { padding: 95px 0 110px; background: var(--cs-sand); }
.cs-form-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.cs-form-intro h2 { margin: 13px 0 17px; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: .98; }
.cs-form-intro p { max-width: 390px; color: var(--cs-muted); }
.cs-form-callout { margin-top: 25px; padding: 17px 18px; border-left: 3px solid var(--cs-coral); color: var(--cs-muted); font-size: .83rem; background: rgba(255, 253, 249, .65); }
.cs-form { padding: 30px; border: 1px solid var(--cs-line); border-radius: 24px; background: var(--cs-paper); box-shadow: 0 15px 40px rgba(8, 32, 45, .07); }
.cs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cs-form-field { margin-bottom: 18px; }
.cs-form-field label { display: block; margin-bottom: 7px; color: var(--cs-ink); font-size: .76rem; font-weight: 700; }
.cs-form-field label span { color: var(--cs-coral); }
.cs-form-help { margin: 0 0 22px; color: var(--cs-muted); font-size: .78rem; }
.cs-form .cs-button { width: 100%; border: 0; }
.cs-form .cs-button[disabled] { cursor: wait; opacity: .65; transform: none; }
.cs-form-feedback { min-height: 25px; margin: 0 0 15px; font-size: .85rem; }
.cs-form-feedback.cs-status-error { color: #a84036; }
.cs-form-feedback.cs-status-success { color: #236a5b; }

.cs-footer { padding: 36px 0; color: rgba(255, 253, 249, .72); background: var(--cs-deep); font-size: .78rem; }
.cs-footer-row { display: flex; justify-content: space-between; gap: 22px; align-items: center; }
.cs-footer .cs-brand-name { color: var(--cs-paper); }
.cs-footer .cs-brand-tag { color: rgba(255, 253, 249, .46); }
.cs-footer a { color: var(--cs-aqua); text-underline-offset: 3px; }

@media (max-width: 850px) {
  .cs-hero-grid, .cs-note-grid, .cs-detail-grid, .cs-form-grid { grid-template-columns: 1fr; }
  .cs-hero { min-height: auto; padding-top: 155px; }
  .cs-hero-art { min-height: 330px; margin-top: 10px; }
  .cs-product-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-detail-visual { position: relative; min-height: 380px; }
  .cs-form-grid { gap: 35px; }
}
@media (max-width: 600px) {
  .cs-container, .cs-header { width: min(100% - 28px, 1160px); }
  .cs-header { align-items: flex-start; }
  .cs-nav { gap: 12px; font-size: .72rem; }
  .cs-nav a:not(.cs-nav-cta) { display: none; }
  .cs-nav-cta { padding: 8px 12px; }
  .cs-hero { margin-top: -88px; padding-bottom: 50px; }
  .cs-hero h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
  .cs-hero-art { transform: scale(.82); transform-origin: top center; margin-bottom: -55px; }
  .cs-section, .cs-form-section { padding: 70px 0; }
  .cs-section-heading, .cs-footer-row { display: block; }
  .cs-section-heading p { margin-top: 18px; }
  .cs-catalog-controls, .cs-product-grid, .cs-form-row { grid-template-columns: 1fr; }
  .cs-product-card { min-height: 395px; }
  .cs-detail-hero { padding-top: 36px; }
  .cs-detail-grid { gap: 32px; margin-top: 30px; }
  .cs-detail-copy h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .cs-specs { grid-template-columns: 1fr; }
  .cs-form { padding: 21px; }
  .cs-footer-row > * + * { margin-top: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .cs-site *, .cs-site *::before, .cs-site *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
