:root {
  color-scheme: light;
  --ink: #12313d;
  --deep: #06384a;
  --ocean: #137f96;
  --aqua: #7fd0d7;
  --sky: #dff4f6;
  --sand: #ead8ba;
  --shell: #fffaf1;
  --white: #fffefe;
  --coral: #ef836d;
  --muted: #5c737a;
  --line: #d6e6e5;
  --shadow: 0 24px 70px rgba(6, 56, 74, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--shell);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.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(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 254, 254, 0.92);
  box-shadow: 0 8px 28px rgba(18, 49, 61, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 54, 72, 0.78), rgba(19, 127, 150, 0.38) 48%, rgba(255, 250, 241, 0.05)),
    linear-gradient(0deg, rgba(5, 54, 72, 0.42), rgba(5, 54, 72, 0.02) 50%);
}

.hero-content {
  width: min(790px, calc(100% - 40px));
  margin: 0 0 clamp(44px, 8vw, 86px) clamp(20px, 8vw, 104px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #ffd0c2;
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--coral);
}

.hero h1,
.section h2,
.video-copy h2,
.about-copy h2,
.follow h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.85rem, 6vw, 5.65rem);
  line-height: 0.94;
}

.section h2,
.video-copy h2,
.about-copy h2,
.follow h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 254, 254, 0.9);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.mini-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.mini-button {
  color: var(--white);
  background: var(--ocean);
}

.button.primary:hover,
.mini-button:hover {
  background: var(--deep);
}

.button.secondary,
.button.ghost {
  color: var(--white);
  border-color: rgba(255, 254, 254, 0.62);
  background: rgba(255, 254, 254, 0.1);
}

.button.secondary:hover,
.button.ghost:hover {
  color: var(--white);
  border-color: var(--ocean);
  background: var(--ocean);
}

.goal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.goal-strip div {
  min-height: 140px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
}

.goal-strip strong {
  display: block;
  color: var(--ocean);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.goal-strip span {
  display: block;
  max-width: 330px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 36px;
}

.section-intro p:last-child,
.video-copy p,
.about-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.book-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 56, 74, 0.08);
}

.book-cover {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.86) 0 5%, transparent 6%),
    linear-gradient(135deg, #cceff2, #6cc3cc 46%, #f1cdb6);
}

.book-cover span {
  width: min(180px, 68%);
  aspect-ratio: 0.68;
  border: 10px solid var(--white);
  border-radius: 7px;
  background:
    radial-gradient(circle at 55% 32%, transparent 0 16%, #137f96 17% 19%, transparent 20%),
    radial-gradient(circle at 46% 52%, transparent 0 18%, #ef836d 19% 21%, transparent 22%),
    linear-gradient(160deg, #effbfb, #9ddde1);
  box-shadow: 0 22px 36px rgba(6, 56, 74, 0.24);
  transform: rotate(-3deg);
}

.cozy-ocean .book-cover {
  background: linear-gradient(135deg, #f6e1c6, #dff4f6 48%, #88ced6);
}

.cozy-ocean .book-cover span {
  transform: rotate(2deg);
  background:
    radial-gradient(circle at 50% 46%, #fffaf1 0 18%, transparent 19%),
    linear-gradient(160deg, #f9efe0, #8ed3d8);
}

.red-sea .book-cover {
  background: linear-gradient(135deg, #bfeff1, #137f96 52%, #ef836d);
}

.red-sea .book-cover span {
  background:
    radial-gradient(circle at 42% 34%, transparent 0 15%, #ef836d 16% 18%, transparent 19%),
    radial-gradient(circle at 60% 58%, transparent 0 13%, #137f96 14% 16%, transparent 17%),
    linear-gradient(160deg, #fffefe, #bcebed);
}

.book-copy {
  padding: 24px;
}

.book-cover-image {
  width: 100%;
  height: 310px;
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(135deg, #dff4f6, #fffaf1);
}

.book-copy p {
  margin: 0 0 10px;
  color: var(--coral);
  font-family: Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.book-copy h3,
.video-card h3,
.art-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
}

.book-copy span {
  display: block;
  min-height: 54px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-weight: 600;
}

.mini-button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.video-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--ocean));
}

.video-section .section-kicker {
  color: #ffd0c2;
}

.video-copy {
  align-self: center;
}

.video-copy p {
  margin: 24px 0 28px;
  color: rgba(255, 254, 254, 0.82);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.video-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(6, 56, 74, 0.16);
}

.video-card::after {
  content: none;
}

.video-card img {
  position: static;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--sky);
}

.video-card > div {
  padding: 22px;
}

.play-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 254, 254, 0.92);
  box-shadow: 0 10px 24px rgba(6, 56, 74, 0.2);
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 19px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--coral);
}

.video-card p,
.art-card span {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.art-gallery {
  background: var(--white);
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.art-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(6, 56, 74, 0.9), rgba(6, 56, 74, 0.06)),
    radial-gradient(circle at 62% 30%, rgba(255, 255, 255, 0.9) 0 5%, transparent 6%),
    linear-gradient(135deg, #137f96, #7fd0d7 62%, #ef836d);
}

.art-card.reef-art {
  background:
    linear-gradient(0deg, rgba(6, 56, 74, 0.9), rgba(6, 56, 74, 0.06)),
    linear-gradient(135deg, #f0d8b7, #7fd0d7 52%, #137f96);
}

.art-card.printable {
  background:
    linear-gradient(0deg, rgba(6, 56, 74, 0.9), rgba(6, 56, 74, 0.06)),
    linear-gradient(135deg, #ef836d, #f4d8bf 48%, #137f96);
}

.art-card span {
  color: #ffd0c2;
  font-family: Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.jewelry-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #fffaf1, #dff4f6);
}

.jewelry-copy {
  align-self: center;
}

.jewelry-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.jewelry-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.jewelry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jewelry-card {
  min-height: 0;
  aspect-ratio: 1 / 1.08;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background: #06384a;
  box-shadow: 0 16px 44px rgba(6, 56, 74, 0.12);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.jewelry-card:hover,
.jewelry-card:focus-visible {
  box-shadow: 0 20px 52px rgba(6, 56, 74, 0.2);
  transform: translateY(-4px);
}

.jewelry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.jewelry-card:hover img,
.jewelry-card:focus-visible img {
  transform: scale(1.04);
}

.jewelry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 56, 74, 0.76), rgba(6, 56, 74, 0) 62%);
}

.jewelry-card span {
  position: relative;
  z-index: 1;
  color: #ffd0c2;
  font-family: Montserrat, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
  background: var(--sky);
}

.about-art {
  min-height: 520px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(6, 56, 74, 0.08), rgba(6, 56, 74, 0)),
    url("assets/anna-art-hero.png") center / cover;
  box-shadow: var(--shadow);
}

.about-copy {
  align-self: center;
}

.about-copy p {
  margin-top: 24px;
}

.follow {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
  background: var(--shell);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--ocean);
  background: var(--white);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.newsletter-form {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 56, 74, 0.08);
}

.newsletter-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus {
  outline: 3px solid rgba(19, 127, 150, 0.22);
  border-color: var(--ocean);
}

.newsletter-form .button {
  width: fit-content;
  border: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--ocean);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
  }

  .goal-strip,
  .section-intro,
  .book-grid,
  .video-section,
  .video-grid,
  .art-grid,
  .jewelry-section,
  .jewelry-grid,
  .about,
  .follow {
    grid-template-columns: 1fr;
  }

  .about-art {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-actions,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .mini-button,
  .newsletter-form .button {
    width: 100%;
  }
}

/* Final Color With Me video layout */
.video-section {
  grid-template-columns: minmax(560px, 1fr) 620px !important;
  gap: 64px !important;
  align-items: center !important;
}

.video-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  max-width: 620px !important;
  margin-left: auto !important;
}

.video-card {
  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  align-items: center !important;
  min-height: 138px !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  padding: 0 !important;
  background: #fffefe !important;
  color: var(--ink) !important;
  text-decoration: none !important;
  box-shadow: 0 16px 44px rgba(6, 56, 74, 0.16) !important;
}

.video-card::after {
  content: none !important;
}

.video-card img {
  position: static !important;
  display: block !important;
  width: 220px !important;
  height: 138px !important;
  object-fit: cover !important;
}

.video-card > div {
  min-width: 0 !important;
  padding: 18px 22px !important;
  box-sizing: border-box !important;
}

.video-card h3 {
  margin: 0 0 8px !important;
  color: var(--ink) !important;
  font-size: 1.05rem !important;
  line-height: 1.15 !important;
  text-decoration: none !important;
}

.video-card p {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
}

.video-card * {
  text-decoration: none !important;
}

@media (max-width: 980px) {
  .video-section {
    grid-template-columns: 1fr !important;
  }

  .video-grid {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 560px) {
  .video-card {
    grid-template-columns: 1fr !important;
  }

  .video-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 980px) and (min-width: 561px) {
  .jewelry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile fix for the Color With Me section */
@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .video-section {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 34px !important;
    padding: 72px 22px !important;
    overflow: hidden !important;
  }

  .video-copy {
    min-width: 0 !important;
    width: 100% !important;
  }

  .video-copy h2 {
    max-width: 100% !important;
    font-size: clamp(2.45rem, 13vw, 4rem) !important;
    line-height: 0.98 !important;
    overflow-wrap: break-word !important;
  }

  .video-copy p {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    overflow-wrap: break-word !important;
  }

  .video-copy .button {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 18px !important;
    text-align: center !important;
  }

  .video-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .video-card {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .video-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  .video-card > div {
    min-height: 0 !important;
    padding: 20px !important;
    text-align: center !important;
  }
}

/* Responsive correction for Color With Me section */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.video-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px) !important;
  gap: clamp(28px, 5vw, 56px) !important;
}

.video-copy,
.video-grid,
.video-card,
.video-card > div {
  min-width: 0 !important;
}

.video-copy h2,
.video-copy p {
  max-width: 100% !important;
  overflow-wrap: break-word !important;
}

.video-grid {
  width: 100% !important;
  max-width: 560px !important;
}

.video-card {
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) !important;
}

.video-card img {
  width: 100% !important;
}

@media (max-width: 700px) {
  .video-section {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 70px 22px !important;
  }

  .video-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.9rem) !important;
    line-height: 1 !important;
  }

  .video-copy p {
    font-size: 1rem !important;
    line-height: 1.45 !important;
  }

  .video-copy .button {
    width: 100% !important;
    max-width: 100% !important;
  }

  .video-grid {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .video-card {
    grid-template-columns: 1fr !important;
  }

  .video-card img {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  .video-card > div {
    min-height: 0 !important;
    padding: 18px !important;
  }
}
