/* ============================================
   Designed By Pets – Main Stylesheet
   ============================================ */

html {
  scroll-behavior: smooth;
}

/* --- Design Tokens --- */
:root {
  --primary: var(--color-violet);
  --accent: #68347d;
  --background-light: #f7f6f8;
  --earth-brown: #8c735a;
  --sage-green: #6b8961;
  --text-dark: #131811;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  --text-faint: #9ca3af;
  --border-color: #e5e7eb;
  --color-violet: #6A347D;
  --color-pink: #FFCC99;
  --color-white: #ffffff;
  --color-yellow: #E4C265;
  --story-bg: #e9edc9;
  --story-accent: rgba(204, 213, 174, 0.3);
  --radius-sm: 1rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --radius-full: 9999px;
}

/* --- Reset / Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-wrap: pretty;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-pink);
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* --- Layout Shell --- */
.site-wrapper {
  position: relative;
  display: flex;
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid white;
  background-color: var(--color-pink);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .site-header {
    display: block;
  }
}

.header-inner {
  display: flex;
  height: 5rem; /* 80px */
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2.5rem;
  }
}

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

/* Nav */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-violet);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

/* CTA button in header */
.btn-primary {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: scale(0.95);
}

@media (min-width: 768px) {
  .btn-primary {
    display: inline-flex;
  }
}

.header-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .header-right {
    display: flex;
  }
}

/* Mobile menu button */
.btn-menu {
  display: none;
  padding: 0.5rem;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  padding-top: 1.5rem;
  max-height: 100svh;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding: 1.5rem 2.5rem 0;
    max-height: none;
    overflow: visible;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-text {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-text {
    align-self: center;
  }
}

.hero-logo {
  height: 5rem;
  width: auto;
  color: var(--color-violet);
  align-self: center;
}

@media (min-width: 768px) {
  .hero-logo {
    height: 7rem;
  }
}


.hero-text-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-text-group
  {
    gap: 1.75rem;
    text-align: center;
  }
}


.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-title .highlight {
  /*color: var(--primary);*/
  /*text-decoration: underline;*/
  /*text-decoration-thickness: 4px;*/
  /*text-underline-offset: 4px;*/
}

.hero-subtitle {
  max-width: 540px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-violet);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

/* Hero form */
.hero-form-wrap {
  width: 100%;
  max-width: 480px;
  align-self: center;
}


.hero-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-form {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.hero-form-icon {
  position: absolute;
  left: 1rem;
  top: 1.75rem;
  transform: translateY(-50%);
  color: var(--sage-green);
  display: flex;
  pointer-events: none;
}

@media (min-width: 640px) {
  .hero-form-icon {
    top: 50%;
  }
}

.hero-form-input {
  height: 3.5rem;
  width: 100%;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  background-color: #fff;
  padding-left: 3rem;
  padding-right: 1rem;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form-input::placeholder {
  color: var(--text-faint);
}

.hero-form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(127, 15, 205, 0.2);
}

@media (min-width: 640px) {
  .hero-form-input {
    padding-right: 9rem;
  }
}

.hero-form-btn {
  position: static;
  width: 100%;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  transition: filter 0.2s, transform 0.15s;
}

@media (min-width: 640px) {
  .hero-form-btn {
    position: absolute;
    right: 0.375rem;
    top: 0.375rem;
    bottom: 0.375rem;
    width: auto;
    height: auto;
  }
}

.hero-form-btn:hover {
  filter: brightness(1.05);
}

.hero-form-btn:active {
  transform: scale(0.95);
}

.hero-form-note {
  margin-top: 0.75rem;
  padding-left: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}


/* Hero image */
.hero-image {
}

@media (min-width: 1024px) {
  .hero-image {
    align-self: end;
  }
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: 2.5rem;
}

@media (min-width: 768px) {
  .hero-image-frame {
    aspect-ratio: 3 / 4;
    max-height: 500px;
  }
}

@media (min-width: 1024px) {
  .hero-image-frame {
    aspect-ratio: 1 / 1;
    max-height: none;
  }
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.2), transparent);
  z-index: 10;
}

.hero-image-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.hero-image-frame:hover img {
  transform: scale(1.05);
}

.hero-deco-1 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  background-color: #f2eecb;
  z-index: -1;
}

.hero-deco-2 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  background-color: rgba(127, 15, 205, 0.2);
  z-index: -1;
  filter: blur(32px);
}

/* ============================================
   VALUES
   ============================================ */
.values {
  background-color: #fff;
  padding: 5rem 0;
}

.values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .values-inner {
    padding: 0 2.5rem;
  }
}

.values-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin-bottom: 3rem;
}

.values-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .values-header h2 {
    font-size: 2.25rem;
  }
}

.values-header p {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
  color: #4b5563;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--background-light);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12), 0 6px 12px -4px rgba(0, 0, 0, 0.08);
}

.value-icon {
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--text-dark);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.value-icon .material-symbols-outlined {
  font-size: 1.875rem;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.value-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background-color: #fff;
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .products {
    padding: 5rem 2.5rem;
  }
}

.products-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .products-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.products-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .products-header h2 {
    font-size: 2.25rem;
  }
}

.products-header .subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: #4b5563;
}

.products-header-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.2s;
}

.products-header-link:hover {
  color: rgba(127, 15, 205, 0.8);
}

.products-header-link .material-symbols-outlined {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .products-header-link {
    display: inline-flex;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Product card */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

@media (min-width: 640px) {
  .product-card-image {
    aspect-ratio: 1 / 1;
  }
}

.product-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  backdrop-filter: blur(4px);
}

.product-card-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-card-image {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.2s;
}

.product-card:hover h3 {
  color: var(--primary);
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.products-mobile-link {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  text-align: center;
}

@media (min-width: 768px) {
  .products-mobile-link {
    display: none;
  }
}

/* ============================================
   STORY
   ============================================ */
.story {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 6rem 1.5rem;
}

@media (min-width: 1024px) {
  .story {
    padding: 6rem 2.5rem;
  }
}

.story-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.story-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .story-columns {
    flex-direction: row;
    gap: 5rem;
  }
}

/* Image side */
.story-image-wrap {
  flex: 1;
}

@media (min-width: 1024px) {
  .story-image-wrap {
    max-width: 28rem;
  }
}

.story-image-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  transform: rotate(2deg);
  overflow: hidden;
  border-radius: 4rem;
  border: 8px solid var(--color-violet);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.story-image-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Content side */
.story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-content {
    text-align: left;
    align-items: flex-start;
  }
}

.story-badge {
  display: inline-block;
  border-radius: var(--radius-full);
  background-color: var(--color-pink);
  width: max-content;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  backdrop-filter: blur(12px);
}

.story-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

@media (min-width: 1024px) {
  .story-content h2 {
    font-size: 3rem;
  }
}

.story-content h2 .italic {
  font-style: italic;
  color: var(--primary);
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  color: rgba(19, 24, 17, 0.8);
}

/* Background accent */
.story-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 33.333%;
  background-color: rgba(106, 52, 125, 0.05);
  transform: skewX(-12deg);
  transform-origin: top right;
  z-index: 0;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background-color: var(--primary);
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .cta {
    padding: 7rem 1.5rem;
  }
}

.cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-yellow);
}

@media (min-width: 640px) {
  .cta-inner h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .cta-inner h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-inner h2 {
    font-size: 3.75rem;
  }
}

.cta-inner > p {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
}

@media (min-width: 640px) {
  .cta-inner > p {
    font-size: 1.25rem;
  }
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-form {
    flex-direction: row;
  }
}

.cta-form input {
  height: 3.5rem;
  width: 100%;
  flex: 1;
  border-radius: var(--radius-full);
  border: none;
  background-color: #fff;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: var(--color-violet);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: box-shadow 0.2s;
}

.cta-form input::placeholder {
  color: var(--color-violet);
}

.cta-form input:focus {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}

.cta-btn {
  height: 3.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-yellow);
  padding: 0 2rem;
  font-weight: 700;
  color: black;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.cta-btn:hover {
  background-color: var(--color-yellow);
  opacity: 0.5;
}

.cta-btn:active {
  transform: scale(0.95);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(19, 24, 17, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--primary);
  padding: 2rem 0;
  color: #fff;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 0 2.5rem;
  }
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.social-links a:hover {
  color: #fff;
}

.social-links svg {
  height: 1.5rem;
  width: 1.5rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

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