/* ============================================================
   SAFRAN & CO. — Global Stylesheet
   safranandco.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */

:root {
  --saffron:    #C9842A;
  --amber:      #6B3410;
  --cream:      #F5F0E8;
  --spice:      #3D1F0A;
  --silk:       #FAF7F2;
  --gold:       #E8C878;

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --text-w: 720px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

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

body {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--spice);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 400;
  line-height: 1.12;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container--narrow {
  max-width: var(--text-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

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

/* ✦ Section divider */
.star-divider {
  display: block;
  text-align: center;
  color: var(--saffron);
  font-size: 1rem;
  letter-spacing: 0.6em;
  padding: 0.25rem 0;
  opacity: 0.55;
}

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

.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--spice);
}

.btn--light {
  background: var(--cream);
  color: var(--amber);
}
.btn--light:hover {
  background: var(--gold);
  color: var(--spice);
}

.btn--ghost {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}
.btn--ghost:hover {
  background: var(--amber);
  color: var(--cream);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.55);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--amber);
  border-color: var(--cream);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--saffron);
  letter-spacing: 0.02em;
  transition: gap 0.2s ease, color 0.2s ease;
}
.link-arrow:hover {
  gap: 0.75rem;
  color: var(--amber);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Transparent state — over hero images */
.nav--hero {
  background: transparent;
}

/* Solid state — on scroll or non-hero pages */
.nav--solid {
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 132, 42, 0.35);
  box-shadow: 0 2px 16px rgba(61, 31, 10, 0.05);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav--hero .nav__logo    { color: var(--cream); }
.nav--solid .nav__logo   { color: var(--amber); }

.nav__logo-mark {
  font-style: normal;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.nav--hero .nav__logo-mark  { color: var(--gold); }
.nav--solid .nav__logo-mark { color: var(--saffron); }

/* Links */
.nav__links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: var(--font-b);
  font-size: 0.845rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  transition: width 0.25s ease;
}

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav--hero .nav__link         { color: rgba(245,240,232,0.88); }
.nav--hero .nav__link::after  { background: var(--gold); }
.nav--hero .nav__link:hover   { color: var(--cream); }

.nav--solid .nav__link        { color: var(--spice); }
.nav--solid .nav__link::after { background: var(--saffron); }
.nav--solid .nav__link:hover  { color: var(--amber); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav--hero  .nav__toggle span  { background: var(--cream); }
.nav--solid .nav__toggle span  { background: var(--amber); }

.nav__toggle--open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle--open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 2px solid var(--saffron);
  }

  .nav__links--open { max-height: 320px; }

  .nav__links li { border-top: 1px solid rgba(201,132,42,0.18); }

  .nav__link {
    display: block;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    color: var(--spice) !important;
  }

  .nav__link::after { display: none; }
}

/* ============================================================
   HERO — Full Screen (Homepage)
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--amber);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 52, 16, 0.42);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  max-width: 880px;
}

.hero__headline {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-family: var(--font-b);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--cream);
  opacity: 0.88;
  max-width: 540px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   IMAGE HERO — About Page
   ============================================================ */

.image-hero {
  position: relative;
  padding-top: var(--nav-h);
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--amber);
}

.image-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 31, 10, 0.48);
}

.image-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}

.image-hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ============================================================
   PAGE HERO — Collection Page
   ============================================================ */

.page-hero {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 5vw, 3rem) 5rem;
  text-align: center;
  background: var(--cream);
}

.page-hero__label {
  display: block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.25rem;
}

.page-hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: var(--amber);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.page-hero__sub {
  font-family: var(--font-b);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--spice);
  opacity: 0.75;
  max-width: 440px;
  margin: 0 auto;
  font-weight: 300;
}

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

.brand-statement {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--cream);
  text-align: center;
}

.brand-statement__quote {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--amber);
  font-weight: 300;
  line-height: 1.45;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.brand-statement__body {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--spice);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.82;
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   SECTION LABELS & TITLES (shared)
   ============================================================ */

.section-label {
  display: block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--amber);
  font-weight: 300;
  line-height: 1.25;
}

/* ============================================================
   COLLECTION PREVIEW SECTION (Homepage)
   ============================================================ */

.collection-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--silk);
}

.collection-section__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.collection-section__head .section-title {
  margin-top: 0.5rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Individual Card */
.card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 40px rgba(61, 31, 10, 0.1);
}

.card__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--amber);
  /* Replace with actual product photography */
}

.card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.card:hover .card__image-wrap img {
  transform: scale(1.04);
}

.card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__title {
  font-family: var(--font-h);
  font-size: 1.55rem;
  color: var(--amber);
  font-weight: 400;
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}

.card__desc {
  font-family: var(--font-b);
  font-size: 0.895rem;
  color: var(--spice);
  line-height: 1.75;
  opacity: 0.82;
  flex: 1;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 132, 42, 0.18);
}

.card__price {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: var(--saffron);
  font-weight: 500;
}

/* ============================================================
   SIGNATURE SECTION
   ============================================================ */

.signature-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--amber);
  text-align: center;
}

.signature-section__title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--cream);
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.sig-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 860px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 620px) {
  .sig-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.sig-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.sig-col__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  flex-shrink: 0;
}

.sig-col__text {
  font-family: var(--font-b);
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.82;
  line-height: 1.75;
  max-width: 220px;
  font-weight: 300;
}

.signature-section__closing {
  font-family: var(--font-h);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gold);
  opacity: 0.88;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============================================================
   PERSONALISATION SECTION
   ============================================================ */

.personalisation {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--cream);
  text-align: center;
}

.personalisation__title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--amber);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.personalisation__body {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--spice);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  opacity: 0.82;
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   COLLECTION PAGE — Full Product Sections
   ============================================================ */

.product-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem);
}

.product-section--cream { background: var(--cream); }
.product-section--silk  { background: var(--silk);  }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Reverse layout: image on the right */
.product-section--reverse .product-image {
  order: 2;
}
.product-section--reverse .product-content {
  order: 1;
}

.product-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--amber);
  /* Replace with actual product photography */
}

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

.product-content__label {
  display: block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.product-content__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--amber);
  font-weight: 300;
  margin-bottom: 0.6rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.product-content__tagline {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--saffron);
  margin-bottom: 1.75rem;
  font-weight: 300;
  line-height: 1.4;
}

.product-content__desc {
  font-family: var(--font-b);
  font-size: 0.975rem;
  color: var(--spice);
  line-height: 1.9;
  opacity: 0.82;
  margin-bottom: 2rem;
  font-weight: 300;
}

.product-content__price {
  font-family: var(--font-h);
  font-size: 1.6rem;
  color: var(--amber);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.product-content__price-note {
  font-family: var(--font-b);
  font-size: 0.8rem;
  color: var(--spice);
  opacity: 0.55;
  font-weight: 300;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-section--reverse .product-image,
  .product-section--reverse .product-content {
    order: 0;
  }

  .product-image {
    aspect-ratio: 3 / 2;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
}

.about-section--cream { background: var(--cream); }
.about-section--silk  { background: var(--silk);  }

.about-section__inner {
  max-width: var(--text-w);
  margin: 0 auto;
}

.about-section__label {
  display: block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.about-section__title {
  font-family: var(--font-h);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--amber);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-section__body {
  font-family: var(--font-b);
  font-size: 1.05rem;
  color: var(--spice);
  line-height: 1.9;
  opacity: 0.88;
  font-weight: 300;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: clamp(4rem, 9vw, 9rem) clamp(1.5rem, 5vw, 3rem);
}

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

.contact-section__inner {
  max-width: 660px;
  margin: 0 auto;
}

.contact-section__label {
  display: block;
  font-family: var(--font-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-section--cream .contact-section__label { color: var(--saffron); }
.contact-section--amber .contact-section__label { color: var(--gold); opacity: 0.75; }

.contact-section__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.contact-section--cream .contact-section__title { color: var(--amber); }
.contact-section--amber .contact-section__title { color: var(--cream); }

.contact-section__body {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.contact-section--cream .contact-section__body { color: var(--spice); opacity: 0.82; }
.contact-section--amber .contact-section__body { color: var(--cream); opacity: 0.78; }

.contact-email {
  display: inline-block;
  font-family: var(--font-h);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.contact-section--cream .contact-email { color: var(--saffron); }
.contact-section--amber .contact-email { color: var(--gold);    }
.contact-email:hover { opacity: 0.65; }

.contact-note {
  margin-top: 1.5rem;
  font-family: var(--font-b);
  font-size: 0.855rem;
  font-style: italic;
  line-height: 1.7;
}

.contact-section--cream .contact-note { color: var(--spice); opacity: 0.5; }
.contact-section--amber .contact-note { color: var(--cream); opacity: 0.5; }

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

.footer {
  background: var(--amber);
  color: var(--cream);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    text-align: center;
  }
}

.footer__logo {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-b);
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.55;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.25rem;
}

@media (max-width: 720px) {
  .footer__nav { align-items: center; }
}

.footer__nav a {
  font-family: var(--font-b);
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.68;
  text-decoration: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.02em;
}

.footer__nav a:hover { opacity: 1; }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

@media (max-width: 720px) {
  .footer__contact { align-items: center; }
}

.footer__email {
  font-family: var(--font-b);
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.68;
  text-decoration: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.01em;
}

.footer__email:hover { opacity: 1; }

.footer__social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

@media (max-width: 720px) { .footer__social { justify-content: center; } }

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(245,240,232,0.28);
  color: var(--cream);
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.footer__social-link:hover {
  opacity: 1;
  border-color: rgba(245,240,232,0.7);
}

.footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.12);
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-b);
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.42;
  letter-spacing: 0.06em;
}

/* ============================================================
   SCROLL FADE-IN ANIMATION
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }
}
