/* =========================================================
   AYRA FASHION — MAIN STYLES
   Change colors/fonts/layout here.
   ========================================================= */

:root {
  --cream: #f7f2e9;
  --paper: #eee6d8;
  --olive: #4e5a40;
  --olive-dark: #30382a;
  --gold: #b69a62;
  --brown: #594b3e;
  --ink: #25251f;
  --white: #fffdf8;
  --line: rgba(37, 37, 31, 0.14);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
}

h1 {
  font-size: clamp(64px, 9vw, 126px);
}
h2 {
  font-size: clamp(52px, 7vw, 92px);
}
h3 {
  font-size: 32px;
}

em {
  color: var(--olive);
  font-style: italic;
}

p {
  color: #5d5b51;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--olive);
  color: white;
}
.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
}
.btn-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}
.btn-light:hover {
  background: white;
  color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover {
  background: var(--olive);
}

.text-link {
  display: inline-block;
  margin-top: 25px;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.text-link span {
  margin-left: 12px;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: white;
  transition: 0.3s ease;
}
.header.scrolled {
  background: rgba(247, 242, 233, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.12em;
  line-height: 0.8;
}
.brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.35em;
  margin-top: 6px;
  text-align: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: inherit;
}
.menu-btn span {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  margin: 6px;
}

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(31, 35, 26, 0.76), rgba(31, 35, 26, 0.2)),
    url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=2200&q=85")
      center/cover;
  color: white;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 70px;
}
.hero-content .eyebrow {
  color: #e6c98d;
}
.hero h1 {
  color: white;
}
.hero h1 em {
  color: #e6c98d;
}
.hero-text {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  margin: 30px 0;
  font-size: 16px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
}
.scroll-note {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0.75;
}
.scroll-note span {
  margin-left: 10px;
}

/* Intro */
.intro {
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: 70px 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.section-number {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
}
.intro-copy {
  padding-top: 55px;
}

/* About */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image {
  min-height: 650px;
  background:
    linear-gradient(rgba(78, 90, 64, 0.1), rgba(78, 90, 64, 0.1)),
    url("https://images.unsplash.com/photo-1551488831-00ddcb6c6bd3?auto=format&fit=crop&w=1200&q=85")
      center/cover;
  display: grid;
  place-items: center;
}
.image-placeholder span {
  color: white;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.about-content > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 24px;
}
.stats {
  display: flex;
  gap: 35px;
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 27px;
}
.stats span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Collections */
.collections {
  background: #e9e0d1;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 65px;
}
.section-heading > p {
  max-width: 330px;
  padding-top: 55px;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 25px;
}
.collection-card:first-child {
  grid-row: span 2;
}
.collection-img {
  min-height: 330px;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
}
.collection-card.large .collection-img {
  min-height: 700px;
}
.collection-img span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 10px;
}
.collection-1 {
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=85");
}
.collection-2 {
  background-image: url("https://images.unsplash.com/photo-1539109136881-3be0616acf4b?auto=format&fit=crop&w=1000&q=85");
}
.collection-3 {
  background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1000&q=85");
}
.collection-4 {
  background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1000&q=85");
}
.card-info {
  padding: 18px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.card-info p {
  font-size: 10px;
  color: var(--gold);
}
.card-info h3 {
  font-size: 28px;
}
.card-info a {
  margin-left: auto;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Process */
.process {
  background: var(--olive);
  color: white;
}
.process-heading {
  max-width: 650px;
}
.process-heading h2 {
  color: white;
}
.process-heading em {
  color: #e4c78a;
}
.process-heading > p:last-child {
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-top: 25px;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.process-item {
  padding: 25px 15px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.process-item:not(:first-child) {
  padding-left: 25px;
}
.process-item span {
  color: #d8b978;
  font-size: 11px;
}
.process-item h3 {
  color: white;
  margin: 35px 0 8px;
}
.process-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* Statement */
.statement {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(30, 35, 25, 0.55), rgba(30, 35, 25, 0.55)),
    url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=2200&q=85")
      center/cover fixed;
  color: white;
}
.statement h2 {
  color: white;
}
.statement h2 em {
  color: #e5c88c;
}

/* Why */
.why {
  background: var(--cream);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.feature {
  min-height: 300px;
  padding: 28px 28px 20px 0;
  border-right: 1px solid var(--line);
}
.feature:not(:first-child) {
  padding-left: 28px;
}
.feature span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}
.feature h3 {
  margin: 55px 0 15px;
  font-size: 27px;
}
.feature p {
  font-size: 13px;
}

/* CTA */
.cta {
  background: var(--paper);
  text-align: center;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  max-width: 750px;
}
.cta p:not(.eyebrow) {
  margin: 25px 0 30px;
}

/* Footer */
.footer {
  background: #22261f;
  color: white;
  padding: 70px 0 25px;
}
.footer .brand {
  color: white;
}
.footer-brand > p {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  font-size: 12px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.footer-links {
  display: flex;
  gap: 100px;
}
.footer-links h4 {
  color: #d5bb80;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin: 8px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 70px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--cream);
    color: var(--ink);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 24px;
    gap: 20px;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .intro-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .intro-copy {
    padding-top: 0;
  }
  .about-grid {
    gap: 50px;
  }
  .about-image {
    min-height: 520px;
  }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-card:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .collection-card.large .collection-img {
    min-height: 520px;
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .process-item,
  .process-item:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
  }
  .process-item h3 {
    margin: 10px 0 5px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1180px);
  }
  .section {
    padding: 80px 0;
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn {
    width: 100%;
  }
  .section-heading {
    flex-direction: column;
    gap: 15px;
  }
  .section-heading > p {
    padding-top: 0;
  }
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .collection-card:first-child {
    grid-column: auto;
  }
  .collection-img,
  .collection-card.large .collection-img {
    min-height: 460px;
  }
  .stats {
    gap: 15px;
    flex-wrap: wrap;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature,
  .feature:not(:first-child) {
    padding: 25px 0;
    border-right: 0;
  }
  .footer-top,
  .footer-links {
    flex-direction: column;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  /* -------==jeesan css */
  /* =========================================================
   HERO SLIDER
   ========================================================= */

  .hero-slider {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    color: white;
  }

  .hero-slide {
    position: absolute;
    inset: 0;

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

    opacity: 0;
    visibility: hidden;

    transform: scale(1.03);

    transition:
      opacity 1s ease,
      transform 6s ease;
  }

  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  /* Dark overlay */

  .hero-slide .hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
      90deg,
      rgba(25, 28, 21, 0.75) 0%,
      rgba(25, 28, 21, 0.4) 45%,
      rgba(25, 28, 21, 0.15) 100%
    );
  }

  /* Content */

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

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 70px;

    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.8s ease 0.3s,
      transform 0.8s ease 0.3s;
  }

  .hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
  }

  /* Heading */

  .hero-slide h1 {
    color: white;
    max-width: 800px;
  }

  .hero-slide h1 em {
    color: #e4c486;
  }

  /* Text */

  .hero-slide .hero-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 570px;
    margin: 30px 0;
  }

  /* Buttons */

  .hero-slide .hero-buttons {
    display: flex;
    gap: 12px;
  }

  /* Arrows */

  .slider-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 10;

    width: 52px;
    height: 52px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.12);

    color: white;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s ease;
  }

  .slider-arrow:hover {
    background: white;
    color: #30382a;
  }

  .slider-prev {
    left: 30px;
  }

  .slider-next {
    right: 30px;
  }

  /* Dots */

  .slider-dots {
    position: absolute;

    bottom: 55px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;
    gap: 10px;
  }

  .slider-dot {
    width: 28px;
    height: 2px;

    border: 0;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition: 0.3s ease;
  }

  .slider-dot.active {
    width: 55px;
    background: white;
  }

  /* Scroll text */

  .hero-slider .scroll-note {
    z-index: 10;
  }
}
/* =========================================================
   AYRA FASHION - HERO SLIDER
   SMOOTH PREMIUM TRANSITION
   ========================================================= */

.hero-slider {
  position: relative !important;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden !important;
  color: white;
}

/* ================= SLIDES ================= */

.hero-slide {
  position: absolute !important;
  inset: 0 !important;

  width: 100%;
  height: 100%;

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

  opacity: 0;
  visibility: hidden;

  z-index: 1;

  /* Smooth cinematic zoom */
  transform: scale(1.04);

  /* Slow fade */
  transition:
    opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 1.8s ease,
    transform 8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Active slide */

.hero-slide.active {
  opacity: 1 !important;
  visibility: visible !important;

  z-index: 2;

  transform: scale(1);
}

/* ================= OVERLAY ================= */

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(25, 28, 21, 0.75) 0%,
    rgba(25, 28, 21, 0.4) 45%,
    rgba(25, 28, 21, 0.15) 100%
  );
}

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

.hero-slide .hero-content {
  position: relative;
  z-index: 3;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-top: 70px;

  /* Content smooth entry */
  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity 1.2s ease 0.4s,
    transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) 0.4s;
}

/* Active content */

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* ================= TEXT ================= */

.hero-slide h1 {
  color: white !important;
  max-width: 800px;
}

.hero-slide h1 em {
  color: #e4c486 !important;
}

.hero-slide .hero-text {
  color: rgba(255, 255, 255, 0.85) !important;

  max-width: 570px;

  margin: 30px 0;
}

.hero-slide .eyebrow {
  color: #e4c486 !important;
}

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

.hero-slide .hero-buttons {
  display: flex;
  gap: 12px;
}

/* ================= ARROWS ================= */

.slider-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 20;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(255, 255, 255, 0.45);

  background: rgba(0, 0, 0, 0.18);

  color: white;

  font-size: 20px;

  cursor: pointer;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}

.slider-arrow:hover {
  background: white;
  color: #30382a;

  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* ================= DOTS ================= */

.slider-dots {
  position: absolute;

  bottom: 55px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 20;

  display: flex;

  gap: 10px;
}

.slider-dot {
  width: 28px;
  height: 2px;

  border: 0;

  background: rgba(255, 255, 255, 0.45);

  cursor: pointer;

  transition:
    width 0.5s ease,
    background 0.5s ease;
}

.slider-dot.active {
  width: 55px;

  background: white;
}

/* ================= SCROLL TEXT ================= */

.hero-slider .scroll-note {
  z-index: 20;
}

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

@media (max-width: 600px) {
  .hero-slider {
    min-height: 650px;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-slide .hero-content {
    padding-top: 80px;
  }

  .hero-slide .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;

    font-size: 16px;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }
}
/* =========================================================
   PREMIUM INTRO — AYRA FASHION
   ========================================================= */

.intro {
  background: #f5f0e7;
  position: relative;
  overflow: hidden;
}

/* subtle background detail */

.intro::after {
  content: "AYRA";
  position: absolute;
  right: -40px;
  bottom: -80px;

  font-family: var(--serif);
  font-size: 260px;
  line-height: 1;

  color: rgba(78, 90, 64, 0.035);

  pointer-events: none;
}

/* Top */

.intro-premium {
  position: relative;
  z-index: 2;
}

.intro-top {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 80px;
}

.intro-number {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
}

.intro-line {
  width: 70px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}

.intro-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #777266;
}

/* Main */

.intro-main {
  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  gap: 100px;

  align-items: end;
}

/* Heading */

.intro-heading .eyebrow {
  margin-bottom: 25px;
}

.intro-heading h2 {
  font-size: clamp(65px, 8vw, 115px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.intro-heading h2 em {
  color: var(--olive);
  display: inline-block;
}

/* Copy */

.intro-copy {
  max-width: 430px;
  padding-bottom: 8px;
}

.intro-small {
  display: block;

  font-size: 9px;
  letter-spacing: 0.25em;

  color: var(--gold);

  margin-bottom: 22px;
}

.intro-copy p {
  font-size: 15px;
  line-height: 1.9;

  color: #666257;

  max-width: 400px;
}

/* Link */

.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;

  margin-top: 38px;

  padding-bottom: 9px;

  border-bottom: 1px solid var(--olive);

  color: var(--olive-dark);

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

  letter-spacing: 0.16em;
  text-transform: uppercase;

  transition: 0.35s ease;
}

.intro-link i {
  font-size: 17px;
  font-style: normal;

  transition: transform 0.35s ease;
}

.intro-link:hover {
  color: var(--gold);
}

.intro-link:hover i {
  transform: translate(5px, -5px);
}

/* Bottom */

.intro-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 95px;
  padding-top: 22px;

  border-top: 1px solid rgba(37, 37, 31, 0.13);

  font-size: 8px;
  letter-spacing: 0.22em;

  color: #8a8478;
}

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

@media (max-width: 700px) {
  .intro {
    padding: 80px 0;
  }

  .intro-top {
    margin-bottom: 55px;
  }

  .intro-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-heading h2 {
    font-size: clamp(55px, 16vw, 85px);
  }

  .intro-copy {
    max-width: 100%;
  }

  .intro-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    margin-top: 65px;
  }
}
/* =========================================================
   AYRA FASHION — PREMIUM INTRO
   ========================================================= */

.intro-premium-section {
  position: relative;
  padding: 150px 0;

  background: #f7f2e9;

  overflow: hidden;
}

/* subtle giant AYRA */

.intro-premium-section::before {
  content: "AYRA";

  position: absolute;
  right: -40px;
  top: 40px;

  font-family: var(--serif);
  font-size: 280px;
  line-height: 1;

  color: rgba(78, 90, 64, 0.035);

  pointer-events: none;
}

/* GRID */

.premium-intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 110px;

  align-items: center;
}

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

.premium-intro-image {
  position: relative;

  height: 680px;

  overflow: hidden;

  background: #ddd;
}

.premium-intro-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 1s ease;
}

.premium-intro-image:hover img {
  transform: scale(1.04);
}

/* Image badge */

.image-badge {
  position: absolute;

  left: 25px;
  bottom: 25px;

  width: 105px;
  height: 105px;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;

  display: flex;
  flex-direction: column;

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

  color: white;

  background: rgba(30, 35, 25, 0.18);

  backdrop-filter: blur(8px);
}

.image-badge span {
  font-family: var(--serif);

  font-size: 20px;

  letter-spacing: 0.12em;
}

.image-badge small {
  font-size: 6px;

  letter-spacing: 0.25em;

  margin-top: 5px;
}

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

.premium-intro-content {
  max-width: 570px;
}

/* Number */

.premium-intro-number {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 65px;
}

.premium-intro-number span {
  font-family: var(--serif);

  font-size: 18px;

  color: var(--gold);
}

.premium-intro-number div {
  width: 55px;
  height: 1px;

  background: var(--gold);

  opacity: 0.6;
}

.premium-intro-number small {
  font-size: 8px;

  letter-spacing: 0.22em;

  color: #858074;
}

/* Heading */

.premium-intro-content .eyebrow {
  margin-bottom: 22px;
}

.premium-intro-content h2 {
  font-size: clamp(65px, 7vw, 105px);

  line-height: 0.88;

  letter-spacing: -0.035em;

  color: var(--ink);
}

.premium-intro-content h2 em {
  color: var(--olive);

  font-style: italic;
}

/* Description */

.premium-description {
  max-width: 470px;

  margin-top: 35px;

  font-size: 15px;

  line-height: 1.9;

  color: #666257;
}

.premium-description.second {
  margin-top: 18px;

  font-size: 13px;

  color: #858074;
}

/* Link */

.premium-discover {
  display: inline-flex;

  align-items: center;

  gap: 25px;

  margin-top: 35px;

  padding-bottom: 10px;

  border-bottom: 1px solid var(--olive);

  color: var(--olive-dark);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.premium-discover b {
  font-size: 18px;

  font-weight: 400;

  transition: transform 0.35s ease;
}

.premium-discover:hover b {
  transform: translate(5px, -5px);
}

/* =========================================================
   STATS
   ========================================================= */

.premium-stats {
  display: grid;

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

  margin-top: 65px;

  padding-top: 25px;

  border-top: 1px solid rgba(37, 37, 31, 0.14);
}

.premium-stats div {
  padding-right: 20px;

  border-right: 1px solid rgba(37, 37, 31, 0.12);
}

.premium-stats div:not(:first-child) {
  padding-left: 20px;
}

.premium-stats div:last-child {
  border-right: 0;
}

.premium-stats strong {
  display: block;

  font-family: var(--serif);

  font-size: 25px;

  font-weight: 500;

  color: var(--gold);

  margin-bottom: 10px;
}

.premium-stats span {
  font-size: 8px;

  line-height: 1.6;

  letter-spacing: 0.14em;

  color: #777267;
}

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

@media (max-width: 800px) {
  .intro-premium-section {
    padding: 90px 0;
  }

  .premium-intro-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .premium-intro-image {
    height: 520px;
  }

  .premium-intro-number {
    margin-bottom: 45px;
  }

  .premium-intro-content h2 {
    font-size: 68px;
  }

  .premium-stats {
    margin-top: 50px;
  }
}
/* /// */
/* ================= ABOUT ================= */

.about {
  padding: 120px 0;
  background: #f8f6f2;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* Image */
.about-image {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: #e8e3dc;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}

/* Image Label */
.about-image-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-image-label span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
}

.about-image-label small {
  font-size: 9px;
  letter-spacing: 2px;
  color: #777;
}

/* Content */
.about-content {
  max-width: 560px;
}

.eyebrow {
  margin-bottom: 25px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #777;
}

.about-content h2 {
  margin: 0 0 30px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -2px;
  color: #171717;
}

.about-content h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: #8c7865;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #68645f;
}

.about-content .about-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #35322e;
  margin-bottom: 18px;
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  border-top: 1px solid #d8d2ca;
}

.stat-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #d8d2ca;
}

.stat-item strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #9b8875;
}

.stat-item div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-item span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #252321;
}

.stat-item small {
  font-size: 12px;
  color: #89847e;
}

/* Link */
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid #252321;
  color: #252321;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}

.about-link span {
  font-size: 18px;
  line-height: 1;
}

.about-link:hover {
  gap: 26px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about {
    padding: 90px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-image {
    height: 520px;
  }

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

@media (max-width: 600px) {
  .about {
    padding: 70px 0;
  }

  .about-grid {
    gap: 40px;
  }

  .about-image {
    height: 430px;
  }

  .about-image-label {
    left: 18px;
    bottom: 18px;
    padding: 14px 17px;
  }

  .about-image-label span {
    font-size: 15px;
  }

  .about-content h2 {
    font-size: 46px;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
  }

  .about-content .about-lead {
    font-size: 15px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .stats {
    margin-top: 30px;
  }

  .stat-item {
    padding: 17px 0;
  }
}
/* ================= COLLECTIONS ================= */

.collections {
  padding: 120px 0;
  background: #fff;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 65px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -3px;
  color: #181716;
}

.section-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: #947e6a;
}

.section-heading > p {
  max-width: 370px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #77716b;
}

/* Collection Grid */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 28px;
}

.collection-card {
  overflow: hidden;
}

.collection-card a {
  color: inherit;
  text-decoration: none;
}

/* Images */

.collection-img {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #e9e5df;
}

.collection-large .collection-img {
  height: 650px;
}

.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collection-card:hover .collection-img img {
  transform: scale(1.055);
}

/* Number */

.collection-number {
  position: absolute;
  top: 22px;
  left: 22px;

  width: 42px;
  height: 42px;

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

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);

  font-size: 11px;
  letter-spacing: 1px;
  color: #292623;
}

/* Hover Overlay */

.collection-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;

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

  padding: 17px 20px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(15px);

  transition: 0.4s ease;
}

.collection-card:hover .collection-overlay {
  opacity: 1;
  transform: translateY(0);
}

.collection-overlay span {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}

.collection-overlay strong {
  font-size: 20px;
  font-weight: 400;
}

/* Card Info */

.card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  padding: 20px 2px 0;
}

.card-info small {
  display: block;
  margin-bottom: 8px;

  font-size: 10px;
  letter-spacing: 2px;
  color: #9a8b7e;
}

.card-info h3 {
  margin: 0;

  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #1d1b19;
}

.card-arrow {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.collection-card:hover .card-arrow {
  transform: translate(4px, -4px);
}

/* ================= COLLECTIONS RESPONSIVE ================= */

@media (max-width: 800px) {
  .collections {
    padding: 85px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 52px;
    margin-bottom: 25px;
    letter-spacing: -2px;
  }

  .section-heading > p {
    max-width: 500px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .collection-img,
  .collection-large .collection-img {
    height: 540px;
  }

  .collection-overlay {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 500px) {
  .collections {
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: 45px;
  }

  .collection-img,
  .collection-large .collection-img {
    height: 460px;
  }

  .card-info h3 {
    font-size: 21px;
  }

  .collection-grid {
    gap: 42px;
  }
}

/* ================= MANUFACTURING ================= */

.process {
  padding: 130px 0;
  background: #f5f2ed;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}

.process-heading h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -3px;
  color: #191817;
}

.process-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #927c68;
}

.process-heading > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #716b65;
}

/* Process Line */

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #d5cec5;
}

.process-item {
  min-height: 220px;
  padding: 25px 22px 20px 0;
  border-right: 1px solid #d5cec5;
  position: relative;
}

.process-item:not(:first-child) {
  padding-left: 22px;
}

.process-item:last-child {
  border-right: 0;
}

/* Top */

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
}

.process-top span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #9b8774;
}

.process-top i {
  font-size: 18px;
  font-style: normal;
  color: #aaa099;
}

/* Text */

.process-item h3 {
  margin: 0 0 10px;

  font-size: 25px;
  font-weight: 400;
  color: #211f1d;
}

.process-item p {
  margin: 0;

  font-size: 12px;
  line-height: 1.6;
  color: #817a73;
}

/* Hover */

.process-item {
  transition: transform 0.35s ease;
}

.process-item:hover {
  transform: translateY(-5px);
}

.process-item:hover .process-top span {
  color: #5d4d40;
}

/* Responsive */

@media (max-width: 900px) {
  .process {
    padding: 90px 0;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

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

  .process-item {
    border-bottom: 1px solid #d5cec5;
  }

  .process-item:nth-child(2) {
    border-right: 0;
  }

  .process-item:nth-child(4) {
    border-right: 0;
  }

  .process-item:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 550px) {
  .process {
    padding: 75px 0;
  }

  .process-heading h2 {
    font-size: 48px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-item,
  .process-item:not(:first-child) {
    padding: 22px 0;
    border-right: 0;
  }

  .process-item:last-child {
    grid-column: auto;
  }

  .process-top {
    margin-bottom: 35px;
  }

  .process-item h3 {
    font-size: 22px;
  }
}
/* whatspp */

.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

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

.footer {
  position: relative;
  background: #111;
  color: #fff;
  margin-top: 80px;
  overflow: hidden;
}

/* subtle luxury glow */
.footer::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -250px;
  right: -150px;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.footer-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding: 75px 0 65px;
}

/* Brand */

.footer-brand {
  max-width: 420px;
}

.footer-brand .brand {
  display: inline-block;
}

.footer-brand .brand-logo {
  width: 200px;
  max-width: 100%;
  display: block;
}

.footer-tagline {
  margin: 22px 0 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #fff;
}

.footer-description {
  max-width: 350px;
  margin: 0;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

/* Links */

.footer-links {
  display: flex;
  gap: 110px;
  padding-top: 8px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.footer-column h4 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  position: relative;
  margin-bottom: 14px;
  color: #999;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-column a:hover::after {
  width: 100%;
}

/* Bottom */

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #777;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* ================= WHATSAPP ================= */

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 56px;
  height: 56px;

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

  background: #25d366;
  color: #fff;

  border-radius: 50%;
  text-decoration: none;

  font-size: 29px;

  z-index: 9999;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);

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

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.05);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 45px;
    padding: 55px 20px 45px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links {
    gap: 60px;
  }

  .footer-bottom {
    margin: 0 20px;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
    font-size: 27px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 30px;
  }

  .footer-column {
    min-width: 100px;
  }

  .footer-brand .brand-logo {
    width: 175px;
  }
}
/* ================= CTA ================= */

.cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: #f4f1ec;
}

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

.cta .eyebrow {
  margin-bottom: 25px;
}

.cta h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2px;
  color: #111;
}

.cta h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px auto 35px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #222;
  color: #222;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #222;
  color: #fff;
}

.btn-outline i {
  font-size: 18px;
}

/* Mobile */

@media (max-width: 600px) {
  .cta {
    padding: 80px 20px;
  }

  .cta h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .cta p:not(.eyebrow) {
    font-size: 14px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   BRAND STATEMENT
===================================================== */

.statement {
  position: relative;
  padding: 150px 0;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  right: -180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.statement::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -250px;
  left: -180px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.statement-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.statement .eyebrow {
  color: #999;
  margin-bottom: 30px;
}

.statement h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -3px;
}

.statement h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: #d8d2c9;
}

.statement-line {
  width: 55px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 42px auto 30px;
}

.statement-text {
  max-width: 590px;
  margin: auto;
  color: #999;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.2px;
}

/* =====================================================
   WHY AYRA
===================================================== */

.why {
  padding: 120px 0;
  background: #f7f5f1;
}

.why-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 70px;
}

.why-heading h2 {
  margin-top: 12px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
}

.why-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.why-intro {
  max-width: 370px;
  margin: 0 0 8px;
  color: #777;
  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   FEATURE GRID
===================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8d4ce;
  border-bottom: 1px solid #d8d4ce;
}

.feature {
  position: relative;
  min-height: 310px;
  padding: 32px 28px 35px;
  border-right: 1px solid #d8d4ce;
  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.feature:first-child {
  border-left: 1px solid #d8d4ce;
}

.feature:hover {
  background: #fff;
}

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
}

.feature-number {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #888;
}

.feature-icon {
  font-size: 15px;
  color: #aaa;
  transition: transform 0.4s ease;
}

.feature:hover .feature-icon {
  transform: rotate(90deg);
}

.feature h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: #171717;
}

.feature p {
  max-width: 240px;
  margin: 0;
  color: #777;
  font-size: 13px;
  line-height: 1.85;
}

.feature-line {
  position: absolute;
  left: 28px;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #171717;
  transition: width 0.45s ease;
}

.feature:hover .feature-line {
  width: calc(100% - 56px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .statement {
    padding: 110px 25px;
  }

  .why {
    padding: 90px 25px;
  }

  .why-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }

  .why-intro {
    max-width: 550px;
  }

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

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(3),
  .feature:nth-child(4) {
    border-top: 1px solid #d8d4ce;
  }
}

@media (max-width: 600px) {
  .statement {
    padding: 90px 20px;
  }

  .statement h2 {
    font-size: 45px;
    letter-spacing: -1.5px;
  }

  .statement-text {
    font-size: 14px;
  }

  .why {
    padding: 75px 20px;
  }

  .why-heading h2 {
    font-size: 43px;
    letter-spacing: -1px;
  }

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

  .feature {
    min-height: auto;
    padding: 28px 22px 35px;
    border-left: 1px solid #d8d4ce;
    border-right: 1px solid #d8d4ce;
    border-bottom: 1px solid #d8d4ce;
  }

  .feature:first-child {
    border-bottom: 0;
  }

  .feature:nth-child(2) {
    border-right: 1px solid #d8d4ce;
    border-top: 0;
  }

  .feature:nth-child(3),
  .feature:nth-child(4) {
    border-top: 0;
  }

  .feature-top {
    margin-bottom: 35px;
  }
}
/* =====================================================
   MANUFACTURING — PREMIUM B2B
===================================================== */

.process {
  position: relative;
  padding: 130px 0 140px;
  background: #f7f5f1;
  color: #171717;
  overflow: hidden;
}

.process-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 90px;
  margin-bottom: 90px;
}

.process-title {
  flex: 1;
}

.process-title .eyebrow {
  margin-bottom: 28px;
  color: #777;
}

.process-title h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 95px);
  line-height: 0.92;
  letter-spacing: -4px;
  font-weight: 400;
}

.process-title h2 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #8d8173;
  font-weight: 400;
}

.process-intro {
  width: 430px;
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.process-intro-line {
  width: 35px;
  min-width: 35px;
  height: 1px;
  margin-top: 9px;
  background: #aaa;
}

.process-intro p {
  margin: 0 0 18px;
  color: #626262 !important;
  background: transparent !important;
  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   MANUFACTURING PROMISE
===================================================== */

.manufacturing-promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 55px 0;
  margin-bottom: 70px;
  border-top: 1px solid #d5d1ca;
  border-bottom: 1px solid #d5d1ca;
}

.promise-label {
  display: block;
  margin-bottom: 17px;
  color: #999;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
}

.manufacturing-promise h3 {
  max-width: 500px;
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -1px;
}

.manufacturing-promise h3 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #8d8173;
}

.manufacturing-promise > p {
  max-width: 500px;
  margin: 0;
  color: #696969 !important;
  background: transparent !important;
  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   PROCESS GRID
===================================================== */

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #d5d1ca;
  border-left: 1px solid #d5d1ca;
}

.process-item {
  position: relative;
  min-height: 365px;
  padding: 25px 24px 35px;
  border-right: 1px solid #d5d1ca;
  border-bottom: 1px solid #d5d1ca;
  transition: background 0.4s ease;
}

.process-item:hover {
  background: #fff;
}

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 95px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 22px;
  background: #e8e1d8;
  color: #555;
  font-size: 10px;
  letter-spacing: 1px;
}

.process-arrow {
  color: #999;
  font-size: 19px;
  transition: transform 0.4s ease;
}

.process-item:hover .process-arrow {
  transform: translate(5px, 5px);
}

.process-label {
  display: block;
  margin-bottom: 12px;
  color: #999;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.process-content h3 {
  margin: 0 0 15px;
  color: #171717;
  font-size: 23px;
  font-weight: 400;
}

.process-content p {
  max-width: 205px;
  margin: 0;
  color: #777 !important;
  background: transparent !important;
  font-size: 12px;
  line-height: 1.85;
}

.process-item::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #222;
  transition: width 0.45s ease;
}

.process-item:hover::after {
  width: calc(100% - 48px);
}

/* =====================================================
   B2B / CLIENT CTA
===================================================== */

.manufacturing-b2b {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 80px;
  margin-top: 100px;
  padding: 70px;
  background: #171717;
  color: #fff;
}

.b2b-content {
  max-width: 760px;
}

.b2b-content .promise-label {
  color: #999;
}

.b2b-content h3 {
  margin: 0 0 25px;
  font-size: clamp(35px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 400;
}

.b2b-content h3 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #d0c6ba;
}

.b2b-content p {
  max-width: 680px;
  margin: 0 0 15px;
  color: #aaa !important;
  background: transparent !important;
  font-size: 14px;
  line-height: 1.9;
}

.b2b-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}

.b2b-actions .btn {
  text-decoration: none;
}

.b2b-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s ease;
}

.b2b-whatsapp:hover {
  opacity: 0.65;
}

.b2b-whatsapp i {
  font-size: 18px;
}

.b2b-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 45px;
}

.b2b-note span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.b2b-note p {
  margin: 15px 0 0;
  color: #888;
  font-size: 13px;
  line-height: 1.7;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .process {
    padding: 100px 25px;
  }

  .process-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .process-intro {
    width: 100%;
    max-width: 650px;
  }

  .manufacturing-promise {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .process-item:last-child {
    grid-column: span 2;
  }

  .manufacturing-b2b {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .b2b-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 35px 0 0;
  }
}

@media (max-width: 600px) {
  .process {
    padding: 80px 20px 90px;
  }

  .process-title h2 {
    font-size: 53px;
    letter-spacing: -2px;
  }

  .process-heading {
    margin-bottom: 65px;
  }

  .manufacturing-promise {
    padding: 40px 0;
    margin-bottom: 55px;
  }

  .manufacturing-promise h3 {
    font-size: 29px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-item {
    min-height: 300px;
  }

  .process-item:last-child {
    grid-column: auto;
  }

  .manufacturing-b2b {
    margin-top: 70px;
    padding: 40px 25px;
    gap: 40px;
  }

  .b2b-content h3 {
    font-size: 37px;
  }

  .b2b-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .b2b-actions .btn {
    width: 100%;
  }
}
/* =====================================================
   PREMIUM MANUFACTURING
===================================================== */

.process {
  position: relative;
  padding: 130px 0 120px;
  background: #f7f5f1;
  color: #171717;
  overflow: hidden;
}

/* =====================================================
   INTRO
===================================================== */

.process-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 90px;
  margin-bottom: 70px;
}

.process-title {
  flex: 1;
}

.process-title .eyebrow {
  margin-bottom: 26px;
  color: #777;
}

.process-title h2 {
  margin: 0;
  color: #161616;

  font-size: clamp(58px, 7vw, 94px);
  line-height: 0.92;
  letter-spacing: -4px;
  font-weight: 400;
}

.process-title h2 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #8d8173;
  font-weight: 400;
}

.process-intro {
  width: 430px;

  display: flex;
  gap: 20px;

  margin-bottom: 7px;
}

.process-intro-line {
  width: 35px;
  min-width: 35px;
  height: 1px;

  margin-top: 9px;

  background: #aaa;
}

.process-intro p {
  margin: 0 0 17px;

  color: #626262 !important;
  background: transparent !important;

  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   MAIN MANUFACTURING IMAGE
===================================================== */

.manufacturing-visual {
  position: relative;

  width: 100%;
  height: 560px;

  overflow: hidden;

  margin-bottom: 80px;

  background: #ddd;
}

.manufacturing-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.manufacturing-visual:hover img {
  transform: scale(1.035);
}

.manufacturing-visual::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), transparent 45%);

  pointer-events: none;
}

.manufacturing-visual-overlay {
  position: absolute;

  left: 38px;
  right: 38px;
  bottom: 30px;

  z-index: 2;

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

  color: #fff;
}

.manufacturing-visual-overlay span:first-child {
  display: block;

  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 600;
}

.manufacturing-visual-overlay p {
  margin: 8px 0 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.visual-number {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.75;
}

/* =====================================================
   APPROACH
===================================================== */

.manufacturing-promise {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 100px;

  padding: 55px 0;

  margin-bottom: 70px;

  border-top: 1px solid #d5d1ca;
  border-bottom: 1px solid #d5d1ca;
}

.promise-label {
  display: block;

  margin-bottom: 17px;

  color: #999;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
}

.manufacturing-promise h3 {
  max-width: 520px;

  margin: 0;

  font-size: 35px;
  line-height: 1.2;

  font-weight: 400;
  letter-spacing: -1px;
}

.manufacturing-promise h3 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #8d8173;
}

.manufacturing-promise > p {
  max-width: 520px;

  margin: 0;

  color: #696969 !important;
  background: transparent !important;

  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   PROCESS CARDS
===================================================== */

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid #d5d1ca;
  border-left: 1px solid #d5d1ca;
}

.process-item {
  position: relative;

  min-height: 350px;

  padding: 25px 24px 35px;

  border-right: 1px solid #d5d1ca;
  border-bottom: 1px solid #d5d1ca;

  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.process-item:hover {
  background: #fff;
}

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 90px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 22px;

  background: #e8e1d8;

  color: #555;

  font-size: 10px;
  letter-spacing: 1px;
}

.process-arrow {
  color: #999;

  font-size: 19px;

  transition: transform 0.4s ease;
}

.process-item:hover .process-arrow {
  transform: translate(5px, 5px);
}

.process-label {
  display: block;

  margin-bottom: 12px;

  color: #999;

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

  letter-spacing: 1.8px;
}

.process-content h3 {
  margin: 0 0 15px;

  color: #171717;

  font-size: 22px;
  font-weight: 400;

  letter-spacing: -0.4px;
}

.process-content p {
  max-width: 210px;

  margin: 0;

  color: #777 !important;
  background: transparent !important;

  font-size: 12px;
  line-height: 1.85;
}

.process-item::after {
  content: "";

  position: absolute;

  left: 24px;
  bottom: 0;

  width: 0;
  height: 2px;

  background: #222;

  transition: width 0.45s ease;
}

.process-item:hover::after {
  width: calc(100% - 48px);
}

/* =====================================================
   B2B SECTION
===================================================== */

.manufacturing-b2b {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  margin-top: 100px;

  background: #171717;

  color: #fff;
}

/* Image */

.b2b-image {
  position: relative;

  min-height: 500px;

  overflow: hidden;
}

.b2b-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 1s ease;
}

.manufacturing-b2b:hover .b2b-image img {
  transform: scale(1.03);
}

.b2b-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}

.b2b-image-caption {
  position: absolute;

  z-index: 2;

  left: 30px;
  bottom: 28px;

  display: flex;
  align-items: center;
  gap: 15px;
}

.b2b-image-caption span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.b2b-image-caption small {
  padding-left: 15px;

  border-left: 1px solid rgba(255, 255, 255, 0.4);

  color: #ddd;

  font-size: 8px;
  letter-spacing: 2px;
}

/* Content */

.b2b-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 70px;
}

.b2b-content .promise-label {
  color: #999;
}

.b2b-content h3 {
  margin: 0 0 27px;

  font-size: clamp(38px, 4vw, 55px);
  line-height: 1.02;

  font-weight: 400;
  letter-spacing: -2px;
}

.b2b-content h3 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #d0c6ba;
}

.b2b-content p {
  max-width: 560px;

  margin: 0 0 16px;

  color: #aaa !important;
  background: transparent !important;

  font-size: 13px;
  line-height: 1.9;
}

.b2b-actions {
  display: flex;
  align-items: center;
  gap: 25px;

  margin-top: 25px;
}

.b2b-actions .btn {
  text-decoration: none;
}

.b2b-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #fff;

  font-size: 13px;
  text-decoration: none;

  transition: opacity 0.3s ease;
}

.b2b-whatsapp:hover {
  opacity: 0.65;
}

.b2b-whatsapp i {
  font-size: 18px;
}

/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.manufacturing-bottom {
  display: flex;
  align-items: center;
  gap: 25px;

  margin-top: 55px;

  color: #999;

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

  letter-spacing: 2.5px;
}

.bottom-line {
  width: 80px;
  height: 1px;

  background: #c8c4bd;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
  .process {
    padding: 100px 25px;
  }

  .process-heading {
    flex-direction: column;
    align-items: flex-start;

    gap: 40px;
  }

  .process-intro {
    width: 100%;
    max-width: 650px;
  }

  .manufacturing-visual {
    height: 480px;
  }

  .manufacturing-promise {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .process-item:last-child {
    grid-column: span 2;
  }

  .manufacturing-b2b {
    grid-template-columns: 1fr;
  }

  .b2b-image {
    min-height: 450px;
  }
}

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

@media (max-width: 600px) {
  .process {
    padding: 80px 20px 90px;
  }

  .process-title h2 {
    font-size: 53px;
    letter-spacing: -2px;
  }

  .process-heading {
    margin-bottom: 55px;
  }

  .manufacturing-visual {
    height: 390px;
    margin-bottom: 60px;
  }

  .manufacturing-visual-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .manufacturing-visual-overlay p {
    font-size: 20px;
  }

  .manufacturing-promise {
    padding: 40px 0;
    margin-bottom: 55px;
  }

  .manufacturing-promise h3 {
    font-size: 29px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-item {
    min-height: 290px;
  }

  .process-item:last-child {
    grid-column: auto;
  }

  .manufacturing-b2b {
    margin-top: 70px;
  }

  .b2b-image {
    min-height: 330px;
  }

  .b2b-content {
    padding: 45px 25px;
  }

  .b2b-content h3 {
    font-size: 38px;
  }

  .b2b-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .b2b-actions .btn {
    width: 100%;
  }

  .manufacturing-bottom {
    margin-top: 40px;
  }
}
/* =====================================================
   MOBILE PROCESS FIX
===================================================== */

@media (max-width: 600px) {
  .process-line {
    display: grid;
    grid-template-columns: 1fr !important;

    width: 100%;
    margin: 0;

    border-top: 1px solid #d5d1ca;
    border-left: 1px solid #d5d1ca;
  }

  .process-item {
    width: 100%;
    min-height: 0 !important;

    box-sizing: border-box;

    padding: 24px 22px 32px !important;

    border-right: 1px solid #d5d1ca !important;
    border-bottom: 1px solid #d5d1ca !important;
  }

  /* 05 ko span karne wala desktop rule remove */
  .process-item:last-child {
    grid-column: auto !important;
  }

  /* Top spacing */
  .process-top {
    margin-bottom: 45px !important;
  }

  .process-number {
    width: 34px;
    height: 22px;
  }

  .process-arrow {
    font-size: 18px;
  }

  /* Text */
  .process-content {
    width: 100%;
  }

  .process-label {
    margin-bottom: 10px;
  }

  .process-content h3 {
    margin-bottom: 12px;

    font-size: 23px;
    line-height: 1.2;
  }

  .process-content p {
    width: 100%;
    max-width: 100% !important;

    margin: 0;

    font-size: 13px;
    line-height: 1.75;
  }

  /* Hover line */
  .process-item::after {
    left: 22px;
    width: 0;
  }

  .process-item:hover::after {
    width: calc(100% - 44px);
  }
}
/* =====================================================
   WHY AYRA - MOBILE CARD FIX
===================================================== */

@media (max-width: 600px) {
  .feature-grid {
    display: grid;
    grid-template-columns: 1fr !important;

    width: 100%;
    margin: 0;
    padding: 0;

    border-top: 1px solid #d8d4ce;
    border-left: 1px solid #d8d4ce;
  }

  .feature {
    width: 100%;
    min-height: unset !important;
    height: auto !important;

    box-sizing: border-box;

    padding: 26px 22px 32px !important;

    border-left: 0 !important;
    border-right: 1px solid #d8d4ce !important;
    border-bottom: 1px solid #d8d4ce !important;

    background: transparent;
  }

  /* Desktop/tablet spacing remove */
  .feature-top {
    margin-bottom: 38px !important;
  }

  .feature h3 {
    margin: 0 0 12px !important;

    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  .feature p {
    width: 100%;
    max-width: 100% !important;

    margin: 0 !important;

    font-size: 14px !important;
    line-height: 1.75 !important;

    color: #777 !important;
  }

  .feature-number {
    font-size: 12px;
  }

  .feature-icon {
    font-size: 18px;
  }

  .feature-line {
    left: 22px !important;
    bottom: 0 !important;
  }

  .feature:hover .feature-line {
    width: calc(100% - 44px) !important;
  }
}

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

.footer {
  background: #171715;
  color: #fff;
  padding-top: 80px;
}

/* Footer Top */

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 70px;
}

/* Brand */

.footer-brand {
  max-width: 330px;
}

.footer-brand .brand-logo {
  width: 190px;
  height: auto;
  display: block;
}

.footer-tagline {
  margin: 28px 0 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a96e;
}

.footer-description {
  margin: 0;
  max-width: 310px;
  font-size: 13px;
  line-height: 1.8;
  color: #aaa69f;
}

/* Links Area */

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Column */

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h4 {
  margin: 0 0 25px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: #fff;
}

.footer-column a {
  display: block;

  margin-bottom: 13px;

  font-size: 13px;
  color: #aaa69f;
  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Address */

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin: 0 0 18px;

  font-size: 13px;
  line-height: 1.7;
  color: #aaa69f;
}

.address-line {
  color: #aaa69f;
}

/* Icons */

.footer-icon {
  width: 18px;
  flex-shrink: 0;

  color: #c9a96e;
  font-size: 15px;
  line-height: 1.5;
}

/* Address Links */

.footer-address a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Footer Bottom */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 22px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  font-size: 10px;
  letter-spacing: 1px;
  color: #77736d;
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .footer-brand {
    max-width: 500px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 60px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-address {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* ================= PARTNERS ================= */

.partners {
  padding: 120px 0;
  background: #f8f6f2;
}

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

/* Card */

.partner-card {
  position: relative;
  padding: 38px 32px 32px;

  background: #fff;
  border: 1px solid #e2ddd6;

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

.partner-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Number */

.partner-number {
  position: absolute;
  top: 25px;
  right: 28px;

  font-size: 10px;
  letter-spacing: 2px;
  color: #a08c78;
}

/* Icon */

.partner-icon {
  width: 52px;
  height: 52px;

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

  margin-bottom: 28px;

  border: 1px solid #d8d0c7;
  border-radius: 50%;

  font-size: 18px;
  color: #9a8068;
}

/* Heading */

.partner-card h3 {
  margin: 0 0 8px;

  font-size: 24px;
  font-weight: 400;
  color: #1d1b19;
}

.partner-role {
  margin: 0 0 30px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #9a8068;
}

/* Details */

.partner-details {
  padding-top: 22px;
  border-top: 1px solid #e5e0da;
}

.partner-details > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 17px;
}

.partner-details span {
  width: 18px;
  flex-shrink: 0;

  color: #9a8068;
  font-size: 14px;
}

.partner-details p {
  margin: 0;

  font-size: 12px;
  line-height: 1.7;
  color: #77716b;
}

.partner-details a {
  font-size: 12px;
  color: #77716b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.partner-details a:hover {
  color: #1d1b19;
}

/* Bottom Link */

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  margin-top: 12px;
  padding-bottom: 7px;

  border-bottom: 1px solid #24211f;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: #24211f;
  text-decoration: none;

  transition: gap 0.3s ease;
}

.partner-link span {
  font-size: 17px;
  color: #24211f;
}

.partner-link:hover {
  gap: 23px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .partners {
    padding: 90px 0;
  }

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

@media (max-width: 600px) {
  .partners {
    padding: 70px 0;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-card {
    padding: 32px 25px 28px;
  }
}
/* =====================================================
   OWNER & FOUNDER
===================================================== */

.founder-section {
  padding: 120px 0;
  background: var(--cream);
}

/* Heading */

.founder-heading {
  margin-bottom: 70px;
}

.founder-heading h2 {
  margin: 10px 0 0;
}

/* Main Grid */

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

/* Founder Image */

.founder-image {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #ddd;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.founder-image:hover img {
  transform: scale(1.04);
}

/* Image Label */

.founder-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 25px 28px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);

  color: #fff;
}

.founder-image-label span {
  display: block;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
}

.founder-image-label small {
  display: block;

  margin-top: 7px;

  font-size: 9px;
  letter-spacing: 2px;

  opacity: 0.75;
}

/* Content */

.founder-small-title {
  margin: 0 0 10px;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: var(--gold);
}

.founder-content h3 {
  margin: 0;

  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;

  color: var(--ink);
}

.founder-role {
  margin: 14px 0 28px;

  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #81776d;
}

.founder-description {
  max-width: 600px;

  margin: 0 0 18px;

  font-size: 14px;
  line-height: 1.9;

  color: #686158;
}

/* Work */

.founder-work {
  margin-top: 38px;

  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;

  padding: 22px 0;

  border-bottom: 1px solid var(--line);
}

.work-item > span {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold);
}

.work-item h4 {
  margin: 0 0 6px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: var(--ink);
}

.work-item p {
  margin: 0;

  font-size: 12px;
  line-height: 1.6;

  color: #777069;
}

/* Quote */

.founder-quote {
  display: flex;
  gap: 15px;

  margin-top: 35px;
  padding: 20px 0;
}

.founder-quote span {
  font-family: var(--serif);
  font-size: 50px;
  line-height: 0.6;

  color: var(--gold);
}

.founder-quote p {
  margin: 0;

  max-width: 420px;

  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;

  color: var(--brown);
}

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

@media (max-width: 900px) {
  .founder-section {
    padding: 90px 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-image {
    height: 520px;
  }
}

@media (max-width: 600px) {
  .founder-section {
    padding: 70px 0;
  }

  .founder-heading {
    margin-bottom: 40px;
  }

  .founder-content h3 {
    font-size: 42px;
  }

  .founder-image {
    height: 450px;
  }

  .founder-description {
    font-size: 13px;
  }

  .founder-quote p {
    font-size: 19px;
  }
}
/* =====================================================
   AYRA JOURNAL / BLOG
===================================================== */

.journal {
  position: relative;
  padding: 125px 0 130px;
  background: #efede8;
  color: #171717;
  overflow: hidden;
}

/* =====================================================
   HEADING
===================================================== */

.journal-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 75px;
}

.journal-heading .eyebrow {
  margin-bottom: 25px;
  color: #777;
}

.journal-heading h2 {
  margin: 0;
  font-size: clamp(55px, 6.5vw, 88px);
  line-height: 0.94;
  letter-spacing: -3px;
  font-weight: 400;
}

.journal-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #8d8173;
  font-weight: 400;
}

.journal-intro {
  display: flex;
  gap: 20px;
  width: 390px;
  margin-bottom: 7px;
}

.journal-intro > span {
  width: 35px;
  min-width: 35px;
  height: 1px;
  margin-top: 9px;
  background: #aaa;
}

.journal-intro p {
  margin: 0;
  color: #666 !important;
  background: transparent !important;
  font-size: 14px;
  line-height: 1.9;
}

/* =====================================================
   FEATURED ARTICLE
===================================================== */

.journal-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;

  background: #fff;

  margin-bottom: 65px;

  border: 1px solid #d8d4ce;
}

/* Image */

.journal-feature-image {
  position: relative;
  display: block;

  height: 540px;

  overflow: hidden;
}

.journal-feature-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.journal-feature:hover .journal-feature-image img {
  transform: scale(1.035);
}

.journal-image-tag {
  position: absolute;

  left: 25px;
  bottom: 25px;

  padding: 9px 13px;

  background: rgba(255, 255, 255, 0.92);

  color: #444;

  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

/* Featured Content */

.journal-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px;
}

.journal-meta {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 22px;

  color: #999;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.journal-feature-content h3 {
  margin: 0 0 25px;

  font-size: 37px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -1px;
}

.journal-feature-content h3 em,
.journal-card h3 em {
  font-family: Georgia, "Times New Roman", serif;
  color: #8d8173;
  font-weight: 400;
}

.journal-feature-content > p {
  margin: 0 0 32px;

  color: #707070 !important;
  background: transparent !important;

  font-size: 13px;
  line-height: 1.9;
}

/* =====================================================
   READ LINK
===================================================== */

.journal-read {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  width: fit-content;

  color: #171717;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;

  text-decoration: none;

  border-bottom: 1px solid #aaa;

  padding-bottom: 7px;

  transition: gap 0.35s ease;
}

.journal-read span {
  font-size: 16px;
  font-weight: 400;
}

.journal-read:hover {
  gap: 22px;
}

/* =====================================================
   BLOG GRID
===================================================== */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #d8d4ce;
  border-left: 1px solid #d8d4ce;
}

/* Card */

.journal-card {
  background: transparent;

  border-right: 1px solid #d8d4ce;
  border-bottom: 1px solid #d8d4ce;

  transition: background 0.4s ease;
}

.journal-card:hover {
  background: #fff;
}

/* Card Image */

.journal-card-image {
  display: block;

  height: 260px;

  overflow: hidden;

  border-bottom: 1px solid #d8d4ce;
}

.journal-card-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.045);
}

/* Card Content */

.journal-card-content {
  padding: 30px 28px 35px;
}

.journal-card-content .journal-meta {
  margin-bottom: 18px;
}

.journal-card h3 {
  margin: 0 0 17px;

  font-size: 25px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.journal-card p {
  min-height: 70px;

  margin: 0 0 25px;

  color: #777 !important;
  background: transparent !important;

  font-size: 12px;
  line-height: 1.8;
}

/* =====================================================
   BOTTOM
===================================================== */

.journal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 35px;
}

.journal-bottom p {
  margin: 0;

  color: #999;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
}

.journal-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: #222;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;

  text-decoration: none;

  transition: gap 0.3s ease;
}

.journal-all span {
  font-size: 16px;
}

.journal-all:hover {
  gap: 21px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .journal {
    padding: 100px 25px;
  }

  .journal-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .journal-intro {
    width: 100%;
    max-width: 600px;
  }

  .journal-feature {
    grid-template-columns: 1fr;
  }

  .journal-feature-image {
    height: 450px;
  }

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

  .journal-card:last-child {
    grid-column: span 2;
  }
}

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

@media (max-width: 600px) {
  .journal {
    padding: 80px 20px 90px;
  }

  .journal-heading {
    margin-bottom: 50px;
  }

  .journal-heading h2 {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .journal-intro {
    gap: 15px;
  }

  .journal-intro p {
    font-size: 13px;
  }

  /* Featured */

  .journal-feature {
    display: block;
    margin-bottom: 50px;
  }

  .journal-feature-image {
    height: 350px;
  }

  .journal-feature-content {
    padding: 35px 24px 40px;
  }

  .journal-feature-content h3 {
    font-size: 30px;
  }

  /* Cards */

  .journal-grid {
    display: block;

    width: 100%;

    border-top: 1px solid #d8d4ce;
    border-left: 1px solid #d8d4ce;
  }

  .journal-card {
    width: 100%;
  }

  .journal-card-image {
    height: 260px;
  }

  .journal-card-content {
    padding: 27px 22px 35px;
  }

  .journal-card h3 {
    font-size: 25px;
  }

  .journal-card p {
    min-height: unset;
  }

  /* Bottom */

  .journal-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
