:root {
  --ink: #173338;
  --muted: #5d7477;
  --paper: #fbf8f2;
  --shell: #fffdf8;
  --sea: #0d6c70;
  --sea-deep: #064b50;
  --lagoon: #8bd3c7;
  --coral: #d9785e;
  --citrine: #d9b65f;
  --line: rgba(23, 51, 56, 0.14);
  --shadow: 0 24px 70px rgba(13, 58, 62, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 51, 56, 0.045) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 30, 34, 0.58), rgba(6, 30, 34, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  font-size: 0.78rem;
}

.brand-mark::after {
  content: "";
  position: absolute;
}

.nav {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  text-underline-offset: 6px;
}

.nav a:hover,
.nav a:focus-visible {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #d7eef0;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 31, 35, 0.82) 0%, rgba(6, 31, 35, 0.42) 37%, rgba(6, 31, 35, 0.04) 76%),
    linear-gradient(0deg, rgba(6, 31, 35, 0.34) 0%, rgba(6, 31, 35, 0) 38%);
}

.hero::after {
  content: "Water Ragz / Sustainable Resortwear / Since Summer";
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 4vw, 46px);
  max-width: 360px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: right;
}

.tide-stamp {
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  top: 24vh;
  z-index: 2;
  display: grid;
  width: clamp(128px, 13vw, 190px);
  height: clamp(128px, 13vw, 190px);
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  transform: rotate(-8deg);
  backdrop-filter: blur(4px);
}

.tide-stamp span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tide-stamp strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 0.96;
  font-weight: 500;
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  padding: 140px 0 clamp(54px, 10vh, 112px) clamp(18px, 6vw, 72px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb19e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--coral), #b65348);
  color: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.74);
  color: #fff;
}

.section {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 6vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(115deg, rgba(139, 211, 199, 0.32) 0 32%, transparent 32%),
    var(--shell);
}

.intro p {
  max-width: 1050px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.2vw, 3.8rem);
  line-height: 1.14;
}

.intro-kicker {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding-top: 10px;
  color: var(--sea-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.intro-kicker span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--sea);
  border-radius: 50%;
}

.intro-kicker strong {
  font-size: 0.82rem;
}

.mini-manifesto {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.mini-manifesto span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--sea-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collection {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, 0.58) 100%),
    #eaf7f5;
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.piece {
  position: relative;
  min-height: 320px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
  overflow: hidden;
}

.piece::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(13, 108, 112, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(transparent 47%, rgba(13, 108, 112, 0.22) 48% 52%, transparent 53%),
    linear-gradient(90deg, transparent 47%, rgba(13, 108, 112, 0.22) 48% 52%, transparent 53%);
  opacity: 0.72;
}

.piece:nth-child(even)::before {
  border-radius: 8px;
  transform: rotate(12deg);
}

.piece-number {
  display: block;
  margin-bottom: 92px;
  color: var(--sea);
  font-weight: 900;
}

.piece p,
.ethos-copy p,
.text-list,
.contact-panel p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 8vw, 116px);
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(217, 182, 95, 0.16) 58% 100%),
    var(--paper);
}

.ethos-copy {
  font-size: 1.05rem;
}

.text-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.text-list li {
  padding-left: 28px;
  background: linear-gradient(var(--sea), var(--sea)) left 0.72em / 12px 2px no-repeat;
}

.ritual {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
  background: var(--sea-deep);
  color: #fff;
  overflow: hidden;
}

.ritual h2 {
  max-width: 760px;
}

.ritual .eyebrow {
  color: #ffb19e;
}

.ritual-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 470px;
  width: min(100%, 470px);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 211, 199, 0.22) 0 28%, transparent 29%),
    conic-gradient(from 28deg, rgba(217, 120, 94, 0.58), rgba(217, 182, 95, 0.42), rgba(139, 211, 199, 0.42), rgba(217, 120, 94, 0.58));
}

.ritual-orbit span {
  position: absolute;
  display: grid;
  min-width: 86px;
  min-height: 86px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: rgba(6, 75, 80, 0.86);
  font-weight: 900;
  text-transform: uppercase;
}

.ritual-orbit span:nth-child(1) {
  top: -14px;
  left: 38%;
}

.ritual-orbit span:nth-child(2) {
  top: 41%;
  right: -18px;
}

.ritual-orbit span:nth-child(3) {
  bottom: -12px;
  left: 40%;
}

.ritual-orbit span:nth-child(4) {
  top: 40%;
  left: -18px;
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: #fff;
}

.look {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 58px);
  background: var(--sea-deep);
}

.look p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
}

.look strong {
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 1.04;
  font-weight: 500;
}

.look-swim {
  background:
    linear-gradient(rgba(6, 75, 80, 0.5), rgba(6, 75, 80, 0.85)),
    radial-gradient(circle at 20% 20%, rgba(217, 182, 95, 0.78), transparent 30%),
    var(--sea-deep);
}

.look-day {
  background:
    linear-gradient(rgba(169, 78, 64, 0.38), rgba(87, 47, 42, 0.82)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 18px),
    var(--coral);
}

.look-evening {
  background:
    linear-gradient(rgba(20, 46, 45, 0.34), rgba(20, 46, 45, 0.88)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.42), transparent 24%),
    #283b3b;
}

.contact {
  background:
    linear-gradient(135deg, rgba(217, 120, 94, 0.13), transparent 42%),
    var(--shell);
}

.contact-panel {
  max-width: 980px;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-panel::before {
  content: "MAIL-ONLY";
  color: var(--citrine);
  font-size: clamp(2.6rem, 8vw, 7rem);
  font-weight: 950;
  line-height: 0.8;
}

.contact-panel h2 {
  max-width: 780px;
}

.contact-panel p {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.contact-panel a:not(.button) {
  color: var(--sea);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 6vw, 72px);
  background: var(--sea-deep);
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .collection-grid,
  .lookbook,
  .ritual,
  .split {
    grid-template-columns: 1fr;
  }

  .tide-stamp {
    top: 16vh;
    right: 22px;
  }

  .piece {
    min-height: 240px;
  }

  .piece-number {
    margin-bottom: 46px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: 100%;
    padding: 118px 18px 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 31, 35, 0.78) 0%, rgba(6, 31, 35, 0.38) 62%, rgba(6, 31, 35, 0.18) 100%),
      linear-gradient(0deg, rgba(6, 31, 35, 0.45) 0%, rgba(6, 31, 35, 0) 48%);
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .intro-kicker {
    position: static;
    grid-template-columns: 64px 1fr;
    align-items: center;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
