:root {
  --cream: #fff9f3;
  --cream-strong: #fff2e5;
  --blush: #f3d6cf;
  --pink: #d9798f;
  --pink-deep: #a44d65;
  --sage: #879f7a;
  --sage-soft: #e9f0e3;
  --blue-soft: #dbeaf0;
  --tan: #d9b58c;
  --wood: #7b5137;
  --ink: #3b2b25;
  --muted: #7c6760;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(83, 54, 39, 0.14);
  --shadow-soft: 0 10px 30px rgba(83, 54, 39, 0.1);
  --radius-large: 32px;
  --radius: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.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;
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 243, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 81, 55, 0.1);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.8);
  padding: 4px;
}

.brand-mark strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand-mark small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pink-deep);
}

.nav-button {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 68px;
  background:
    radial-gradient(circle at 8% 12%, rgba(243, 214, 207, 0.82), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(219, 234, 240, 0.95), transparent 34%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-strong) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 220px;
  background: var(--cream);
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(3.8rem, 10vw, 7.6rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 20px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--wood);
  font-weight: 800;
}

.mission-line {
  max-width: 630px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--pink-deep);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--pink-deep);
  border-color: rgba(164, 77, 101, 0.2);
}

.button.quiet {
  background: var(--sage-soft);
  color: var(--ink);
}

.button.facebook {
  background: #f0f5ff;
  color: #244a86;
  border-color: rgba(36, 74, 134, 0.18);
}

.button.full {
  width: 100%;
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(123, 81, 55, 0.1);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  padding: 18px;
  transform: rotate(1.2deg);
}

.hero-image-wrap {
  min-height: 380px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(243, 214, 207, 0.65), rgba(233, 240, 227, 0.9)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.24) 0 12px, transparent 12px 24px);
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: contain;
  padding: 16px;
}

.image-missing::before {
  content: "Ayva Made";
  font-family: "Playfair Display", Georgia, serif;
  color: var(--pink-deep);
  font-size: 2rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.intro-section,
.products-section,
.custom-section,
.contact-section,
.request-section {
  padding: 78px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 48px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.soft-band {
  padding: 78px 0;
  background: linear-gradient(135deg, rgba(233, 240, 227, 0.9), rgba(255, 242, 229, 0.95));
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.step-card,
.info-card,
.request-panel,
.product-card,
.request-form,
.warm-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(123, 81, 55, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.step-card {
  padding: 26px;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--pink-deep);
  font-weight: 900;
}

.step-card p,
.info-card p,
.custom-card p,
.request-copy p,
.contact-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.filter-button {
  border: 1px solid rgba(123, 81, 55, 0.16);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  background: var(--ink);
  color: var(--white);
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-image {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(243, 214, 207, 0.54), rgba(233, 240, 227, 0.86));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 12px;
}

.product-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center center;
}

.product-image.image-fallback::before {
  content: "Photo coming soon";
  color: var(--muted);
  font-weight: 900;
}

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

.product-category {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-top: 8px;
}

.product-body p {
  margin-top: 10px;
  color: var(--muted);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
  color: var(--wood);
  font-weight: 900;
}

.product-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.card-button {
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  background: var(--pink-deep);
  color: var(--white);
  font-weight: 900;
}

.card-button.secondary-action {
  background: var(--sage-soft);
  color: var(--ink);
}

.card-button.added {
  background: var(--sage);
  color: var(--white);
}

.request-section {
  background: linear-gradient(135deg, rgba(255, 242, 229, 0.9), rgba(243, 214, 207, 0.45));
}

.request-layout,
.custom-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 110px;
}

.small-note {
  background: rgba(255, 255, 255, 0.65);
  border-left: 4px solid var(--pink-deep);
  padding: 14px 16px;
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.request-panel {
  padding: 24px;
}

.request-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--pink-deep);
  font-weight: 900;
  padding: 0;
}

.empty-request {
  padding: 22px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-small);
  color: var(--muted);
  margin-bottom: 18px;
}

.empty-request a,
.email-link {
  color: var(--pink-deep);
  font-weight: 900;
}

.request-items {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.request-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius-small);
  padding: 12px 14px;
}

.request-item strong {
  display: block;
}

.request-item small {
  color: var(--muted);
}

.remove-item {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  background: var(--white);
  color: var(--pink-deep);
  font-weight: 900;
}

.custom-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.custom-card {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(219, 234, 240, 0.95), transparent 38%),
    rgba(255, 255, 255, 0.88);
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 22px;
}

.seasonal-card {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 16px;
  align-items: center;
  background: var(--sage-soft);
}

.seasonal-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
}

.contact-section {
  background: var(--cream-strong);
}

.request-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(123, 81, 55, 0.18);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(164, 77, 101, 0.12);
}

.form-success {
  background: var(--sage-soft);
  border: 1px solid rgba(135, 159, 122, 0.3);
  border-radius: var(--radius-small);
  padding: 16px;
}

.form-success p,
.form-note {
  color: var(--muted);
}

.form-note {
  text-align: center;
  font-size: 0.94rem;
}

.site-footer {
  padding: 36px 0;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-grid p {
  color: rgba(255, 249, 243, 0.78);
  margin-top: 6px;
}

.footer-grid div:last-child {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-grid a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 1060px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .intro-grid,
  .request-layout,
  .custom-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .request-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    padding: 96px 20px 26px;
    background: rgba(255, 249, 243, 0.98);
    border-bottom: 1px solid rgba(123, 81, 55, 0.1);
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform 180ms ease;
    display: grid;
    gap: 14px;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.08rem;
    padding: 12px 0;
  }

  .nav-button {
    text-align: center;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-card {
    transform: none;
  }

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

  .section-heading.split {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-mark small {
    display: none;
  }

  .hero,
  .intro-section,
  .products-section,
  .custom-section,
  .contact-section,
  .request-section,
  .soft-band {
    padding: 54px 0;
  }

  .hero-actions,
  .contact-links {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-image-wrap {
    min-height: 280px;
  }

  .steps-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .seasonal-card {
    grid-template-columns: 1fr;
  }

  .seasonal-card img {
    width: 100%;
    height: 180px;
  }

  .request-panel-header,
  .request-item,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid div:last-child {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .product-image {
    min-height: 280px;
  }

  .product-image img {
    max-height: 280px;
  }
}

@media (max-width: 560px) {
  .product-image {
    min-height: 260px;
  }

  .product-image img {
    max-height: 260px;
  }
}
