/* ================================================================
   BEYOND THE LOGO — Main Stylesheet
   Dark cinematic brand videography aesthetic
   ================================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-0:       #080808;
  --bg-1:       #0f0f0f;
  --bg-2:       #161616;
  --bg-3:       #1c1c1c;
  --text-1:     #edede9;
  --text-2:     #a09a94;
  --text-3:     #636058;
  --accent:     #c8a951;
  --accent-dk:  #9e8238;
  --accent-lt:  #e8cc78;
  --border:     rgba(255, 255, 255, 0.07);
  --border-acc: rgba(200, 169, 81, 0.3);
  --shadow-sm:  0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg:  0 24px 80px rgba(0, 0, 0, 0.6);
  --radius:     3px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --dur:        0.5s;
  --font-h:     'Cormorant Garamond', Georgia, serif;
  --font-b:     'Inter', system-ui, sans-serif;
  --max-w:      1280px;
  --nav-h:      80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  background-color: var(--bg-0);
  color: var(--text-1);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1 { font-family: var(--font-h); font-weight: 300; font-size: clamp(3.5rem, 9vw, 8rem); line-height: 0.95; letter-spacing: -0.02em; }
h2 { font-family: var(--font-h); font-weight: 300; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.05; letter-spacing: -0.01em; }
h3 { font-family: var(--font-h); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.15; }
h4 { font-family: var(--font-b); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }

p { color: var(--text-2); font-weight: 300; font-size: 1.05rem; line-height: 1.85; }

.text-accent { color: var(--accent); }
.text-muted   { color: var(--text-3); }
.text-center  { text-align: center; }
.italic       { font-style: italic; }

/* --- Layout Utilities --- */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.section    { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --- Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
}
.divider-center { margin: 1.5rem auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-0);
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 169, 81, 0.3);
}

.btn-outline {
  border: 1px solid var(--border-acc);
  color: var(--accent);
}
.btn-outline:hover {
  background: rgba(200, 169, 81, 0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-1);
  transition: color 0.3s;
}
.nav-logo img {
  display: block;
  height: 62px;
  width: auto;
}
.nav-logo span { color: var(--accent); }
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text-1); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.4rem !important;
  border: 1px solid var(--border-acc) !important;
  color: var(--accent) !important;
  border-radius: var(--radius);
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--bg-0) !important; }
.nav-cta::after { display: none !important; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-1);
  transition: var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.7px, 4.7px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.7px, -4.7px); }

/* Mobile Menu Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 3rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
  z-index: 999;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-drawer li a {
  display: block;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.nav-drawer li:last-child a { border-bottom: none; }
.nav-drawer li a:hover { color: var(--accent); }
.nav-drawer .drawer-cta { margin-top: 1.5rem; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/original_hero.png');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.06);
  transition: transform 8s linear;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.15) 0%,
    rgba(8,8,8,0.3)  30%,
    rgba(8,8,8,0.7)  65%,
    rgba(8,8,8,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  max-width: 860px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(4rem, 10vw, 9rem);
  font-family: var(--font-h);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); transform-origin: top; }
}

/* ================================================================
   WHY SECTION
   ================================================================ */
.why-section {
  background: var(--bg-0);
  overflow: hidden;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.why-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.why-heading {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-family: var(--font-h);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.why-heading em {
  font-style: italic;
  color: var(--accent);
}

.why-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.why-text p:last-of-type { margin-bottom: 2rem; }

.why-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}

.why-stat strong {
  display: block;
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.why-stat span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* ================================================================
   ETHOS SECTION
   ================================================================ */
.ethos-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}

.ethos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.ethos-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.ethos-image-wrap {
  position: relative;
}

.ethos-image-wrap img {
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: brightness(0.85) contrast(1.05);
}

.ethos-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  background: var(--bg-0);
  border: 1px solid var(--border-acc);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.ethos-image-badge strong {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.ethos-image-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.2rem;
}

.ethos-content .why-label { margin-bottom: 1rem; }

.ethos-quote {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-1);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.ethos-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-2);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.ethos-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.ethos-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ethos-pillar-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(200, 169, 81, 0.1);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 0.1rem;
}
.ethos-pillar-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 0.2rem;
}
.ethos-pillar-text span {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ================================================================
   SERVICES / PROCESS SECTION
   ================================================================ */
.services-section {
  background: var(--bg-0);
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header p {
  font-size: 1.05rem;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  background: var(--bg-1);
  padding: 2.5rem;
  transition: background var(--dur) var(--ease);
  position: relative;
}
.service-card:hover { background: var(--bg-2); }
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::after { opacity: 1; }

.service-number {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: var(--accent); }

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-1);
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-3);
}

/* ================================================================
   SHOWREEL / VIDEO SECTION
   ================================================================ */
.video-section {
  background: var(--bg-1);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 169, 81, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.video-header { text-align: center; margin-bottom: 3rem; }
.video-header h2 { margin-bottom: 0.75rem; }
.video-header p { max-width: 500px; margin: 0 auto; }

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--bg-2);
  cursor: pointer;
}

.video-placeholder-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/2608517/pexels-photo-2608517.jpeg?auto=compress&cs=tinysrgb&w=1280');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(30%);
}

.play-btn {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(200, 169, 81, 0.15);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--dur) var(--ease);
}
.play-btn:hover {
  background: var(--accent);
  color: var(--bg-0);
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(200, 169, 81, 0.4);
}
.play-btn svg { margin-left: 4px; }

.video-placeholder p {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ================================================================
   SOCIAL FEED SECTION
   ================================================================ */
.social-section {
  background: var(--bg-0);
}

.social-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-header h2 { margin-bottom: 0; }

.social-follow-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s;
}
.social-follow-link:hover { gap: 0.75rem; }
.social-follow-link svg { flex-shrink: 0; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.social-post {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

/* Instagram embed tile — portrait 9:16 ratio */
.social-post.ig-embed-tile {
  aspect-ratio: 9/16;
  background: var(--bg-2);
}

.ig-embed-tile iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.ig-overlay:hover { background: rgba(200, 169, 81, 0.1); }

/* Placeholder tile shown until a post shortcode is added */
.ig-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-2);
}
.ig-placeholder::after {
  content: 'Add post';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}

.social-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.9) saturate(0.85);
}
.social-post:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

.social-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.4) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.social-post:hover .social-post-overlay { opacity: 1; }

.social-post-caption {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-1);
  font-weight: 300;
}
.social-post-caption strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 400;
  color: var(--text-1);
}
.social-post-caption .hashtag { color: var(--accent); }

.social-post-type {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  color: white;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================================
   CONTACT CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-content h2 { margin-bottom: 0.75rem; }
.cta-content p  { font-size: 1.05rem; max-width: 540px; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  flex-shrink: 0;
}

/* ================================================================
   ABOUT PAGE — Additional Styles
   ================================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200, 169, 81, 0.04), transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 6rem); margin-bottom: 1rem; }
.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--bg-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-acc); }
.team-card-img {
  height: 280px;
  overflow: hidden;
}
.team-card-img img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.team-card:hover .team-card-img img { transform: scale(1.04); filter: grayscale(0); }
.team-card-info { padding: 1.5rem; }
.team-card-info h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 0.2rem; }
.team-card-info .role { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.team-card-info p { font-size: 0.875rem; margin-top: 0.75rem; line-height: 1.65; color: var(--text-3); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--bg-2);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--border-acc); }
.value-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-acc);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.value-card h4 { font-family: var(--font-b); font-size: 0.9rem; font-weight: 600; color: var(--text-1); letter-spacing: 0; text-transform: none; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.875rem; line-height: 1.65; }

/* ================================================================
   CONTACT PAGE — Additional Styles
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { font-size: 1.05rem; color: var(--text-2); line-height: 1.85; margin-bottom: 2.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(200, 169, 81, 0.08);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 0.1rem;
}
.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.25rem;
}
.contact-detail span, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text-2);
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--accent); }

.contact-social { margin-top: 2rem; }
.contact-social p {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: var(--dur) var(--ease);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 169, 81, 0.06);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-family: var(--font-b);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(200, 169, 81, 0.03);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-3); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: 1.75rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; font-size: 0.85rem; }

/* CAPTCHA */
.captcha-group { border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 0.5rem; }
.captcha-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); display: block; margin-bottom: 0.5rem; }
.captcha-wrap { display: flex; align-items: center; gap: 0.75rem; }
.captcha-wrap input { width: 120px; flex-shrink: 0; }
.captcha-refresh {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-3);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, color 0.25s;
}
.captcha-refresh:hover { border-color: var(--accent); color: var(--accent); }
.captcha-error { font-size: 0.78rem; color: #e57373; margin-top: 0.4rem; display: block; }

.form-msg {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.form-msg.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81c784;
}
.form-msg.error {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #e57373;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-3);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

.footer-social { display: flex; gap: 0.5rem; }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ================================================================
   GRAIN OVERLAY (subtle texture)
   ================================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ================================================================
   RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { align-items: center; flex-direction: row; justify-content: center; }
  .ethos-inner { grid-template-columns: 1fr; }
  .ethos-image-wrap { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .why-stat-row { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn:not(.btn-primary) { display: none; }
  .ethos-image-badge { display: none; }
}

@media (max-width: 480px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .why-stat-row { grid-template-columns: 1fr; }
}

/* ================================================================
   RESPONSIVE — Short viewports (15" laptop / 768p screens)
   Prevents hero content overflowing into the navbar area.
   ================================================================ */
@media (max-height: 760px) {
  .hero-title   { font-size: clamp(3rem, 8vw, 7rem); margin-bottom: 1.25rem; }
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero-sub     { margin-bottom: 1.5rem; }
  .hero-content { padding-bottom: clamp(2rem, 5vw, 3.5rem); }
}

@media (max-height: 660px) {
  .hero-title   { margin-bottom: 1rem; }
  .hero-content { padding-bottom: 1.5rem; }
}

@media (max-height: 600px) {
  .hero-sub { display: none; }
}
