/* =========================================================
   Curio Prints — Variation C: Friendly / Approachable Hobbyist
   ========================================================= */

/* ---------- Custom properties ---------- */
:root {
  --color-bg: #fffaf3;
  --color-bg-alt: #fff3e6;
  --color-surface: #ffffff;
  --color-text: #332e29;
  --color-text-muted: #6f6459;
  --color-border: #f0e2d2;

  --color-coral: #ff6f5e;
  --color-coral-dark: #e2543f;
  --color-coral-tint: #ffe3de;

  --color-teal: #1fa198;
  --color-teal-dark: #157b74;
  --color-teal-tint: #dcf3f1;

  --color-yellow: #ffc23c;
  --color-yellow-dark: #dd9f14;
  --color-yellow-tint: #fff2d6;

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --shadow-soft: 0 8px 24px rgba(51, 46, 41, 0.08);
  --shadow-soft-lg: 0 20px 48px rgba(51, 46, 41, 0.14);

  --font-heading: "Poppins", sans-serif;
  --font-body: "Nunito Sans", sans-serif;

  --max-width: 1160px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
  color: var(--color-text-muted);
}

a {
  color: var(--color-teal-dark);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

section {
  padding: 4rem 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Focus states ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-teal-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  line-height: 1.1;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-teal);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
  background-color: var(--color-teal-dark);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.btn-large {
  padding: 1.15rem 2.4rem;
  font-size: 1.15rem;
}

.btn svg {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--color-text);
  white-space: nowrap;
}

@media (max-width: 400px) {
  .header-inner {
    padding: 0.85rem 1rem;
    gap: 0.6rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .btn-whatsapp-small {
    padding: 0.6rem 0.85rem;
    font-size: 0.8rem;
  }
}

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-coral), var(--color-yellow));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 1.3rem;
  height: 1.3rem;
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  background-color: var(--color-surface);
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.4rem;
  height: 1.4rem;
}

.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1.25rem;
}

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

.main-nav a {
  display: block;
  padding: 0.85rem 0.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.main-nav a:last-child {
  border-bottom: none;
}

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

.btn-whatsapp-small {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .main-nav a {
    border-bottom: none;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-pill);
  }

  .main-nav a:hover {
    background-color: var(--color-bg-alt);
  }

  .header-inner {
    flex-wrap: nowrap;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 3rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--color-coral-dark);
  background-color: var(--color-coral-tint);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.page-hero .eyebrow {
  margin-bottom: 1.25rem;
}

.hero-copy p.lede {
  font-size: 1.15rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-media {
  position: relative;
  margin-top: 2rem;
}

.blob {
  position: absolute;
  z-index: 0;
  border-radius: 44% 56% 62% 38% / 45% 41% 59% 55%;
}

.blob-coral {
  background-color: var(--color-coral-tint);
  width: 90%;
  height: 90%;
  top: -8%;
  left: 5%;
}

.blob-teal {
  background-color: var(--color-teal-tint);
  width: 55%;
  height: 55%;
  bottom: -10%;
  right: -8%;
}

.blob-yellow {
  background-color: var(--color-yellow-tint);
  width: 45%;
  height: 45%;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft-lg);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .hero-media {
    margin-top: 0;
  }
}

/* ---------- How it works ---------- */
.how-it-works {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  margin: 0 1rem;
}

@media (min-width: 700px) {
  .how-it-works {
    margin: 0 1.5rem;
  }
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-heading p {
  font-size: 1.05rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.step-number {
  position: absolute;
  top: -0.9rem;
  left: 1.5rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background-color: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.step-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.step-card:nth-child(1) .step-icon {
  background-color: var(--color-coral-tint);
  color: var(--color-coral-dark);
}

.step-card:nth-child(2) .step-icon {
  background-color: var(--color-yellow-tint);
  color: var(--color-yellow-dark);
}

.step-card:nth-child(3) .step-icon {
  background-color: var(--color-teal-tint);
  color: var(--color-teal-dark);
}

.step-card:nth-child(4) .step-icon {
  background-color: var(--color-coral-tint);
  color: var(--color-coral-dark);
}

.step-card h3 {
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Category cards ("A taste of what's possible") ---------- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}

.category-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-body {
  padding: 1.5rem;
}

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.tag-coral {
  background-color: var(--color-coral-tint);
  color: var(--color-coral-dark);
}

.tag-teal {
  background-color: var(--color-teal-tint);
  color: var(--color-teal-dark);
}

.tag-yellow {
  background-color: var(--color-yellow-tint);
  color: var(--color-yellow-dark);
}

.category-card-body h3 {
  margin-bottom: 0.35rem;
}

.category-card-body p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background-color: var(--color-text);
  color: #fff8ee;
  border-radius: var(--radius-lg);
  margin: 0 1rem;
  padding: 3rem 1.5rem;
}

@media (min-width: 700px) {
  .trust-strip {
    margin: 0 1.5rem;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.trust-item .trust-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--color-yellow);
}

.trust-item p {
  color: #f2e9db;
  margin: 0;
  font-size: 0.98rem;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 0.15rem;
}

/* ---------- Generic page hero (About / Custom Order) ---------- */
.page-hero {
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.page-hero .lede {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ---------- Two-column content block ---------- */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .content-block {
    grid-template-columns: 1fr 1fr;
  }

  .content-block.reverse .content-media {
    order: 2;
  }
}

.content-media {
  position: relative;
}

.content-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft-lg);
  position: relative;
  z-index: 1;
}

.content-text h2 {
  margin-bottom: 0.75rem;
}

.value-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.value-list .value-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-teal-tint);
  color: var(--color-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-list .value-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.value-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.value-list p {
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Personality / trust chips section ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chip-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--color-coral);
}

.chip-card:nth-child(2) {
  border-top-color: var(--color-teal);
}

.chip-card:nth-child(3) {
  border-top-color: var(--color-yellow);
}

.chip-card:nth-child(4) {
  border-top-color: var(--color-coral);
}

.chip-card h3 {
  margin-bottom: 0.5rem;
}

.chip-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, var(--color-coral-tint), var(--color-yellow-tint));
  border-radius: var(--radius-lg);
  margin: 0 1rem;
  padding: 3.5rem 1.5rem;
}

@media (min-width: 700px) {
  .cta-band {
    margin: 0 1.5rem;
  }
}

.cta-band h2 {
  margin-bottom: 0.6rem;
}

.cta-band .lede {
  max-width: 50ch;
  margin: 0 auto 1.75rem;
}

.cta-band .btn-large {
  margin: 0 auto;
}

.cta-band-actions {
  justify-content: center;
}

/* ---------- Process steps (Custom Order page, detailed) ---------- */
.process-list {
  display: grid;
  gap: 1.75rem;
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.process-item .process-index {
  counter-increment: process;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.process-item:nth-child(1) .process-index {
  background-color: var(--color-coral);
}

.process-item:nth-child(2) .process-index {
  background-color: var(--color-yellow-dark);
}

.process-item:nth-child(3) .process-index {
  background-color: var(--color-teal);
}

.process-item:nth-child(4) .process-index {
  background-color: var(--color-coral-dark);
}

.process-item h3 {
  margin-bottom: 0.4rem;
}

.process-item ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.process-item ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding-left: 1.4rem;
  position: relative;
}

.process-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: var(--color-teal);
}

/* ---------- Expectation cards (pricing/turnaround) ---------- */
.expectation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .expectation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.expectation-card {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.expectation-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.expectation-card h3 svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-coral-dark);
}

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

/* ---------- FAQ (details/summary) ---------- */
.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.25rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 1.25rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .faq-plus {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: var(--color-teal-tint);
  color: var(--color-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary .faq-plus {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 1.25rem;
  margin: 0;
  font-size: 0.97rem;
}

/* ---------- Final CTA (Custom Order page) ---------- */
.final-cta {
  text-align: center;
  background-color: var(--color-text);
  border-radius: var(--radius-lg);
  margin: 0 1rem;
  padding: 4rem 1.5rem;
  color: #fff8ee;
}

@media (min-width: 700px) {
  .final-cta {
    margin: 0 1.5rem;
  }
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta .lede {
  color: #f2e9db;
  max-width: 50ch;
  margin: 0 auto 2rem;
}

.final-cta .btn-whatsapp {
  background-color: var(--color-coral);
}

.final-cta .btn-whatsapp:hover {
  background-color: var(--color-coral-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
  }
}

.footer-brand .logo {
  margin-bottom: 0.6rem;
}

.footer-brand p {
  max-width: 34ch;
  font-size: 0.9rem;
}

.footer-nav h4,
.footer-cta h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.footer-nav ul {
  display: grid;
  gap: 0.5rem;
}

.footer-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--color-coral-dark);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  background-color: var(--color-text);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}
