/* ─── SHARED STYLES — Mobileria Goni ─── */
:root {
  --cream: #faf7f2;
  --beige: #e8dfd0;
  --beige-mid: #d4c5b0;
  --beige-dark: #b8a490;
  --sand: #c9b99a;
  --warm-white: #fffef9;
  --charcoal: #2c2820;
  --warm-gray: #6b6258;
  --accent: #a08060;
  --accent-light: #c4a882;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-logo:hover { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--charcoal);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--charcoal);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--beige);
  padding: 24px 6%;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(44,40,32,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--beige);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--charcoal); }
.mobile-nav .mobile-cta {
  margin-top: 16px;
  display: inline-block;
  padding: 12px 28px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: none;
}
.mobile-nav .mobile-cta:hover { background: var(--accent); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--charcoal);
  color: var(--warm-white);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid var(--beige-dark);
  background: transparent;
  color: var(--charcoal);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  font-family: 'Jost', sans-serif;
}
.btn-outline:hover { background: var(--beige); border-color: var(--sand); }

/* ─── SECTION COMMON ─── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 540px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--warm-white);
  border-top: 1px solid var(--beige);
  padding: 64px 8% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.footer-brand-text {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-icon {
  width: 34px; height: 34px;
  border: 1px solid var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--charcoal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--beige);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: var(--warm-gray); }
.footer-dardanex {
  font-size: 0.72rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
}
.footer-dardanex span { color: var(--accent); font-weight: 500; }

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}
.reveal-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* Stagger helper — set on parent, children animate one after another */
.stagger > * { transition-delay: 0s; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ─── RESPONSIVE FOOTER ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 6% 28px; }
}
