:root {
  --terracotta: #c67d4a;
  --mustard: #d4a73a;
  --dusty-pink: #d4a5a5;
  --cream: #faf3e8;
  --olive: #6b7c4e;
  --sand: #f2e1cf;
  --ink: #4f3a2d;
  --white: #fffdf9;
  --shadow: 0 18px 45px rgba(107, 124, 78, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Tajawal", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(212, 165, 165, 0.35), transparent 28%),
    radial-gradient(circle at bottom left, rgba(198, 125, 74, 0.18), transparent 30%),
    var(--cream);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-linear-gradient(45deg, rgba(107, 124, 78, 0.18) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(-45deg, rgba(212, 167, 58, 0.14) 0 2px, transparent 2px 22px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 92%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  margin-top: 16px;
  padding: 10px 18px;
  text-align: center;
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid rgba(198, 125, 74, 0.18);
  border-radius: 999px;
  color: var(--olive);
  backdrop-filter: blur(12px);
}

.topbar p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 64% 36% 56% 44% / 41% 51% 49% 59%;
  background: linear-gradient(135deg, var(--terracotta), var(--mustard));
  color: var(--white);
  font-size: 1.9rem;
  box-shadow: var(--shadow);
}

.brand strong,
.hero h1,
.section-heading h2,
.craft-copy h2,
.newsletter h2 {
  font-family: "Amatic SC", cursive;
  letter-spacing: 1px;
}

.brand strong {
  display: block;
  font-size: 2.25rem;
  line-height: 0.9;
}

.brand span:last-child {
  font-size: 0.95rem;
  color: rgba(79, 58, 45, 0.78);
}

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

.site-nav a {
  font-weight: 700;
  color: var(--olive);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-cta,
.btn,
.product-meta a,
.newsletter-form button {
  border: none;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta {
  padding: 12px 22px;
  background: var(--olive);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.header-cta:hover,
.btn:hover,
.product-meta a:hover,
.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(79, 58, 45, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 32px 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 167, 58, 0.18);
  color: var(--terracotta);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.4rem, 7vw, 5.7rem);
  line-height: 0.95;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: rgba(79, 58, 45, 0.84);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 24px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--mustard));
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 253, 249, 0.82);
  color: var(--olive);
  border: 1px solid rgba(107, 124, 78, 0.2);
}

.hero-features {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.hero-features li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(198, 125, 74, 0.15);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-blob {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid rgba(255, 253, 249, 0.82);
}

.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-blob-main {
  inset: 22px 28px 90px 48px;
  border-radius: 57% 43% 35% 65% / 44% 48% 52% 56%;
}

.hero-blob-small {
  width: 210px;
  height: 250px;
  left: 0;
  bottom: 10px;
  border-radius: 42% 58% 64% 36% / 43% 32% 68% 57%;
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 28px;
  max-width: 240px;
  padding: 18px 20px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(212, 165, 165, 0.36);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 20px 0 64px;
}

.highlights article,
.craft-card,
.newsletter,
.product-card,
.section-heading {
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 125, 74, 0.14);
  box-shadow: var(--shadow);
}

.highlights article {
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.highlights article::before,
.craft-card::before,
.newsletter::before {
  content: "";
  position: absolute;
  inset-inline-end: -30px;
  inset-block-start: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 167, 58, 0.18), transparent 70%);
}

.highlights span {
  font-size: 2rem;
  color: var(--terracotta);
}

.highlights h2,
.product-info h3,
.craft-card h3 {
  margin: 10px 0 8px;
  font-size: 1.4rem;
}

.highlights p,
.section-heading p,
.product-info p,
.craft-copy p,
.newsletter p,
.site-footer p {
  margin: 0;
  color: rgba(79, 58, 45, 0.8);
}

.products-section {
  padding-bottom: 72px;
}

.section-heading {
  text-align: center;
  padding: 28px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.section-heading h2,
.craft-copy h2,
.newsletter h2 {
  margin: 0 0 10px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 0.95;
}

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

.product-card {
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-7px) rotate(-0.5deg);
  box-shadow: 0 24px 46px rgba(79, 58, 45, 0.15);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(250, 243, 232, 0.92);
  color: var(--terracotta);
  font-weight: 800;
  font-size: 0.9rem;
}

.product-info {
  padding: 20px 18px 18px;
}

.product-info h3 {
  margin-top: 0;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.product-meta strong {
  color: var(--olive);
  font-size: 1.35rem;
}

.product-meta a {
  padding: 10px 16px;
  background: rgba(198, 125, 74, 0.1);
  color: var(--terracotta);
  font-weight: 800;
}

.craft-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding-bottom: 72px;
}

.craft-copy,
.craft-card {
  padding: 32px;
  border-radius: 34px;
  position: relative;
}

.craft-copy {
  background:
    linear-gradient(135deg, rgba(212, 165, 165, 0.18), rgba(255, 253, 249, 0.92)),
    var(--white);
  border: 1px solid rgba(107, 124, 78, 0.14);
  box-shadow: var(--shadow);
}

.craft-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.craft-stats div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(198, 125, 74, 0.12);
  text-align: center;
}

.craft-stats strong {
  display: block;
  color: var(--terracotta);
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.craft-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.craft-card li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(250, 243, 232, 0.78);
  border: 1px solid rgba(212, 167, 58, 0.16);
  font-weight: 700;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 32px;
  border-radius: 38px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.newsletter-form input {
  min-width: min(100%, 300px);
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(107, 124, 78, 0.18);
  border-radius: 999px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(198, 125, 74, 0.14);
}

.newsletter-form button {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--olive), var(--terracotta));
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 48px;
}

.site-footer strong {
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
  color: var(--olive);
}

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

@media (max-width: 1080px) {
  .hero,
  .craft-section,
  .newsletter,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

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

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

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 100%);
  }

  .topbar {
    margin-top: 10px;
    border-radius: 28px;
  }

  .hero {
    gap: 24px;
    padding-top: 14px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.3rem);
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-blob-main {
    inset: 16px 14px 82px 28px;
  }

  .hero-blob-small {
    width: 160px;
    height: 190px;
  }

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

  .hero-actions,
  .newsletter-form,
  .hero-features,
  .site-nav,
  .footer-links {
    justify-content: center;
  }

  .newsletter,
  .section-heading,
  .craft-copy,
  .craft-card,
  .highlights article,
  .product-info {
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
