/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
  --c-bg-dark: #0B0D11;
  --c-bg-dark-2: #12151B;
  --c-bg-light: #F7F5F2;
  --c-bg-light-2: #EFECE7;
  --c-bg-brands: #F0EDE8;
  --c-text-light: #E8E4DF;
  --c-text-light-muted: #9A968F;
  --c-text-dark: #1A1A1A;
  --c-text-dark-muted: #5C5853;
  --c-accent: #C8A46E;
  --c-accent-hover: #D4B47E;
  --c-accent-subtle: rgba(200,164,110,0.12);
  --c-border-light: rgba(200,164,110,0.15);
  --c-border-dark: rgba(255,255,255,0.08);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--c-text-dark);
  background: var(--c-bg-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ============================================
   UTILITIES
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(11, 13, 17, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
}

.nav.nav--solid {
  background: rgba(11, 13, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__logo span {
  color: var(--c-accent);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--c-text-light-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--c-text-light);
}

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(200,164,110,0.08), transparent),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(100,120,180,0.06), transparent),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(200,164,110,0.04), transparent);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

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

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--c-text-light);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s var(--ease-out) 0.3s forwards;
}

.hero__headline em {
  font-style: italic;
  color: var(--c-accent);
}

.hero__tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text-light-muted);
  max-width: 640px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s var(--ease-out) 0.6s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.4rem;
  background: transparent;
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s var(--ease-out) 0.9s forwards;
}

.hero__cta:hover {
  background: var(--c-accent);
  color: var(--c-bg-dark);
}

.hero__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.hero__cta:hover svg {
  transform: translateX(4px);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.5s forwards;
}

.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-light-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   PAGE HEADER (inner pages)
============================================ */
.page-header {
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--c-bg-dark);
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(200,164,110,0.08), transparent),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(100,120,180,0.05), transparent);
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-text-light);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.page-header__title em {
  font-style: italic;
  color: var(--c-accent);
}

.page-header__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text-light-muted);
  max-width: 600px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}

/* ============================================
   ABOUT
============================================ */
.about {
  background: var(--c-bg-light);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.about__blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.about__block {
  max-width: 720px;
}

.about__block p {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.85;
  color: var(--c-text-dark-muted);
}

.about__block p strong {
  color: var(--c-text-dark);
  font-weight: 500;
}

.about__closing {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--c-text-dark);
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 600px;
}

/* ============================================
   VALUES
============================================ */
.values {
  background: var(--c-bg-light-2);
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.values__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 3rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: clamp(4rem, 6vw, 5rem);
}

.value-card {
  padding: 2.2rem;
  background: var(--c-bg-light);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.value-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.4rem;
  color: var(--c-accent);
}

.value-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 0.8rem;
}

.value-card__desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--c-text-dark-muted);
}

.values__manifesto {
  position: relative;
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-left: 3px solid var(--c-accent);
  max-width: 700px;
}

.values__manifesto p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-text-dark);
}

/* ============================================
   BRANDS
============================================ */
.brands {
  background: var(--c-bg-brands);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.brand-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 3px;
  padding: clamp(2rem, 3vw, 2.8rem);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.brand-card--iybs::before {
  background: linear-gradient(to right, #C8A46E, #E8C98A);
}

.brand-card--sf::before {
  background: linear-gradient(to right, #2A2A2A, #555);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}

.brand-card__location {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-card__location svg {
  width: 14px;
  height: 14px;
}

.brand-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.brand-card__desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--c-text-dark-muted);
}

.brands__expansion {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px dashed rgba(0,0,0,0.12);
  border-radius: 3px;
  background: rgba(255,255,255,0.4);
}

.brands__expansion h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 0.8rem;
}

.brands__expansion p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--c-text-dark-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  background: var(--c-bg-light);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 680px;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.contact-channel {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-channel:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-channel__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin-bottom: 0.5rem;
}

.contact-channel__desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--c-text-dark-muted);
}

.contact__cta-box {
  background: var(--c-bg-dark);
  border-radius: 4px;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 680px;
  position: relative;
  overflow: hidden;
}

.contact__cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,164,110,0.1), transparent);
}

.contact__cta-box-inner {
  position: relative;
  z-index: 2;
}

.contact__cta-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.contact__cta-text {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.75;
  color: var(--c-text-light-muted);
  margin-bottom: 1.5rem;
}

.contact__cta-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--c-text-light);
  transition: color 0.3s ease;
}

.contact__cta-email:hover {
  color: var(--c-accent);
}

.contact__cta-email svg {
  width: 22px;
  height: 22px;
  color: var(--c-accent);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--c-bg-dark-2);
  padding: 3rem 0;
  border-top: 1px solid var(--c-border-dark);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__logo span {
  color: var(--c-accent);
}

.footer__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__nav a {
  font-size: 0.8rem;
  color: var(--c-text-light-muted);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--c-text-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border-dark);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--c-text-light-muted);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--c-text-light);
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--c-text-light-muted);
}

/* ============================================
   LEGAL PAGES
============================================ */
.legal {
  background: var(--c-bg-light);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.legal__content {
  max-width: 720px;
}

.legal__content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin: 2.5rem 0 1rem;
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text-dark);
  margin: 2rem 0 0.8rem;
}

.legal__content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--c-text-dark-muted);
  margin-bottom: 1rem;
}

.legal__content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.legal__content ul li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--c-text-dark-muted);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.legal__content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-accent);
}

.legal__content a {
  color: var(--c-accent);
  transition: color 0.3s ease;
}

.legal__content a:hover {
  color: var(--c-text-dark);
}

.legal__updated {
  font-size: 0.82rem;
  color: var(--c-text-light-muted);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

/* ============================================
   MOBILE
============================================ */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 13, 17, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    font-size: 1.1rem;
    color: var(--c-text-light);
  }

  .nav__toggle {
    display: flex;
    z-index: 10;
  }

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

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

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2.4rem;
  }

  .hero__cta {
    padding: 0.9rem 1.8rem;
    font-size: 0.8rem;
  }

  .value-card {
    padding: 1.6rem;
  }

  .brand-card {
    padding: 1.6rem;
  }

  .page-header__title {
    font-size: 2rem;
  }
}
