/* ========================================
   AIYA PRINT
   VERSION 1 BRAND SYSTEM
======================================== */

:root {

  /* Main Aiya colors */
  --paper: #F7F1E5;
  --cream: #EDE1CC;
  --sand: #D8C3A5;
  --taupe: #A9927D;

  --charcoal: #2D2A26;
  --soft-white: #FFFDF8;

  --olive: #7C8063;

  /* Layout */
  --max-width: 1380px;

  /* Shape */
  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;

}


/* ========================================
   RESET
======================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--soft-white);
  color: var(--charcoal);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.5;
}

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


/* ========================================
   ANNOUNCEMENT
======================================== */

.announcement-bar {
  background: var(--charcoal);
  color: var(--soft-white);

  text-align: center;

  padding: 9px 20px;

  font-size: 13px;
  letter-spacing: 0.05em;
}


/* ========================================
   HEADER
======================================== */

.site-header {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 5vw;

  background: var(--soft-white);

  position: sticky;
  top: 0;

  z-index: 100;

  border-bottom: 1px solid rgba(45, 42, 38, 0.08);
}


.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}


.brand-name {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.06em;
}


.brand-subtitle {
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.desktop-nav {
  display: flex;
  gap: 30px;

  font-size: 14px;
}


.desktop-nav a {
  transition: opacity 0.2s ease;
}


.desktop-nav a:hover {
  opacity: 0.55;
}


.header-button {
  border: 1px solid var(--charcoal);

  background: transparent;

  padding: 10px 17px;

  border-radius: 999px;

  cursor: pointer;
}


/* ========================================
   BUTTONS
======================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  min-height: 48px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}


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


.button-dark {
  background: var(--charcoal);
  color: var(--soft-white);
}


.button-light {
  background: var(--soft-white);
  color: var(--charcoal);
}


.button-cream {
  background: var(--paper);
  color: var(--charcoal);
}


/* ========================================
   TYPOGRAPHY
======================================== */

.eyebrow {
  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 0.16em;

  font-weight: 700;

  margin-bottom: 12px;
}


h1 {
  font-size: clamp(48px, 7vw, 96px);

  line-height: 0.95;

  letter-spacing: -0.055em;

  font-weight: 500;
}


h2 {
  font-size: clamp(34px, 4vw, 60px);

  line-height: 1.05;

  letter-spacing: -0.045em;

  font-weight: 500;
}


h3 {
  font-size: 22px;

  letter-spacing: -0.025em;
}


/* ========================================
   HERO
======================================== */

.hero {
  position: relative;

  min-height: 720px;

  margin: 20px;

  border-radius: var(--radius-large);

  overflow: hidden;

  background: var(--cream);
}


.hero-placeholder {
  position: absolute;

  inset: 0;
}


.hero-content {
  position: relative;

  z-index: 2;

  max-width: 690px;

  padding:

    clamp(90px, 12vw, 180px)

    clamp(30px, 8vw, 120px);
}


.hero-description {
  max-width: 560px;

  font-size: 18px;

  margin-top: 28px;

  opacity: 0.82;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-buttons .button {
  width: auto;
  flex: 0 0 auto;
}


/* ========================================
   IMAGE PLACEHOLDERS
======================================== */

.image-placeholder,
.product-image-placeholder,
.small-image-placeholder {

  display: flex;

  align-items: center;
  justify-content: center;

  background:

    repeating-linear-gradient(
      45deg,
      rgba(45,42,38,0.025),
      rgba(45,42,38,0.025) 10px,
      rgba(45,42,38,0.05) 10px,
      rgba(45,42,38,0.05) 20px
    );

  border: 1px dashed rgba(45,42,38,0.25);

  color: rgba(45,42,38,0.45);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-align: center;
}


.hero-placeholder {
  border: none;
}


.product-image-placeholder {
  aspect-ratio: 4 / 5;
}


.small-image-placeholder {
  aspect-ratio: 1 / 1;

  border-radius: var(--radius-medium);
}


/* ========================================
   STANDARD SECTIONS
======================================== */

.section {

  max-width: var(--max-width);

  margin: 0 auto;

  padding: 110px 5vw;
}


.section-heading {
  max-width: 680px;

  margin-bottom: 48px;
}


/* ========================================
   FEATURED PRODUCTS
======================================== */

.product-grid {

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}


.product-card {

  overflow: hidden;

  background: var(--paper);

  border-radius: var(--radius-medium);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.product-card:hover {

  transform: translateY(-5px);

  box-shadow:
    0 18px 45px rgba(45, 42, 38, 0.08);
}


.product-card-content {
  padding: 24px;
}


.product-card-content p {
  opacity: 0.65;

  margin-top: 7px;

  font-size: 14px;

  min-height: 42px;
}


.product-link {
  display: inline-block;

  margin-top: 20px;

  font-weight: 600;

  font-size: 14px;
}


/* ========================================
   LIFESTYLE BANNERS
======================================== */

.lifestyle-banner {

  position: relative;

  min-height: 580px;

  margin: 30px 20px;

  border-radius: var(--radius-large);

  overflow: hidden;

  background: var(--sand);

  display: flex;
  align-items: center;
}


.banner-placeholder {
  position: absolute;

  inset: 0;

  border: none;
}


.banner-content {

  position: relative;

  z-index: 2;

  max-width: 600px;

  margin-left: 7vw;

  padding: 60px;

  background: rgba(255,253,248,0.88);

  backdrop-filter: blur(10px);

  border-radius: var(--radius-medium);
}


.banner-content p:not(.eyebrow) {

  margin: 22px 0 28px;

  font-size: 17px;

  opacity: 0.76;
}


/* ========================================
   SECONDARY PRODUCTS
======================================== */

.secondary-product-grid {

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  gap: 22px;
}


.secondary-product-card h3 {

  margin-top: 14px;

  font-size: 17px;
}


.secondary-product-card {
  display: block;
}

.secondary-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background: var(--paper);
}

.secondary-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.secondary-product-image img {
  transition: transform 0.25s ease;
}


/* ========================================
   WHY AIYA
======================================== */

.why-aiya {
  background: var(--paper);

  max-width: none;
}


.why-aiya .section-heading,
.why-aiya .benefit-grid {

  max-width: var(--max-width);

  margin-left: auto;
  margin-right: auto;
}


.benefit-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 60px;

  margin-top: 55px;
}


.benefit-number {

  display: block;

  font-size: 12px;

  letter-spacing: 0.1em;

  margin-bottom: 22px;

  color: var(--olive);
}


.benefit p {

  margin-top: 10px;

  opacity: 0.67;

  max-width: 350px;
}


/* ========================================
   FINAL CTA
======================================== */

.final-cta {

  text-align: center;

  padding: 150px 20px;

  background: var(--cream);
}


.final-cta h2 {

  margin-bottom: 35px;
}


/* ========================================
   FOOTER
======================================== */

.footer {

  display: grid;

  grid-template-columns: 1.5fr 2fr;

  gap: 80px;

  padding: 80px 6vw;

  background: var(--charcoal);

  color: var(--soft-white);
}


.footer-brand p {

  opacity: 0.6;

  max-width: 380px;

  margin-top: 20px;
}


.footer-links {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}


.footer-links h4 {

  margin-bottom: 20px;
}


.footer-links a {

  display: block;

  opacity: 0.65;

  margin-bottom: 10px;
}


.footer-links a:hover {

  opacity: 1;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }


  .hero {
    min-height: 640px;

    margin: 10px;
  }


  .product-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }


  .secondary-product-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }


  .benefit-grid {

    grid-template-columns: 1fr;

    gap: 40px;
  }


  .banner-content {

    margin: 30px;

    padding: 35px;
  }


  .footer {

    grid-template-columns: 1fr;

    gap: 60px;
  }

}


@media (max-width: 560px) {

  .product-grid,
  .secondary-product-grid {

    grid-template-columns: 1fr;
  }


  .hero-content {

    padding: 90px 28px;
  }


  .hero-buttons {

    flex-direction: column;

    align-items: flex-start;
  }


  .banner-content {

    margin: 15px;

    padding: 28px;
  }


  .footer-links {

    grid-template-columns: 1fr 1fr;
  }

}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero {
  position: relative;

  min-height: 680px;

  margin: 0 14px;

  display: flex;
  align-items: center;

  padding: 70px 80px;

  overflow: hidden;

  border-radius: 0 0 26px 26px;

  background-image:
    linear-gradient(
      90deg,
      rgba(246, 241, 231, 0.92) 0%,
      rgba(246, 241, 231, 0.72) 28%,
      rgba(246, 241, 231, 0.18) 55%,
      rgba(246, 241, 231, 0.02) 100%
    ),
    url("/images/hero/hero-partime.png");

  background-size: cover;

  background-position: 52% center;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 480px;
}

.hero-content h1 {
  margin: 10px 0 22px;

  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 420px;

  margin-bottom: 28px;

  font-size: 16px;
  line-height: 1.6;
}

/* ========================================
   LIFESTYLE BANNERS
======================================== */

.lifestyle-banner {
  position: relative;

  min-height: 560px;

  margin: 70px 14px;

  display: flex;
  align-items: center;

  padding: 70px 80px;

  overflow: hidden;

  border-radius: 26px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ========================================
   DARK / SOFT OVERLAY
======================================== */

.lifestyle-banner::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(35, 31, 27, 0.58) 0%,
      rgba(35, 31, 27, 0.34) 36%,
      rgba(35, 31, 27, 0.08) 65%,
      rgba(35, 31, 27, 0.02) 100%
    );

  z-index: 1;
}


/* ========================================
   CONTENT
======================================== */

.banner-content {
  position: relative;
  z-index: 2;

  max-width: 520px;

  padding: 55px;

  background: rgba(237, 225, 204, 0.96);

  color: var(--charcoal);

  border-radius: var(--radius-medium);

  box-shadow:
    0 18px 50px rgba(45, 42, 38, 0.12);
}

.banner-content .eyebrow {
  color: var(--charcoal);
}

.banner-content h2 {
  margin: 10px 0 18px;

  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--charcoal);

}

.banner-content p {
  max-width: 460px;

  margin-bottom: 28px;

  font-size: 16px;
  line-height: 1.7;

  color: rgba(45, 42, 38, 0.72);
}


/* ========================================
   BUTTON
======================================== */

.banner-content .button {
  width: auto;
  flex: 0 0 auto;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 760px) {

  .lifestyle-banner {
    min-height: 500px;

    margin: 45px 10px;

    padding: 45px 28px;

    align-items: flex-end;
  }

  .lifestyle-banner::before {
    background:
      linear-gradient(
        0deg,
        rgba(35, 31, 27, 0.7) 0%,
        rgba(35, 31, 27, 0.38) 45%,
        rgba(35, 31, 27, 0.06) 100%
      );
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-content h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

}

.holiday-banner {
  background-image:
    url("/images/lifestyle/christmas-cards.jpg");
}
.vehicle-banner {
  background-image:
    url("/images/lifestyle/car-magnet.jpeg");
}
.sticker-banner {
  background-image:
    url("/images/lifestyle/waterbottle-stickers.webp");
}

/* ========================================
   MOBILE HERO POSITION FIX
======================================== */

@media (max-width: 700px) {

  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    width: 78%;
    max-width: 430px;

    margin-left: auto;
    margin-right: auto;

    transform: translateX(6%);

    text-align: left;
  }

}

