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

:root {
  --black: #111010;
  --off-white: #edf5f3;
  --warm-mid: #E8E2D8;
  --accent: #C4A882;
  --accent-dark: #8C7355;
  --text-main: #1A1917;
  --text-muted: #6B6560;
  --text-light: #9A948C;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5%;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: #edf5f3;
  backdrop-filter: blur(16px);
  padding: 1.2rem 5%;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--off-white); text-decoration: none;
  transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--text-main); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.3s;
  position: relative;
}
nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--off-white); }
nav.scrolled .nav-links a:hover { color: var(--text-main); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 1rem); left: 50%;
  transform: translateX(-50%);
  background: var(--off-white); border: 1px solid var(--warm-mid);
  border-radius: 0.5rem; padding: 0.8rem 0;
  min-width: 200px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 1.4rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--text-muted) !important;
}
.nav-dropdown-menu a:hover { color: var(--text-main) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--off-white); border-radius: 2px; transition: 0.3s; }
nav.scrolled .hamburger span { background: var(--text-main); }

/* ── HERO SLIDER ── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(17,16,16,0.62) 0%, rgba(17,16,16,0.25) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8%;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.4rem;
  opacity: 0; animation: heroFadeUp 1s 0.4s ease forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.12;
  color: #fff; letter-spacing: -0.01em; max-width: 700px;
  opacity: 0; animation: heroFadeUp 1s 0.6s ease forwards;
}
.hero-sub {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.75); max-width: 520px; margin-top: 1.6rem;
  opacity: 0; animation: heroFadeUp 1s 0.8s ease forwards;
}
.hero-cta {
  margin-top: 2.4rem;
  opacity: 0; animation: heroFadeUp 1s 1s ease forwards;
}
.btn-outline-white {
  display: inline-block; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff; font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border-radius: 0;
  transition: background 0.3s, border-color 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.slide-dots {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 3;
}
.dot {
  width: 28px; height: 2px; background: rgba(255,255,255,0.35);
  cursor: pointer; transition: background 0.3s, width 0.3s;
  border-radius: 1px;
}
.dot.active { background: #fff; width: 48px; }

/* ── INTRO ── */
.intro {
  padding: 8rem 10%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.intro-img {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 0;
  position: relative;
}
.intro-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.intro-img:hover img { transform: scale(1.04); }
.intro-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #C9BFB0 0%, #8C7355 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.intro-content {}
.label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 1.2rem; display: block;
}
.intro-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
.intro-content p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-muted);
  margin-bottom: 1.2rem; font-weight: 300;
}
.divider { width: 40px; height: 1px; background: var(--accent); margin: 2rem 0; }
.btn-text {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--text-main);
  transition: gap 0.3s;
}
.btn-text:hover { gap: 1.1rem; }
.btn-text::after { content: '→'; }

/* ── EXPERIENCE SPLIT ── */
.experience { background: var(--text-main); }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.exp-panel {
  padding-top: 7rem; padding-bottom: 7rem;
  padding-left: 8%; padding-right: 8%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.exp-panel::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12; transition: opacity 0.4s;
}
.exp-panel:hover::before { opacity: 0.2; }
.exp-panel.left { border-right: 1px solid rgba(255,255,255,0.08); }
.exp-panel .label { color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; }
.exp-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300; color: #fff; margin-bottom: 2.5rem;
  line-height: 1.3;
}
.exp-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.exp-item {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.4rem 0;
  cursor: default;
  transition: padding 0.3s;
}
.exp-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.exp-item:hover { padding-left: 0.5rem; }
.exp-item-title {
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: #fff; margin-bottom: 0.5rem;
}
.exp-item-desc {
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(255,255,255,0.5); font-weight: 300;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s;
  opacity: 0;
}
.exp-item:hover .exp-item-desc { max-height: 80px; opacity: 1; }
.exp-panel.right .exp-item-title { color: #fff; }

/* ── MOVEMENT ── */
.movement {
  position: relative; overflow: hidden;
  min-height: 60vh; display: flex; align-items: center;
}
.movement-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2A2420 0%, #3D3028 50%, #1A1917 100%);
}
.movement-img {
  position: absolute; inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/6487097337497e658cf5ec99/cff3bb0c-c504-4d06-b0f3-376064767492/11+%281%29.jpg');
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.movement-content {
  position: relative; z-index: 1;
  padding: 6rem 10%; max-width: 700px;
}
.movement-content .label { color: var(--accent); }
.movement-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: #fff;
  line-height: 1.15; margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.movement-content p {
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(255,255,255,0.6); margin-bottom: 2.5rem;
  font-weight: 300; max-width: 520px;
}
.btn-accent {
  display: inline-block; text-decoration: none;
  background: var(--accent); color: var(--black);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1rem 2.4rem;
  transition: background 0.3s, transform 0.3s;
}
.btn-accent:hover { background: #D4B88F; transform: translateY(-2px); }

/* ── STEP INSIDE / SERVICES ── */
.services { padding: 8rem 5%; background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 5rem; }
.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; letter-spacing: -0.02em;
}
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--warm-mid);
}
.service-panel {
  background: var(--off-white);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}
.service-panel:nth-child(2) { direction: rtl; }
.service-panel:nth-child(2) > * { direction: ltr; }
.service-img {
  overflow: hidden;
  background: var(--warm-mid);
  position: relative;
}
.service-img-placeholder {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
}
.service-panel:hover .service-img-placeholder { transform: scale(1.06); }
.service-text {
  padding: 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.service-label {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 1rem;
}
.service-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300; margin-bottom: 1rem; line-height: 1.3;
}
.service-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  color: var(--text-muted); line-height: 1.7;
  margin-bottom: 1.5rem; border-left: 2px solid var(--accent);
  padding-left: 1rem;
}
.service-text p {
  font-size: 0.88rem; line-height: 1.8;
  color: var(--text-muted); font-weight: 300; margin-bottom: 2rem;
}
.service-text .btn-text { color: var(--text-main); }

/* ── SCIENCE BAR ── */
.science-bar {
  background: var(--text-main); padding: 5rem 10%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.science-img-placeholder {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background-image: url('https://images.squarespace-cdn.com/content/v1/6487097337497e658cf5ec99/df6c2213-b176-4032-91de-39976c72ae34/38.jpg');
  background-size: cover; background-position: center;
}
.science-content .label { color: rgba(255,255,255,0.4); }
.science-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300; color: #fff; margin-bottom: 1.2rem; line-height: 1.3;
}
.science-content p {
  font-size: 0.9rem; line-height: 1.85;
  color: rgba(255,255,255,0.5); font-weight: 300;
}
.science-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.tag {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 8rem 5%; background: #eef3ed; overflow: hidden; }
.testi-header { text-align: center; margin-bottom: 4rem; }
.testi-header .label { display: inline-block; }
.testi-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; letter-spacing: -0.01em;
}
.testi-track-wrap { overflow: hidden; position: relative; }
.testi-track {
  display: flex; gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testi-card {
  flex: 0 0 calc(50% - 1rem);
  background: var(--off-white); padding: 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  line-height: 1.75; color: var(--text-main);
  margin-bottom: 2rem; flex: 1;
}
.testi-text::before { content: '"'; font-size: 3rem; line-height: 0; vertical-align: -0.6em; color: var(--accent); margin-right: 0.2rem; }
.testi-author { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.testi-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.testi-btn {
  width: 44px; height: 44px; border: 1px solid var(--accent-dark);
  background: transparent; cursor: pointer; color: var(--text-main);
  font-size: 1rem; transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--accent-dark); color: #fff; }

/* ── CONTACT ── */
.contact-section { position: relative; overflow: hidden; }
.contact-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end; padding: 5rem 10%;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/6487097337497e658cf5ec99/645a67c5-adcc-490c-919e-305a10348bb1/banner-contact.jpg');
  background-size: cover; background-position: center;
}
.contact-hero-overlay { position: absolute; inset: 0; background: rgba(17,16,16,0.55); }
.contact-hero-content { position: relative; z-index: 1; }
.contact-hero-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; color: #fff; letter-spacing: -0.02em;
}
.contact-form-area { background: var(--off-white); padding: 6rem 10%; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; }
.contact-info .label { margin-bottom: 1rem; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; margin-bottom: 1.2rem;
}
.contact-info p { font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }
.contact-detail { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-detail a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.contact-detail a:hover { color: var(--accent-dark); }

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.9rem 0;
  border: none; border-bottom: 1px solid var(--warm-mid);
  background: transparent; font-family: 'Jost', sans-serif;
  font-size: 0.92rem; font-weight: 300; color: var(--text-main);
  outline: none; transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-bottom-color: var(--accent-dark);
}
.form-group textarea { resize: none; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.btn-submit {
  background: var(--text-main); color: var(--off-white);
  border: none; padding: 1.1rem 3rem;
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--accent-dark); }

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.4);
  padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; align-items: start;
}
.footer-brand {}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; color: #fff;
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.8rem; line-height: 1.7; font-weight: 300; }
.footer-nav-title {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 1.2rem;
}
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s; font-weight: 300;
}
.footer-nav-links a:hover { color: var(--accent); }
.footer-bottom {
  grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem; font-size: 0.75rem;
  display: flex; justify-content: space-between; align-items: center;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; padding: 5rem 6%; gap: 3rem; }
  .experience-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel:nth-child(2) { direction: ltr; }
  .service-img { aspect-ratio: 16/9; position: relative; }
  .science-bar { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  footer { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc(80% - 1rem); }
}
@media (max-width: 768px) {
  nav { padding: 1.2rem 5%; background: rgba(17,16,16,0.7); backdrop-filter: blur(12px); }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: rgba(255,255,255,0.7) !important; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; pointer-events: all; box-shadow: none; background: transparent; border: none; padding: 0; }
  .nav-dropdown-menu a { color: rgba(255,255,255,0.45) !important; }
  .hamburger { display: flex; z-index: 300; }
  .movement-content { padding: 4rem 6%; }
  footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 calc(90% - 1rem); }
}
