:root {
  --coral: #ff6f61;
  --coral-dark: #df4f43;
  --mustard: #ffad14;
  --teal: #72c4bd;
  --blue: #5c8fb8;
  --pink: #ffa1a7;
  --ink: #253044;
  --muted: #657084;
  --paper: #fcf9f4;
  --sunny: #fff0bf;
  --surface: #ffffff;
  --line: rgba(37, 48, 68, 0.14);
  --shadow: 0 10px 5px rgba(37, 48, 68, 0.16);
  --radius: 30px;
  --main-font: Inter;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 0% 30%, rgba(255, 111, 97, 0.1), transparent 40rem),
    radial-gradient(circle at 100% 20%, rgba(114, 196, 189, 0.1), transparent 30rem),
    radial-gradient(circle at 0% 60%, rgba(255, 111, 97, 0.1), transparent 40rem),
    radial-gradient(circle at 100% 50%, rgba(114, 196, 189, 0.05), transparent 30rem), 
    radial-gradient(circle at 0% 90%, rgba(255, 111, 97, 0.1), transparent 40rem),
    radial-gradient(circle at 100% 80%, rgba(114, 196, 189, 0.02), transparent 30rem),    
    linear-gradient(180deg, #fffdf8, var(--paper));
  color: var(--ink);
  font-family: var(--main-font);
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

code {
  background: rgba(255, 173, 20, 0.2);
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.92em;
  padding: 0.1em 0.35em;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--ink);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 10px clamp(18px, 4vw, 58px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 58px;
  text-decoration: none;
  width: 220px;
}


.brand-logo {
  background-image: url("assets/logo/logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  justify-content: center;
}

.nav a,
.header-cta,
.site-footer a {
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav > a,
.nav-group > a {
  border-bottom: 3px solid transparent;
  color: var(--ink);
  padding: 12px 0;
}

.nav a[aria-current="page"],
.nav a:hover {
  border-color: var(--coral);
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;  
}

.nav-panel {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink);
  display: grid;
  gap: 6px;
  left: 50%;
  min-width: 170px;
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-panel a {
  border-radius: 5px;
  padding: 8px 10px;
}

.nav-panel a:hover {
  background: var(--sunny);
}

.header-cta,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  text-decoration: none;
}

.header-cta {
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
  color: #fff;
  padding: 10px 18px;
}

.hero,
.page-hero,
.section {
  padding-inline: clamp(18px, 5vw, 76px);
}

.hero {
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  min-height: calc(10vh - 90px);
  padding-bottom: clamp(42px, 7vw, 84px);
  padding-top: clamp(52px, 7vw, 92px);
}

.hero-copy {
  align-self: center;
  max-width: 680px;
}

.our-decals {
  align-self: center;
}

.eyebrow {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.product-card.prints img {
  border: 3px solid var(--ink);
}

.image-frame {
  padding: 20px;
  /* background: var(--sunny); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card.prints .image-frame img {
  width: auto;
  max-width: 100%;
  max-height: 300px;

  border: 1px solid var(--ink);
  padding: 0px;
}

.image-frame.wall-decals img {
  width: 100%;
  object-fit: cover;

  /* border: 1px solid var(--ink); */
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(37, 48, 68, 0.08);

}

/* .image-frame.wall-decals {
  background: var(--sunny);
} */

.image-frame.prints {
  padding: 20px;
  /* background: var(--sunny); */
  display: flex;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3 {
  line-height: 0.96;
  margin: 0;
}

h1 {
  color: var(--ink);
  font-family: var(--main-font);
  font-size: clamp(1.2rem, 3.2vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.hero-title {
  font-family: var(--main-font);
  color: var(--ink);
  font-size: clamp(3.2rem, 6.2vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

h2 {
  font-family: var(--main-font);
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

h3 {
  font-family: var(--main-font);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-heading p,
.product-card p,
.shop-paths p,
.contact-grid p,
.site-footer,
.empty-state {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  font-size: clamp(1.06rem, 1.4vw, 1.25rem);
  margin: 22px 0 0;
  max-width: 620px;
}

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

.button {
  border: 2px solid var(--ink);
  font-weight: 900;
  padding: 12px 22px;
}

.button.primary {
  background: var(--coral);
  box-shadow: 3px 3px 0 var(--ink);
  color: #fff;
}

.button.secondary {
  background: var(--mustard);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
}

.hero-stage {
  align-self: center;
  background:
    linear-gradient(90deg, rgba(37, 48, 68, 0.08) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(#fff2c9, #ffe5e1 62%, #dff4f2);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--ink);
  min-height: 30px;
  overflow: hidden;
  position: relative;
}

.hero-photo {
  background: var(--paper);
}

.hero-photo img {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
  min-height: 30px;
}

.blob,
.wall-card,
.rainbow-band,
.print-sun,
.print-star,
.decal-cloud,
.decal-star {
  position: absolute;
}

.blob {
  border-radius: 999px;
  opacity: 0.9;
}

.blob-coral {
  background: var(--coral);
  height: 122px;
  left: 9%;
  top: 12%;
  width: 122px;
}

.blob-mustard {
  background: var(--mustard);
  height: 164px;
  right: -4%;
  top: 18%;
  width: 164px;
}

.blob-teal {
  background: var(--teal);
  bottom: 6%;
  height: 136px;
  left: 34%;
  width: 136px;
}

.wall-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(37, 48, 68, 0.12);
}

.rainbow-card {
  bottom: 16%;
  height: 34%;
  left: 10%;
  width: 34%;
}

.rainbow-band {
  border: 17px solid;
  border-bottom: 0;
  border-radius: 150px 150px 0 0;
  bottom: 26%;
  left: 14%;
}

.rainbow-band:nth-child(1) {
  border-color: var(--coral);
  height: 112px;
  width: 190px;
}

.rainbow-band:nth-child(2) {
  border-color: var(--mustard);
  height: 82px;
  left: 21%;
  width: 142px;
}

.rainbow-band:nth-child(3) {
  border-color: var(--teal);
  height: 54px;
  left: 28%;
  width: 94px;
}

.rainbow-band:nth-child(4) {
  border-color: var(--blue);
  height: 28px;
  left: 35%;
  width: 48px;
}

.print-card {
  height: 46%;
  right: 13%;
  top: 12%;
  transform: rotate(2deg);
  width: 31%;
}

.print-sun {
  background: var(--mustard);
  border-radius: 50%;
  height: 86px;
  left: 22%;
  top: 22%;
  width: 86px;
}

.print-star {
  background: var(--coral);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 69%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
  height: 62px;
  right: 18%;
  top: 48%;
  width: 62px;
}

.decal-card {
  bottom: 11%;
  height: 30%;
  right: 28%;
  transform: rotate(-4deg);
  width: 26%;
}

.decal-cloud {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 30px -16px 0 6px #fff, 58px 2px 0 -2px #fff;
  height: 34px;
  left: 18%;
  top: 28%;
  width: 88px;
}

.decal-star {
  background: var(--mustard);
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 69%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
  height: 30px;
  width: 30px;
}

.star-one {
  bottom: 20%;
  left: 18%;
}

.star-two {
  right: 18%;
  top: 16%;
}

.section,
.page-hero {
  padding-bottom: clamp(40px, 8vw, 50px);
  padding-top: clamp(40px, 8vw, 50px);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-heading p {
  margin: 0;
  max-width: 560px;
}

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

.product-card {
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--ink);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.product-card:nth-child(even) {
  box-shadow: 2px 2px 0 var(--ink);
}

.product-card img {
  /* background: var(--sunny); */
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 300px;

}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-kicker {
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0 10px;
}

.product-card p {
  margin: 0;
}

.product-meta {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
}

.price {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.product-link {
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  padding: 9px 14px;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink);
}

.shop-paths {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.shop-paths-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.contact-grid,
.decal-benefits {
  display: grid;
  gap: 22px;
}

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

.decal-benefits {
  grid-template-columns: repeat(3, 1fr);
}

.shop-paths article,
.contact-grid article,
.decal-benefits article {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--ink);
  padding: clamp(24px, 4vw, 44px);
}

.shop-paths article:nth-child(3),
.contact-grid article:nth-child(2),
.decal-benefits article:nth-child(2) {
  box-shadow: 2px 2px 0 var(--ink);
}

.page-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.65), transparent 18rem),
    var(--coral);
  border-bottom: 4px solid var(--ink);
  color: #fff;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
}

.page-hero code {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.prints-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.58), transparent 19rem),
    var(--mustard);
  color: var(--ink);
}


.simple-hero {
  background: var(--coral);
}

.about-hero {
  background: var(--teal);
}

.faq-hero{
  background: var(--blue);

}

.decals-hero {
  background: var(--coral);
}

.contact-hero {
  background: var(--pink);
}

.empty-state {
  background: #fff;
  border: 3px dashed var(--coral);
  border-radius: var(--radius);
  font-weight: 800;
  padding: 24px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 76px);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #fff;
}

.product-card img.cover {
  object-fit: cover;
}

.product-card img.contain {
  object-fit: contain;
}



.nav a.nav-highlight {
  font-weight: 900;
}


.faq-section {
  padding-top: 80px;
}

.faq-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.faq-card {
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--ink);
  padding: clamp(24px, 4vw, 38px);
}

.faq-card h3 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  margin-bottom: 14px;
}

.faq-card p {
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

.hero-about {
  padding-top: 100px;
}

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

.about-card {
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--ink);
  padding: clamp(24px, 4vw, 40px);
}

.about-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

.about-card p {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 52ch;
}

.about-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 680px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


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

  .brand {
    width: 200px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-panel {
    display: none;
  }

  .hero,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 30px;
  }

  .product-grid,
  .decal-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px 16px;
  }

  .brand {
    height: 50px;
    width: 178px;
  }

  .nav {
    gap: 10px 16px;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 14.4vw, 4.25rem);
  }

  .page-hero h1 {
    font-size: clamp(3.2rem, 14vw, 4rem);
  }

  .hero {
    padding-top: 38px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stage {
    aspect-ratio: auto;
    box-shadow: 3px 3px 0 var(--ink);
    min-height: 30px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .product-grid,
  .product-card {
    max-width: 100%;
    min-width: 0;
  }

  .product-grid {
    padding-right: 8px;
  }

  .product-card {
    box-shadow: 3px 3px 0 var(--ink);
  }

  .product-card:nth-child(even) {
    box-shadow: 3px 3px 0 var(--ink);
  }

  .product-grid,
  .shop-paths,
  .contact-grid,
  .decal-benefits {
    grid-template-columns: 1fr;
  }

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



}
