/* ==================================================
   SECTION 1 : WELCOME INTRO
   Calm Power • Quiet Luxury • Architectural Authority
================================================== */

/* ==================================================
   DARK TONAL LAYERING — LUXURY DEPTH
================================================== */

/* ==================================================
   THEME COLOR TOKENS (defined in :root below)
   (Use the variables to change theme quickly)
================================================== */

/* Changelog:
   - 2026-01-07: Applied 'Soft Editorial Luxury' theme.
   - Replaced hard-coded colors with CSS variables in :root.
   - Consolidated duplicated rules and added comments for maintainability.
*/

/* Hero & header remain deeper */
#hero,
#site-header,
#site-footer {
  background-color: var(--bg-deep);
}

#brand-presence,
#visual-teasers {
  background-color: var(--bg-section);
}

#soft-cta {
  background-color: var(--bg-soft-cta);
}


/* ==================================================
   TYPOGRAPHY SYSTEM
   International Luxury
================================================== */

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* CHARCOAL SHADOW THEME */
  --bg-deep: #121212;          /* hero / footer */
  --bg-main: #1a1a1a;          /* page base */
  --bg-section: #202020;       /* lifted sections */
  --bg-soft-cta: #262626;      /* CTA calm zone */

  --text-heading: rgba(255, 255, 255, 0.92);
  --text-primary: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-muted-weak: rgba(255, 255, 255, 0.38);

  --wordmark-color: rgba(255, 255, 255, 0.55);

  --header-glass: rgba(18, 18, 18, 0.65);
  --header-border: rgba(255, 255, 255, 0.06);

  --border-muted: rgba(255, 255, 255, 0.25);
  --border-hover: rgba(255, 255, 255, 0.6);

  --overlay-dark: rgba(0, 0, 0, 0.55);
  --neutral-dark: #0f0f0f;

  /* Muted architectural gold (VERY subtle) */
  --accent-gold: #9f8b5a;
}


body {
  background: var(--bg-main);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3 {
  font-family: var(--font-heading);
}

#welcome-intro {
  position: fixed;
  inset: 0;
  background: var(--bg-deep); 
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

/* Inner container */
.welcome-container {
  text-align: center;
  max-width: 640px;
  padding: 0 24px;
}

/* Logo placeholder */
.welcome-logo {
  margin-bottom: 28px;
}

/* When you add image later, use this class */
.welcome-logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Brand name */
.welcome-brand-name {
  font-size: 20px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 14px;
}

/* Address */
.welcome-address {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
} 

/* Hidden state (used later by JS) */
#welcome-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* ==================================================
   HEADER / NAVIGATION
   Calm • Minimal • International
================================================== */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;

  
  background: var(--header-glass);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

} 

/* Header layout */
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 8vw;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo placeholder */
.header-logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* Brand wordmark beside logo */
/* Brand wordmark – quiet luxury */
.brand-wordmark {
  margin-left: 12px;
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 400;

  color: var(--wordmark-color);

  position: relative;
  top: 1px; /* optical alignment with logo */

  white-space: nowrap;
}  

@media (min-width: 1025px) {
  .brand-wordmark {
    opacity: 0.6;
  }
}


/* Navigation */
.primary-nav ul {
  display: flex;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
}


.nav-link {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--text-muted);
  transition: color 0.3s ease;
}  

.nav-link:hover,
.nav-link.is-active {
  color: rgba(0, 0, 0, 0.9);
} 

/* WhatsApp CTA */
.header-cta .whatsapp-link {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;

  padding: 10px 18px;
  border: 1px solid var(--border-muted);
  color: var(--text-primary);

  transition: all 0.35s ease;
} 

.header-cta .whatsapp-link:hover {
  border-color: var(--border-hover);
  color: var(--text-heading);
} 

/* Responsive */
@media (max-width: 1024px) {
  .primary-nav {
    display: none; /* Mobile menu later */
  }
}

/* ==================================================
   MOBILE NAV — LUXURY OVERLAY
================================================== */

#mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(var(--bg-deep-rgb), 0.96);
  z-index: 9500;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  text-align: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--text-heading);
  transition: color 0.3s ease;
} 

.mobile-link:hover {
  color: var(--accent-gold); /* soft gold */
} 

/* ==================================================
   NAV TOGGLE (MOBILE ICON)
================================================== */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}


.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-heading);
  margin: 6px 0;
  transition: all 0.4s ease;
}

/* Show toggle on mobile */
@media (max-width: 1024px) {
  .primary-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none; /* optional, keeps header clean */
  }
}




/* ==================================================
   SECTION 2 : HERO
   Architectural Authority • Calm Power
================================================== */

#hero {
  position: relative;
  min-height: calc(100vh - 96px);
  background: var(--bg-deep);
  overflow: hidden;
} 


/* Background visual layer */
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--neutral-dark); /* fallback */
  /* Later you’ll add background-image or video */
}

/* Dark overlay for luxury contrast */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}  

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;

  display: flex;
  align-items: center;
  padding-left: 8vw;
  padding-right: 8vw;
}

/* Statement line */
.hero-line {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
  max-width: 820px;
  letter-spacing: 0.02em;
}  

/* Hero luxury accent */
.hero-line::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 28px;

  background: linear-gradient(
    to right,
    transparent,
    var(--accent-gold),
    transparent
  );
}





/* ==================================================
   SECTION 3 : BRAND PRESENCE
   Quiet Luxury • Calm Power
================================================== */
/* ==================================================
   BRAND PRESENCE — SUBTLE TEXTURE LAYER
================================================== */

#brand-presence {
  position: relative;
  background-color: var(--bg-section);
  background-size: cover;
  background-position: center;
} 


.brand-container {
  max-width: 960px;
}

/* Small eyebrow text */
.brand-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Main brand statement */
.brand-heading {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}  

/* Supporting description */
.brand-description {
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
  color: var(--text-muted);
}




/* ==================================================
   OUR PHILOSOPHY
   Authority • Calm • Editorial
================================================== */

#our-philosophy {
  background-color: var(--bg-section);
  padding: 160px 8vw;
}

.philosophy-container {
  max-width: 960px;
}

.philosophy-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.philosophy-heading {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 42px;
  max-width: 820px;
}  

.philosophy-principles {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.philosophy-principles li {
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  position: relative;
  padding-left: 22px;
}  

.philosophy-principles li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-gold); /* soft gold accent */
} 

/* ==================================================
   WHAT WE CREATE
   Catalogue Bridge • Editorial
================================================== */

#what-we-create {
  background-color: var(--bg-section);
  padding: 160px 8vw;
}

.create-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  align-items: center;
}

/* Text side */
.create-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.create-heading {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 36px;
  max-width: 520px;
}  

.create-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.create-list li {
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  position: relative;
  padding-left: 22px;
}  

.create-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
} 

/* Visual side */
.create-visual::after {
  background: linear-gradient(
    to right,
    rgba(var(--bg-deep-rgb), 0.85),
    rgba(var(--bg-deep-rgb), 0.25),
    transparent
  );
}

/* Responsive */
@media (max-width: 900px) {
  .create-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .create-visual {
    height: 420px;
  }
}


/* ==================================================
   SECTION 4 : VISUAL TEASERS
   Preview of Products & Designs
================================================== */

#visual-teasers {
  background: var(--bg-section);
  padding: 120px 8vw 160px;
} 

.teasers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6vw;
}

/* Teaser card */
.teaser-card {
  position: relative;
}

/* Image placeholder */
.teaser-media {
  width: 100%;
  height: 420px;
  background: var(--neutral-dark); /* placeholder fallback */
  margin-bottom: 26px;
  overflow: hidden;
} 

/* Content */
.teaser-content {
  max-width: 420px;
}

/* Eyebrow */
.teaser-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 14px;
}

/* Title */
.teaser-title {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-heading);
  margin-bottom: 12px;
}

/* Subtitle */
.teaser-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .teasers-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .teaser-media {
    height: 360px;
  }
}

/* ==================================================
   THE EXPERIENCE
   Calm • Emotional • Editorial
================================================== */

#the-experience {
  background-color: var(--bg-section);
  padding: 180px 8vw;
  text-align: center;
}

.experience-container {
  max-width: 860px;
  margin: 0 auto;
}

.experience-eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.experience-heading {
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-heading);
}  

/* .create-visual consolidated above */

/* Image control */
.create-image {
  width: 110%;
  height: 100%;
  object-fit: cover;

  /* IMPORTANT: control composition */
  object-position: 30% center;

  transform: translateX(-5%);
}

.create-visual::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(22, 22, 26, 0.85),
    rgba(22, 22, 26, 0.25),
    transparent
  );
}




/* ==================================================
   SECTION 5 : SOFT CTA
   Quiet Luxury • Invitation
================================================== */

#soft-cta {
  background: var(--bg-soft-cta);
  padding: 160px 8vw 180px;
  text-align: center;
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
}

/* Heading */
.cta-heading {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 24px;
}

/* Supporting text */
.cta-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 48px;
}  

/* WhatsApp button (quiet luxury) */
.cta-whatsapp {
  display: inline-block;
  padding: 16px 42px;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;

  color: var(--text-primary);
  border: 1px solid var(--border-muted);
  transition: all 0.4s ease;
}

.cta-whatsapp:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
} 


/* ==================================================
   GLOBAL LAYOUT POLISH
================================================== */

#site-main {
  padding-top: 96px; /* matches header height */
}

 

body {
  background: var(--bg-main);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body.intro-active {
  overflow: hidden;
}


/* ==================================================
   IMAGE HANDLING (GLOBAL)
================================================== */

.hero-media img,
.teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ==================================================
   FOOTER
   Brand Closure • Quiet Authority
================================================== */

#site-footer {
  background: var(--bg-deep);
  padding: 120px 8vw 80px;
  text-align: center;
} 

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-brand img {
  max-width: 200px;
  margin-bottom: 36px;
}

.footer-address {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted-weak);
} 




/* ==================================================
   BRAND LOCKUP — LOGO + NAME (LUXURY)
================================================== */

/* header logo / brand-wordmark consolidated earlier near top */ 

/* ==================================================
   EDITORIAL PAUSE — LUXURY BREATH
================================================== */

#editorial-pause {
  height: 140px;
  background: linear-gradient(
    to bottom,
    var(--bg-section),
    var(--bg-soft-cta)
  );
} 

/* ==================================================
   MICRO MOTION — FADE UP
================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Teaser calm hover */
.teaser-media img {
  transition: transform 1.2s ease;
}

.teaser-card:hover .teaser-media img {
  transform: scale(1.03);
}

.cta-whatsapp:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
} 








section {
  scroll-margin-top: 120px;
}

h2 {
  letter-spacing: 0.01em;
}


.footer-address,
.footer-copy {
  color: var(--text-muted);
}

 

/* Hero overlay */
.hero-media::after {
  background: var(--overlay-dark);
} 

/* Gold accent (soft editorial) */
.hero-line::after,
.create-list li::before,
.philosophy-principles li::before,
.mobile-link:hover,
.cta-whatsapp:hover {
  color: var(--accent-gold);
  background-color: var(--accent-gold);
} 

/* Editorial pause */
#editorial-pause {
  background: linear-gradient(
    to bottom,
    var(--bg-section),
    var(--bg-soft-cta)
  );
} 
