/* ========================= */
/* RESET & BASE STYLES       */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  overflow-x: hidden;
  font-family:'Didot', 'Bodoni Moda', 'Playfair Display', serif;
  color: #111;
  background: #f8f3ef;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family:'Playfair Display', serif;
}

/* ========================= */
/* Fixed Navbar - Clean Style */
/* ========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #f8f3ef;
}

/* Logo */
.navbar .logo {
  height: 55px;
  transition: all 0.3s ease;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 150px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  color: #9F7A3F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c0a880;
  opacity: 0.8;
}

/* Hamburger */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #7A5C2E;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================= */
/* Responsive */

/* Tablet */
@media (max-width: 1024px) {
  .nav-links {
    gap: 120px;
  }
  .navbar {
    padding: 0 20px;
  }
  .navbar .logo {
    height: 50px;
  }
}

/* ========================= */
/* Mobile Menu (Luxury White + Gold Accents) */
@media (max-width: 768px) {

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Mobile nav-links container */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;             /* below navbar */
    left: 0;
    width: 100%;
    max-height: 0;         /* hidden initially */
    overflow: hidden;
    opacity: 0;
    transform: translateY(-15px);

    /* Luxury white background */
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.05);

    gap: 0;
    padding: 0 10px;
    z-index: 999;

    transition: max-height 0.5s cubic-bezier(0.25,1,0.5,1),
                opacity 0.35s ease,
                transform 0.35s cubic-bezier(0.25,1,0.5,1);
  }

  /* Each link – center and full width */
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 18px 0;
    margin: 0;

    text-align: center;
    color: #7A5C2E;          /* dark gold text */
    letter-spacing: 0.25em;
    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid rgba(0,0,0,0.05);

    opacity: 0;
    transform: translateY(-10px);
    transition: 
      transform 0.35s ease,
      opacity 0.35s ease,
      color 0.35s ease,
      border-color 0.35s ease;
  }

  /* Hover effect – light gold glow */
  .nav-links a:hover {
    color: #C0A880;          /* light gold */
    border-bottom-color: #C0A880;
    opacity: 1;
  }

  /* Show menu container when active */
  .nav-links.active {
    max-height: 400px;       /* enough for 4-5 links */
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered drop animation for links */
  .nav-links.active a {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  .nav-links.active a:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.10s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.20s; }
  .nav-links.active a:nth-child(5) { transition-delay: 0.25s; }

  /* Hamburger X animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hamburger span {
    width: 20px;
    height: 2.5px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/* ========================= */ /* HERO SECTION */ /* ========================= */ 
.hero {
   width: 100%;
   height: 134vh;

   background-image: url('../images/home-hero.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;

   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;

   color: #fff;
   position: relative;
   margin-top: 160px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}


/* HERO TEXT */
.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
  margin-top: 180px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 30px;
}

/* Divider */
.hero p::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #fff, transparent);
  transform: scaleX(0);              /* hidden initially */
  transform-origin: center;
  transition: transform 0.8s ease;
  opacity: 0.6;
}

/* When visible */
.hero p::after {
  transform: scaleX(1);              /* animate open */
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to hero text */
.hero h1,
.hero p {
  opacity: 0; /* start invisible */
  animation: fadeIn 2s ease forwards;
}

/* Optional: delay paragraph so it appears after heading */
.hero p {
  animation-delay: 1s;
}

/* Luxury entrance keyframes */
@keyframes luxuryReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    letter-spacing: 2px;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    letter-spacing: normal;
  }
}

/* Apply to hero text */
.hero h1 {
  opacity: 0;
  animation: luxuryReveal 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero p {
  opacity: 0;
  animation: luxuryReveal 2.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.6s;
}

.hero button {
  padding: 12px 30px;
  background: #111;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.hero button:hover {
  background: #333;
}

/* ========================= */
/* SECTIONS                  */
/* ========================= */
section {
  padding: 80px 50px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* =========================
   SHOP FOOTER – CLEAN CENTERED
========================= */

.shop-footer {
  padding: 80px 20px 70px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  color: rgba(255,255,255,0.6); /* soft grey for copyright */
  font-size: 0.85rem;
}

/* Copyright text */
.shop-footer p {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Links container */
.shop-footer .footer-links {
  margin-top: 35px; /* more breathing room */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* perfect spacing between links */
}

/* Links */
.shop-footer .footer-links a {
  color: #b89b5e; /* muted luxury gold */
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.shop-footer .footer-links a:hover {
  color: #ffffff;
}

/* =========================
   TABLETS
========================= */

@media (max-width: 768px) {

  .shop-footer {
    padding: 60px 20px;
  }

  .shop-footer .footer-links {
    gap: 25px;
  }
}

/* =========================
   FORCE HORIZONTAL – ALL SMALL SCREENS
========================= */

@media (max-width: 768px) {

  .shop-footer .footer-links {
    display: flex !important;
    flex-direction: row !important;  /* always horizontal */
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap; /* allows wrapping instead of stacking */
  }

  .shop-footer .footer-links a {
    display: inline-block !important;
    white-space: nowrap;
  }
}


/* Extra small phones */
@media (max-width: 480px) {

  .shop-footer .footer-links {
    gap: 14px;
  }

  .shop-footer .footer-links a {
    font-size: 0.75rem; /* slightly smaller for tight screens */
  }
}

/* ========================= */
/* FOOTER                    */
/* ========================= */
footer {
  padding: 40px;
  background: #111;
  color: #fff;
  text-align: center;
}


/* FOLLOW US - LUXURY ICON STYLE */
.follow-us {
    margin-top: 30px;
    text-align: center;
}

.follow-us h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
}


.follow-us a i {
    font-size: 25px; /* icon size */
}

.follow-us a {
    display: inline-block;
    margin: 0 15px;
    color: #bfa56f;              /* gold icons */
    text-decoration: none;
    position: relative;           /* needed for hover effect */
    transition: all 0.3s ease;
}


.follow-us a i {
    font-size: 20px !important;
    display: inline-block;
    transition: transform 0.3s ease;
}

.follow-us a:hover i,
.follow-us a:active i {
    transform: scale(1.2);  /* icon slightly grows when hovered/clicked */
}
/*

} Hero section for About page - full screen, full image */
.hero {
    width: 100%;                  /* full viewport width */
	max-height: (100vh - 200px);
    background-size: contain;      /* shows full image without cropping */
    background-position: center;   /* centers the image */
    background-repeat: no-repeat;  /* prevents repeating */
	display: block;
}

/* About page specific image */
.about-hero {
    background-image: url('../images/about-hero.jpg'); /* replace with your image path */
}
/* Grid */
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; margin-top:40px; }
.grid img { width:100%; height:auto; transition: transform 0.3s; }
.grid img:hover { transform:scale(1.05); }
.grid button { margin-top:10px; padding:10px 20px; background:#2e4b3a; color:#fff; border:none; cursor:pointer; }
/* Forms */
form { max-width:600px; margin:0 auto; display:flex; flex-direction:column; gap:15px; }
input, select, textarea { padding:10px; border:1px solid #ccc; border-radius:5px; font-size:16px; }
form button { padding:12px; background:#bfa56f; color:#fff; border:none; cursor:pointer; font-weight:bold; 
}

.lux-footer {
  padding-top: 10px;
  margin-top: 0;
  background: #111;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 30px 40px 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer-newsletter {
  max-width: 420px;
}

.footer-newsletter h2 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 13px;
  opacity: 0.8;
}

.newsletter-form {
   margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 0px;
}


/* FORCE SAME HEIGHT FOR EMAIL AND BIRTHDAY INPUTS */
.footer-form-group input {
  height: 44px;            /* sets same height */
  padding: 0 14px;         /* horizontal padding */
  box-sizing: border-box;  /* ensures total height includes padding */
}

.newsletter-form button {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 0px;
}

.newsletter-form button:hover {
  background: #fff;
  color: #000;
}

.footer-disclaimer {
  font-size: 10px;
  margin-top: 20px;
  opacity: 0.6;
}

.footer-disclaimer a {
  color: #fff;
  text-decoration: underline;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 14px;
}

.social-icons a {
  border: 1px solid #fff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-column h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 12px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
}

.footer-legal a {
  margin-right: 20px;
}

.back-to-top {
  margin-left: 20px;
}
		/* FORM ROW */
.footer-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

/* EMAIL WIDE, BIRTHDAY SMALL */
.email-group {
  flex: 2.2;
}

.birthday-group {
  flex: 1;
}

/* WHITE INPUT STYLE */
.form-group input {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  font-size: 14px;
  border-radius: 0;
}

/* PLACEHOLDER COLOR */
.form-group input::placeholder {
  color: #777;
}

/* DATE INPUT ICON DARK */
input[type="date"] {
  color-scheme: light;
}

/* FULL WIDTH BUTTON */
.signup-btn {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  letter-spacing: 2px;
  font-size: 13px;
  cursor: pointer;
}

.signup-btn:hover {
  background: #fff;
  color: #000;
}

/* LABEL STYLE */
.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.footer-links {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.footer-column {
  text-align: left;
}
/* FORCE ALL FOOTER TEXT LEFT */
.lux-footer,
.lux-footer * {
  text-align: left !important;
}
.signup-btn {
  text-align: center !important;
}
.footer-column a:hover,
.footer-legal a:hover {
  color: #bfa56f; /* ← change this */
}
.home-collection {
  padding: 120px 2%; /* smaller left/right padding, keeps tiny margin */
  background-color: #f7f4ef;
  text-align: center;
  position: relative; /* needed for absolute button positioning */
}

.home-collection h2 {
  font-family: 'Didot', 'Bodoni Moda', 'Playfair Display', serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 1px;
  margin-bottom: 35px;
  margin-top: -80px;
}

/* Divider */
.home-collection h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: scaleX(0);              /* hidden initially */
  transform-origin: center;
  transition: transform 0.8s ease;
  opacity: 0.6;
}

/* When visible */
.home-collection h2::after {
  transform: scaleX(1);              /* animate open */
}

/* Wrapper to contain grid and button */
.home-collection-wrapper {
  position: relative;
  max-width: 1200px; /* controls overall content width */
  margin: 0 auto;
}

/* Grid */
.home-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;        /* small spacing between images */
  width: 100%;
}

/* Image containers */
.home-collection-item {
  height: 380px;    /* controls image height */
  overflow: hidden;
}

.home-collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.home-collection-item:hover img {
  transform: scale(1.05);
}

/* Centered overlapping button */
.home-collection-btn {
  position: absolute;
  left: 50%;
  bottom: 60px;   /* adjust so it sits slightly over the grid */
  transform: translateX(-50%);
  background-color: #f7f4ef;
  padding: 14px 36px;
  border: none;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 10;
  transition: all 0.3s ease;
}

.home-collection-btn:hover {
  background-color: #333;
  color: #d4af37;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .collection-grid {
    grid-template-columns: 1fr; /* stack images on mobile */
    gap: 15px;
  }

  .home-collection-btn {
    bottom: -10px; /* adjust for smaller screens */
  }
}
.philosophy {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

.philosophy h2 {
  font-family: 'Didot', 'Bodoni Moda', 'Playfair Display', serif;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 10px;
}

/* Divider */
.philosophy p::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: scaleX(0);              /* hidden initially */
  transform-origin: center;
  transition: transform 0.8s ease;
  opacity: 0.6;
}

/* When visible */
.philosophy p::after {
  transform: scaleX(1);              /* animate open */
}

.philosophy p {
  font-family: 'Playfair Display', serif;serif;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 20px;
}
.transformation-images {
  padding: 0 0% 140px;
  background-color: #ffffff;
  
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 7px;
  margin: 0;
  padding: 0;
  width: 100%
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-grid img:hover {
  transform: scale(1.03);
}
.craftsmanship {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 525;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: -90px;
  color: #333;
  position: relative;
}

/* Divider */
.craftsmanship::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: scaleX(0);              /* hidden initially */
  transform-origin: center;
  transition: transform 0.8s ease;
  opacity: 0.6;
}

/* When visible */
.craftsmanship.visible::after {
  transform: scaleX(1);              /* animate open */
}

.about-page {
  background: #0e0e0e;
  color: #ffffff;
  font-family: 'Didot', 'Bodoni Moda', 'Playfair Display', serif;
}

/* HERO */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.hero-text {
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 420px;
  opacity: 0.85;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FEATURE STRIP */
.about-feature {
  background: #c33a1f;
  padding: 4rem;
  text-align: center;
}

.about-feature h2 {
  font-size: 2.5rem;
  letter-spacing: 4px;
  font-weight: 300;
}

/* STORY */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 6rem;
  gap: 4rem;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid #ffffff;
}

.story-text h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.story-text p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

/* GALLERY */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 4rem 5%;
}

.about-gallery .gallery-item {
  flex: 1 1 calc(25% - 20px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.about-gallery .gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-gallery img {
  width: 100%;
  height: auto; /* fixes image stretching */
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #f5f1ec;
  color: #1a1a1a;
}

/* HERO */
.about-hero {
  text-align: center;
  padding: 140px 20px 100px;
}

.about-hero h1 {
  font-size: 56px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 20px;
  margin-bottom: 10px;
}

.subtag {
  font-size: 18px;
  opacity: 0.7;
}

.divider {
  width: 120px;
  height: 1px;
  background: #aaa;
  margin: 40px auto 0;
}

/* VISION */
.vision-section {
  padding: 120px 8%;
}

.vision-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.vision-image img {
  width: 100%;
  max-width: 500px;
}

.vision-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.vision-text h3 {
  margin-top: 40px;
  font-size: 24px;
}

.vision-text p {
  line-height: 1.8;
}

.mini {
  opacity: 0.8;
}

/* SCRIPT STYLE */
.script {
  font-family: 'Cormorant Garamond', italic;
  font-style: italic;
}

/* IDENTITY */
.identity-section {
  text-align: center;
  padding: 140px 20px;
}

.identity-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.identity-section p {
  font-size: 18px;
  line-height: 2;
}

/* ATELIER */
.atelier-section {
  padding: 140px 8%;
  text-align: center;
}

.atelier-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.atelier-grid {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.atelier-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.motion-section {
  margin-top: -10px;
}

/* Divider */
.motion-section p::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: scaleX(0);              /* hidden initially */
  transform-origin: center;
  transition: transform 0.8s ease;
  opacity: 0.6;
}

/* When visible */
.motion-section p::after {
  transform: scaleX(1);              /* animate open */
}

.motion-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;  /* table area */
  height: 900px;      /* adjust height to fit bigger images */
  margin: auto;
  perspective: 1000px; /* optional for subtle 3D feel */
}

.motion-gallery img {
  position: absolute;
  width: 220px;       /* bigger images */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  cursor: grab;       /* optional for casual vibe */
}

.motion-gallery img.visible {
  opacity: 1;
}
.motion-gallery img:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 100;
    transition: transform 0.3s ease;
}

/* Blueprint Section */
.blueprint-section {
  background-color: #f4f1eb; /* soft drafting paper tone */
  padding: 100px 8%;
  position: relative;
}

/* Optional Faint Grid Overlay */
.blueprint-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Header */
.blueprint-header {
  text-align: center;
  margin-bottom: 80px;
}

.blueprint-header h2 {
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blueprint-header p {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

/* Divider */
.blueprint-header p::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: scaleX(0);              /* hidden initially */
  transform-origin: center;
  transition: transform 0.8s ease;
  opacity: 0.6;
}

/* When visible */
.blueprint-header p::after {
  transform: scaleX(1);              /* animate open */
}

/* Blueprint Wall Grid */
.blueprint-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1; /* grid above overlay */
}

/* Large feature image spans 2 columns */
.blueprint-item.large {
  grid-column: span 2;
}

/* Images */
.blueprint-item img {
  width: 100%;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Hover Zoom */
.blueprint-item img:hover {
  transform: scale(1.03);
}

/* Captions */
.blueprint-caption {
  margin-top: 15px;
}

.blueprint-caption h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blueprint-caption p {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  .blueprint-wall {
    grid-template-columns: 1fr;
  }

  .blueprint-item.large {
    grid-column: span 1;
  }
}

.about-page h1, .about-page h2, .about-page h3 {
  opacity: 0;
  transform: translateY(30px);  /* start slightly lower */
  transition: all 0.8s ease;
}

.about-page h1.visible-text,
.about-page h2.visible-text,
.about-page h3.visible-text {
  opacity: 1;
  transform: translateY(0);     /* slide into place */
}

/* Section */
.pinboard-section {
  background-color: #f4f1eb;
  padding: 80px 5%;
  position: relative;
  overflow: hidden; /* prevents spillover */
}

.pinboard-header {
  text-align: center;
  margin-bottom: 60px;
}

.pinboard-header h2 {
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pinboard-header p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Divider */
.pinboard-header p::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: scaleX(0);              /* hidden initially */
  transform-origin: center;
  transition: transform 0.8s ease;
  opacity: 0.6;
}

/* When visible */
.pinboard-header p::after {
  transform: scaleX(1);              /* animate open */
}

/* Pinboard Wall */
.pinboard-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
}

/* Polaroid Item */
.pinboard-item {
  width: 250px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  position: relative;
  opacity: 0;
  transition: all 0.6s ease, transform 0.4s ease;
}

/* Tape effect */
.tape {
  position: absolute;
  width: 40px;
  height: 12px;
  background: rgba(255, 220, 180, 0.8);
  z-index: 10;
}

.tape-top-left { top: -6px; left: 10px; transform: rotate(-5deg); }
.tape-top-right { top: -6px; right: 10px; transform: rotate(5deg); }
.tape-bottom-left { bottom: -6px; left: 10px; transform: rotate(2deg); }

/* Image inside Polaroid */
.pinboard-item img {
  width: 100%;
  display: block;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

/* Hover zoom */
.pinboard-item:hover img {
  transform: scale(1.05);
}

/* Slanted / Scattered positions */
.step1 { transform: rotate(-6deg) translate(-10px, 0px); z-index: 10; }
.step2 { transform: rotate(4deg) translate(5px, 15px); z-index: 9; }
.step3 { transform: rotate(-3deg) translate(-5px, -10px); z-index: 8; }
.step4 { transform: rotate(5deg) translate(10px, 5px); z-index: 7; }
.step5 { transform: rotate(-7deg) translate(-15px, 10px); z-index: 6; }
.step6 { transform: rotate(6deg) translate(5px, -5px); z-index: 5; }
.step7 { transform: rotate(-4deg) translate(-10px, 15px); z-index: 4; }
.step8 { transform: rotate(3deg) translate(10px, -10px); z-index: 3; }
.step9 { transform: rotate(-5deg) translate(-5px, 5px); z-index: 2; }
.step10 { transform: rotate(7deg) translate(5px, 0px); z-index: 1; }

/* Fade-in directions */
.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.fade-top { transform: translateY(-50px); }

/* Visible state */
.pinboard-item.visible {
  opacity: 1;
}

/* Pinboard Wall — fabric background + free layout */
.pinboard-wall {
  position: relative;
  width: 100%;
  height: 1200px;
  margin: 0 auto;
  background-image: url("images/fabric.jpg"); /* optional fabric texture */
  background-size: cover;
  background-position: center;
}

/* Real polaroid frame */
.pinboard-item {
  position: absolute;
  width: 240px;
  background: #ffffff;
  padding: 12px 12px 55px 12px; /* thicker bottom */
  box-shadow: 0 20px 35px rgba(0,0,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
}

/* Photo */
.pinboard-item img {
  width: 100%;
  display: block;
}

/* Hover lift effect */
.pinboard-item:hover {
  transform: scale(1.1) rotate(var(--rotate));
  z-index: 999;
}
.step1 {
  top: 60px;
  left: 0%;
  transform: rotate(-10deg);
}

.step2 {
  top: 10px;
  left: 52%;
  transform: rotate(1deg);
}

.step3 {
  top: 260px;
  left: 25%;
  transform: rotate(1deg);
}

.step4 {
  top: 60px;
  left: 75%;
  transform: rotate(16deg);
}

.step5 {
  top: 420px;
  left: 3%;
  transform: rotate(8deg);
}

.step6 {
  top: 350px;
  left: 48%;
  transform: rotate(1deg);
}

.step7 {
  top: 580px;
  left: 30%;
  transform: rotate(12deg);
}

.step8 {
  top: 600px;
  left: 80%;
  transform: rotate(10deg);
}

.step9 {
  top: 820px;
  left: -2%;
  transform: rotate(-13deg);
}

.step10 {
  top: 700px;
  left: 45%;
  transform: rotate(-13deg);
}

.step11 {
  top: -5px;
  left: 25%;
  transform: rotate(-10deg);
}

.step12 {
  top: 380px;
  left: 75%;
  transform: rotate(-9deg);
}

.step13 {
  top: 820px;
  left: 20%;
  transform: rotate(1deg);
}

.step14 {
  top: 780px;
  left: 70%;
  transform: rotate(-13deg);
}

/* Visible animation */
.pinboard-item.visible {
  opacity: 1;
}

.sunrise-hero h1 {
  font-size: 72px; /* adjust if needed */
  letter-spacing: 6px;
  opacity: 0;

  animation: aboutHeroSunrise 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes aboutHeroSunrise {
  0% {
    opacity: 0;
    transform: translateY(140px);
    letter-spacing: 18px;
    filter: blur(10px);
  }

  60% {
    opacity: 0.6;
    transform: translateY(30px);
    letter-spacing: 8px;
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 6px;
    filter: blur(0);
  }
}
.about-hero .tagline,
.about-hero .subtag,
.about-hero .divider {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 1.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  
/* ===== PRESENCE SECTION ===== */

.presence-section {
    position: relative;   /* IMPORTANT */
    width: 100%;
    height: 100vh;
    background-image: url('../images/about-top.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presence-overlay {
    position: absolute;  /* makes it sit on top */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    display: flex;
    align-items: center;
    justify-content: flex-start;
	padding-left: 1%;
}

.presence-content {
  position: relative;
  z-index: 2; /* ensures text is above overlay */
  max-width: 700px;
}

.presence-left {
  animation: fadeUp 1.4s ease forwards;
  opacity: 0;
   margin-top: 150px;
}

.label {
  font-size: 0.75rem;
  letter-spacing: 6px;
  color: #b89b5e; /* light gold accent */
  display: block;
  margin-bottom: 25px;
}

.presence-left h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.6em;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffffff !important
}

.presence-left .tagline {
  color: #b89b5e;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.presence-left .subtext {
  color: #f5f3ef;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

/* FADE-UP ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .presence-left {
    margin: 0 auto;
    text-align: center;
  }
  .presence-section {
    padding: 120px 6%;
  }
}

@media (max-width: 480px) {
  .presence-left h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    letter-spacing: 0.3em;
  }
}

/* ===== Collection Page Styles ===== */
.collection-intro {
  text-align: center;
  margin: 60px 20px;
  font-size: 1.2rem;
  font-weight: 300;
  color: #555;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px 60px 20px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  margin: 20px;
  transition: transform 0.5s ease, z-index 0.3s ease;
}
.grid-item.tilt-left { transform: rotate(-2deg); }
.grid-item.tilt-right { transform: rotate(2deg); }
.grid-item.overlap { margin-top: -40px; }

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.grid-item:hover img { transform: scale(1.03); }

.overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.grid-item:hover .overlay { opacity: 1; }

.cta-button {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 6px 14px;
  cursor: pointer;
  margin-top: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.cta-button:hover { background: #fff; color: #111; }

.craft-showcase {
  text-align: center;
  padding: 60px 20px;
}
.craft-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.craft-grid img {
  width: 250px;
  max-width: 90%;
}

.modal {
  display: none;
  pointer-events: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0,0,0,0.85);
}
.modal.show {
  display: block;
  pointer-events: auto;
}
.modal-content {
  background: #fff;
  margin: 80px auto;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border-radius: 8px;
  text-align: center;
}
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}
.modal-content input,
.modal-content textarea { width: 100%; padding: 10px; margin: 10px 0; font-size: 1rem; }
.modal-content button { padding: 10px 20px; border: 1px solid #111; background: #111; color: #fff; cursor: pointer; font-size: 1rem; margin-top: 10px; }

.brand-closing {
  text-align: center;
  padding: 60px 20px;
  font-style: italic;
  color: #555;
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
}

/* SCOPED TO COUTURE PAGE */
.couture-page {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0e0e0e;
  color: #f5f3ef;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
  cursor: none;
}

@keyframes fadeIn { to { opacity: 1; } }

/* CINEMATIC INTRO LOADER */
.intro-loader {
  position: fixed;
  inset: 0;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeOutLoader 1s ease 3s forwards;
}
.intro-line {
  width: 0;
  height: 1px;
  background: #b89b5e;
  margin-bottom: 30px;
  animation: drawLine 1.5s ease forwards;
}
.intro-logo {
  font-family: 'Playfair Display', serif;
  color: #f5f3ef;
  letter-spacing: 6px;
  opacity: 0;
  animation: fadeInLogo 1.5s ease 1s forwards;
}
@keyframes drawLine { to { width: 120px; } }
@keyframes fadeInLogo { to { opacity: 1; } }
@keyframes fadeOutLoader { to { opacity: 0; visibility: hidden; } }

/* CUSTOM CURSOR */
.custom-cursor {
  width: 18px;
  height: 18px;
  border: 1px solid #b89b5e;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}

/* HERO */
.couture-hero {
  height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  color: #9F7A3F;
  font-size: 3rem;
  letter-spacing: 4px;
}
.hero-overlay h2 {
  font-size: 1.2rem;
  margin: 10px 0;
  letter-spacing: 2px;
}
.hero-overlay p {
  font-size: 1rem;
  opacity: 0.8;
}

/* GOLD DIVIDER */
.gold-divider {
  width: 60px;
  height: 1px;
  background: #b89b5e;
  margin: 80px auto;
  opacity: 0.6;
}

/* COLLECTION GRID */
.collection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding: 100px 10%;
}
.black-section { background: #0e0e0e; color: #f5f3ef; }
.ivory-section { background: #f5f3ef; color: #0e0e0e; }

/* PRODUCT CARD */
.product h3 { margin-top: 20px; font-size: 1rem; letter-spacing: 2px; }
.price { display: block; margin-top: 5px; font-size: 0.9rem; opacity: 0.8; }

/* MULTI-ANGLE VIEW */
.multi-view .product-image { position: relative; overflow: hidden; }
.multi-view .product-image img { width: 100%; display: none; transition: opacity 0.5s ease; }
.multi-view .product-image img.active { display: block; }
.multi-view .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  color: #f5f3ef;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; letter-spacing: 3px;
  opacity: 0; transition: 0.4s ease;
}
.multi-view .product-image:hover .overlay { opacity: 1; }
.multi-view .view-buttons { margin-top: 15px; display: flex; gap: 15px; justify-content: center; }
.black-section .multi-view .view-buttons button {
  padding: 8px 15px; border: 1px solid #b89b5e;
  background: transparent; color: #f5f3ef; cursor: pointer; transition: 0.3s ease;
}

.ivory-section .multi-view .view-buttons button {
  padding: 8px 15px; border: 1px solid #b89b5e;
  background: transparent; color: color: #0e0e0e; cursor: pointer; transition: 0.3s ease;
}

.black-section .multi-view .view-buttons button:hover {
  background: #b89b5e;
  color: #0e0e0e;
}

.ivory-section .multi-view .view-buttons button:hover {
  background: #b89b5e;
  color: #f5f3ef;
}

/* STATEMENT PIECE */
.statement-piece { position: relative; }
.statement-piece img { width: 100%; height: 90vh; object-fit: cover; }
.statement-text { position: absolute; bottom: 40px; left: 60px; }
.statement-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; }

/* ULTRA LUXURY SECTION */
.custom-couture {
  background: #0e0e0e;
  color: #f5f3ef;
  padding: 200px 10%;
  text-align: center;
}

/* SMALL PRESTIGE LABEL */
.prestige-line {
  font-size: 0.7rem;
  letter-spacing: 4px;
  opacity: 0.6;
}

/* MAIN TITLE */
.custom-couture h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  letter-spacing: 3px;
  margin: 25px 0;
}

/* GOLD LINE (THINNER = MORE LUXURY) */
.gold-divider {
  width: 40px;
  height: 1px;
  background: #b89b5e;
  margin: 50px auto;
  opacity: 0.7;
}

/* TEXT */
.custom-couture p {
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.8;
  opacity: 0.8;
  font-size: 0.95rem;
}

/* BUTTON — MORE REFINED */
.luxury-button {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(184, 155, 94, 0.8);
  color: #f5f3ef;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 0.75rem;
  transition: all 0.35s ease;
}

/* SUBTLE HOVER (NO GLOW, NO SHADOW) */
.luxury-button:hover {
  background: #b89b5e;
  color: #0e0e0e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .custom-couture {
    padding: 140px 6%;
  }

  .custom-couture h2 {
    font-size: 2rem;
  }
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .collection { grid-template-columns: 1fr; padding: 60px 8%; }
  .statement-piece img { height: 70vh; }
  .statement-text { left: 30px; bottom: 30px; }
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay h2 { font-size: 1rem; }
}

/* ARROW BUTTONS */
.multi-view .product-image .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #f5f3ef;
  font-size: 1.5rem;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 5;
}

.multi-view .product-image .arrow:hover {
  background: #b89b5e;
  color: #0e0e0e;
}

.multi-view .product-image .prev { left: 10px; }
.multi-view .product-image .next { right: 10px; }

/* Make swipe mobile-friendly */
@media (max-width: 900px) {
  .multi-view .product-image .arrow { font-size: 1.2rem; padding: 6px 10px; }
}

/* LUXURY ARROW HOVER ANIMATION */
.multi-view .product-image .arrow {
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.multi-view .product-image .arrow:hover {
  transform: translateY(-50%) scale(1.2);
  background: #b89b5e;
  color: #0e0e0e;
  box-shadow: 0 0 12px rgba(184, 155, 94, 0.6);
}

/* Optional subtle pulsing effect when idle */
.multi-view .product-image .arrow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(184, 155, 94, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.multi-view .product-image .arrow:hover::after {
  opacity: 1;
}

/* PRODUCT IMAGE CONTAINER */
.product-image {
  width: 100%;              /* fills grid column */
  max-width: 500px;         /* luxury fixed max width */
  aspect-ratio: 961 / 1227; /* keeps 961x1227 ratio */
  overflow: hidden;
  position: relative;
  margin: 0 auto;           /* centers image in column */
}

/* ALL IMAGES INSIDE CONTAINER */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* crops, keeps proportions */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.statement-piece .product-image {
  width: 100%;
  max-width: none;
  height: 500px;
  aspect-ratio: 961 / 1227;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.statement-piece .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.statement-piece .product-image img.active {
  display: block;
}

.statement-piece .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #f5f3ef;
  font-size: 1.5rem;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 5;
}

.statement-piece .arrow.prev { left: 10px; }
.statement-piece .arrow.next { right: 10px; }

.hero-statement-piece {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px;
}

.hero-statement-piece .hero-image {
  width: 100%;
  aspect-ratio: 961 / 1100;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

/* HERO IMAGES */
.hero-statement-piece .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-statement-piece .hero-image img.active {
  opacity: 1;
  transform: scale(1);
}

.hero-statement-piece .hero-image:hover img.active {
  transform: scale(1.03); /* subtle zoom */
}

/* GRADIENT OVERLAY */
.hero-statement-piece .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.25));
  pointer-events: none;
  z-index: 1;
}

/* ARROWS */
.hero-statement-piece .hero-image .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #f5f3ef;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 5;
}

.hero-statement-piece .hero-image .arrow.prev { left: 10px; }
.hero-statement-piece .hero-image .arrow.next { right: 10px; }

/* HERO TEXT */
.hero-statement-piece .hero-text {
  position: absolute;
  top: 20%;        /* adjust vertical position */
  left: 50%;
  transform: translateX(-50%);
  color: #f5f3ef;
  text-align: center;
  max-width: 80%;
  z-index: 10;     /* above images */
}

.hero-statement-piece .hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.hero-statement-piece .hero-text p {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.5s forwards;
}

/* TEXT ANIMATION */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-statement-piece .hero-text h1 { font-size: 2rem; }
  .hero-statement-piece .hero-text p { font-size: 1rem; }
  .hero-statement-piece .hero-image { aspect-ratio: 961 / 1100; }
}

.hero-statement-piece .hero-image {
  width: 100%;
  max-width: 1200px;
  max-height: 700px;       /* sets the tallest height */
  height: auto;            /* scales naturally on smaller screens */
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.success-message {
  margin-top: 15px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  background: #f4f4f4;
  color: #000;
  border-left: 3px solid #000;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ========================= */
/* MOBILE PROFESSIONAL FIX   */
/* ========================= */

@media (max-width: 768px) {

  /* Reduce global section spacing */
  section {
    padding: 40px 20px;
  }

  /* Fix hero spacing */
  .hero {
    margin-top: 100px;
    padding-top: 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 20px;
    margin-top: 55px;
	margin-bottom: 10px;
  }

  .hero p {
    font-size: 8px;
    margin-top: 0px;
  }

  /* Home collection spacing */
  .home-collection {
    padding: 60px 20px;
  }

  /* Make grids single column */
  .home-collection-grid,
  .image-grid,
  .collection,
  .about-story,
  .vision-container {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }

  /* Footer fix */
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

}

@media (max-width: 768px) {

  .hero {
	width: 100%;
	min-height: 40vh;
    background-size: contain;       /* removes white sides */
    background-position: center;
    background-repeat: no-repeat;

    margin-top: 60px;             /* adjust if needed */
  }

}


@media (max-width: 768px) {

 .home-collection h2 {
    font-size: 25px;   /* smaller for mobile */
	padding: 0px 0;
	margin-bottom: 20px;
	margin-top: -30px;
  }

}

@media (max-width: 768px) {

  .home-collection-btn {
  top: 362px;   /* adjust so it sits slightly over the grid */
  bottom: auto;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 20px 40px;
  white-space: nowrap;
  }

}


@media (max-width: 768px) {

  .footer-top,
.footer-links,
.footer-column,
.footer-newsletter {
    width: 100%;
    display: block;
    padding: 0;           
    border-bottom: 1px solid #555555;  /* changed to grey */
    box-sizing: border-box;
}

  /* Headings – full width, arrow far right */
  .footer-column h4,
  .footer-newsletter h2 {
    margin: 0;
    padding: 12px 0px;       /* you can adjust horizontal padding slightly for luxury feel */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  /* Arrow */
  .footer-column h4::after,
  .footer-newsletter h2::after {
    content: "›";
    margin-left: auto;
    font-size: 18px;
    color: #ffffff;
    transition: transform 0.3s ease;
  }

  /* Links & form collapsed by default */
  .footer-column a,
  .footer-newsletter form,
  .footer-newsletter .footer-disclaimer,
  .footer-newsletter .follow-us {
    max-width: 100%;       /* full width like newsletter form */
    margin: 0;
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
  }

  /* Active/open state – links visible */
  .footer-column.active a,
  .footer-newsletter.active form,
  .footer-newsletter.active .footer-disclaimer,
  .footer-newsletter.active .follow-us {
    max-height: 600px;    /* enough to show content */
    opacity: 1;
    margin-top: 10px;
    padding: 0;
  }

  /* Rotate arrow when section is open */
  .footer-column.active h4::after,
  .footer-newsletter.active h2::after {
    transform: rotate(90deg);
  }

}

@media (max-width: 768px) {

  /* Footer Bottom Container */
  .footer-bottom {
    display: flex;
    flex-direction: column;       /* stack vertically */
    align-items: center;          /* center everything */
    text-align: center;
    padding: 18px 12px;           /* comfortable padding */
    background-color: #1a1a1a;    /* dark luxury background */
    border-top: 1px solid #555555; /* subtle divider */
    box-sizing: border-box;
  }

  /* Legal Links */
  .footer-legal {
    display: flex;
    flex-wrap: wrap;              /* wrap long links */
    justify-content: center;      /* centered horizontally */
    gap: 12px;                    /* space between links */
    margin-bottom: 12px;          /* space before copyright */
  }

  .footer-legal a {
    color: #555555;               /* darker grey matching arrows/dividers */
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  .footer-legal a:hover {
    color: #ffffff;               /* highlight on tap/hover */
  }

  /* Copyright Text */
  .footer-copy {
    font-size: 13px;
    color: #555555;
    letter-spacing: 0.5px;
  }

  /* Back-to-top link */
  .footer-copy a.back-to-top {
    color: #555555;
    text-decoration: none;
    margin-left: 8px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  /* Hover or tap effect */
  .footer-copy a.back-to-top:hover {
    color: #ffffff;
    transform: translateY(-2px);  /* subtle lift on hover */
  }

  /* Optional: subtle divider above links for luxury feel */
  .footer-bottom::before {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    background-color: #555555;
    margin: 0 auto 12px auto;
    opacity: 0.5;
  }

}

@media (max-width: 768px) {

  /* Philosophy Section */
  .philosophy {
    padding: 40px 20px;       /* more breathing room */
    text-align: center;
    background-color: #ffffff;
  }

  .philosophy h2 {
    font-family: 'Didot', 'Bodoni Moda', 'Playfair Display', serif;
    font-weight: 400;
    font-size: 30px;          /* luxury size for mobile */
    margin-bottom: 16px;
    color: #222;               /* rich dark text */
    line-height: 1.2;
    letter-spacing: 0.8px;
  }

  .philosophy p {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    color: #444;               /* slightly lighter than heading for elegance */
    margin-bottom: 30px;
    padding: 0 12px;
  }

@media (max-width: 768px) {

  /* Make the grid scroll horizontally */
  .transformation-images .image-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px;
    padding: 0 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Each image becomes a swipeable item */
  .transformation-images .image-grid img {
    flex: 0 0 80%;       /* each image takes 80% of viewport */
    height: auto;        /* maintain aspect ratio */
    scroll-snap-align: center;
    object-fit: cover;
    border-radius: 6px;
  }

  /* Hide scrollbar for clean look */
  .transformation-images .image-grid::-webkit-scrollbar {
    display: none;
  }

}

@media (max-width: 768px) {

  /* ===== PRESENCE SECTION ===== */
  

  .presence-overlay {
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }

  .presence-text {
    text-align: center;
    max-width: 100%;
    padding: 0;
  }

  .presence-text h1 {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .presence-text .tagline {
    font-size: 16px;
  }

  .presence-text .subtext {
    font-size: 15px;
  }

  /* Fix underline position on mobile */
  .presence-text .subtext::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 120px;
  }

  @keyframes lineSlide {
    0% { transform: translateX(-50%) scaleX(0); opacity: 0; }
    100% { transform: translateX(-50%) scaleX(1); opacity: 1; }
  }

  /* ===== VISION SECTION ===== */
  .vision-container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
  }

  .vision-image img {
    width: 100%;
    height: auto;
  }

  .vision-text h2 {
    font-size: 22px;
  }

  .vision-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ===== IDENTITY SECTION ===== */
  .identity-section {
    padding: 60px 20px;
    text-align: center;
  }

  .identity-section h2 {
    font-size: 22px;
  }

  .identity-section p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* ===== BLUEPRINT SECTION ===== */
  .blueprint-wall {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .blueprint-item.large {
    grid-column: span 1;
  }


  /* ===== ABOUT HERO ===== */
  .about-hero {
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-image img {
    width: 100%;
  }

  /* ===== ABOUT STORY ===== */
  .about-story {
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
  }

  .story-text h3 {
    font-size: 22px;
  }

  .story-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* ===== ABOUT GALLERY ===== */
  .about-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px;
  }

}

/* Mobile Responsive */
@media (max-width: 768px) {
  .motion-gallery {
    position: static;       /* remove absolute stacking */
    height: auto;           /* allow height to adjust */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;              /* spacing between images */
    perspective: none;      /* optional, remove 3D effect */
  }

  .motion-gallery img {
    position: static;
    width: 45%;             /* smaller images on mobile */
    max-width: 200px;
    height: auto;
    opacity: 1;             /* always visible for mobile */
    transform: none;        /* remove hover transform */
    cursor: default;
    transition: transform 0.3s ease, opacity 0.5s ease;
  }

  .motion-gallery img:hover {
    transform: none;        /* disable hover effects */
    z-index: auto;
  }
}

@media (max-width: 768px) {
  .motion-gallery {
    perspective: 600px; /* gives depth for tilt */
  }

  .motion-gallery img {
    width: 45%;
    max-width: 200px;
    margin: 8px;
    height: auto;
    transform: translateY(0) rotate(0deg);
    animation: float 4s ease-in-out infinite alternate;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  @keyframes float {
    0%   { transform: translateY(0px) rotate(-2deg); }
    50%  { transform: translateY(-6px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(-2deg); }
  }

  .motion-gallery img:hover {
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 50;
  }
}

@media (max-width: 768px) {
  .motion-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
    grid-auto-rows: auto;
    gap: 12px;
    height: auto;
    padding: 16px 0;
    perspective: 600px; /* for subtle 3D floating */
  }

  .motion-gallery img {
    width: 100%;           /* fill each grid cell */
    height: auto;
    border-radius: 8px;
    animation: float 4s ease-in-out infinite alternate;
    transform: translateY(0) rotate(0deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: grab;
  }

  /* Slight staggered vertical offsets for “fun” layout */
  .motion-gallery img:nth-child(odd) {
    transform: translateY(0px);
  }
  .motion-gallery img:nth-child(even) {
    transform: translateY(20px);
  }

  .motion-gallery img:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 50;
  }

  @keyframes float {
    0%   { transform: translateY(0px) rotate(-2deg); }
    50%  { transform: translateY(-6px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(-2deg); }
  }
}

/* ========================= */
/* PINBOARD → MOBILE SLIDER  */
/* ========================= */

@media (max-width: 768px) {

  .pinboard-wall {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-left: 6%;
    scroll-snap-type: x mandatory;
  }

  .pinboard-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }

  /* Hide scrollbar (clean luxury feel) */
  .pinboard-wall::-webkit-scrollbar {
    display: none;
  }

  .pinboard-header {
    padding: 0 6%;
  }

}

/* ========================= */
/* PINBOARD → MOBILE SLIDER */
/* ========================= */

@media (max-width: 768px) {

  /* Remove fixed canvas layout */
  .pinboard-wall {
    position: relative !important;
    height: auto !important;
    background: none !important;

    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;

    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding: 20px;
  }

  /* Disable absolute positioning */
  .pinboard-item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;

    flex: 0 0 75%;
    scroll-snap-align: center;

    opacity: 1 !important;
  }

  /* Hide scrollbar (clean luxury look) */
  .pinboard-wall::-webkit-scrollbar {
    display: none;
  }

}

/* ========================= */
/* ABOUT GALLERY → MOBILE SLIDER */
/* ========================= */
@media (max-width: 768px) {
  .about-gallery {
    display: flex;                  /* horizontal layout */
    flex-wrap: nowrap;              /* no wrapping */
    overflow-x: auto;               /* enable horizontal scroll */
    scroll-snap-type: x mandatory;  /* snap each image */
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-left: 10px;
    padding-right: 10px;
    scroll-behavior: smooth;        /* smooth scrolling */
  }

  .about-gallery .gallery-item {
    flex: 0 0 80%;                  /* each slide takes 80% of viewport */
    max-width: 80%;
    scroll-snap-align: start;       /* snap at start of slide */
  }

  .about-gallery .gallery-item img {
    width: 100%;                    /* image fills container */
    height: auto;
    display: block;
  }

  /* Hide scrollbar for a clean look */
  .about-gallery::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .hero {
	margin-bottom: 10px;
    min-height: 100vh;                 /* full screen, not 135vh */
    background-size: cover;            /* fill screen properly */
    background-position: center top;   /* better mobile framing */
    margin-top: 50px;                 /* reduce big desktop offset */
    padding-top: 120px;                /* simpler mobile spacing */
  }

  .hero h1 {
    font-size: 36px;                   /* scale down headline */
    margin-top: 100px;
    margin-bottom: 15px;
    padding: 0 20px;                   /* prevent edge overflow */
  }

  .hero p {
    font-size: 16px;                   /* readable mobile size */
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 25px;
  }

}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* soft dark overlay */
}

.hero h1,
.hero p {
  position: relative;
  z-index: 2;
}
}

.shop {
  padding: 120px 5%;
  background: #f8f6f2; /* softer than beige */
  display: flex;
  justify-content: center;
}

.shop-container {
  width: 100%;
  max-width: 720px;
}

/* Title */
.atelier-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

/* Thin divider */
.atelier-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #222;
  margin: 20px auto 0;
  opacity: 0.4;
}

/* Form Layout */
.atelier-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Desktop: Name & Email side-by-side */
.row {
  display: flex;
  gap: 40px;
}

.row input {
  flex: 1;
}

/* Inputs */
.atelier-form input,
.atelier-form select,
.atelier-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfcfcf;
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.atelier-form input:focus,
.atelier-form select:focus,
.atelier-form textarea:focus {
  border-bottom: 1px solid #111;
}

/* Remove default select arrow styling for minimalism */
.atelier-form select {
  appearance: none;
  background: transparent;
}

/* Button */
.atelier-btn {
  align-self: center;
  margin-top: 30px;
  padding: 12px 40px;
  border: 1px solid #111;
  background: transparent;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.atelier-btn:hover {
  background: #111;
  color: #fff;
}

.contact {
  padding: 140px 5%;
  background: #f8f6f2;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 720px;
}

/* Title */
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.contact-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #222;
  margin: 20px auto 0;
  opacity: 0.4;
}

/* Form */
.atelier-contact-form {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Desktop layout */
.row {
  display: flex;
  gap: 50px;
}

.row input {
  flex: 1;
}

/* Inputs */
.atelier-contact-form input,
.atelier-contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfcfcf;
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.atelier-contact-form input:focus,
.atelier-contact-form textarea:focus {
  border-bottom: 1px solid #111;
}

/* Button */
.atelier-btn {
  align-self: center;
  margin-top: 30px;
  padding: 12px 45px;
  border: 1px solid #111;
  background: transparent;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}

.atelier-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 768px) {

  .row {
    flex-direction: column;
    gap: 35px;
  }

  .contact {
    padding: 100px 6%;
  }

  .contact-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {

  .row {
    flex-direction: column;
    gap: 30px;
  }

  .atelier-title {
    font-size: 28px;
  }

}

/* ========================= */
/* TABLET RESPONSIVE         */
/* ========================= */
@media (max-width: 1024px) {

  section {
    padding: 60px 30px;
  }

  .collection {
    grid-template-columns: 1fr;
  }

  .vision-container,
  .about-story {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

@media (max-width: 1024px) {

  /* ===== hero home-hero ===== */
  .hero home-hero {
    height: 95vh;
    margin-top: 0;
    background-position: center;
  }

  .hero home-hero {
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }

  .hero home-hero {
    text-align: center;
    max-width: 100%;
    padding: 0;
  }



  













