/* =====================
   SHARED — BASE STYLES
   ===================== */

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

:root {
  --ink: #1a1612;
  --paper: #f5f0e8;
  --paper-dark: #ede8df;
  --gold: #b8860b;
  --gold-light: #d4a830;
  --gold-pale: rgba(184,134,11,0.08);
  --rust: #8b3a2a;
  --muted: #6b6458;
  --line: rgba(26,22,18,0.12);
  --line-light: rgba(26,22,18,0.06);
  --white: #ffffff;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

/* Grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }

.section-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}

/* CONTAINER */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--paper);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,22,18,0.25);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(245,240,232,0.3);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 1000;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(245,240,232,0.98);
  box-shadow: 0 1px 20px rgba(26,22,18,0.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2.5rem;
  gap: 1.2rem;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}

.nav-mobile.open { transform: translateY(0); }

.nav-mobile-link {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--ink); }

/* DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.section-divider::before,
.section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.divider-mark {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  background: var(--ink);
  padding: 3rem 0 1.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--paper);
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.35);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  font-size: 0.7rem;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.08em;
}

/* CTA STRIP */
.home-cta-strip {
  background: var(--ink);
  padding: 3.5rem 0;
  position: relative;
}
.home-cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 0.3rem;
}
.cta-strip-sub {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.4);
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--ink);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
  font-family: 'DM Sans', sans-serif;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.1;
  max-width: 16ch;
}
.page-hero-sub {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(245,240,232,0.45);
  max-width: 48ch;
  line-height: 1.8;
}

/* PULL QUOTE */
.pull-quote {
  margin: 2.5rem 0;
  padding: 1.8rem 2rem 1.8rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
}

/* FORM ELEMENTS */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* MOBILE */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  body { padding-top: var(--nav-h); }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
}

/*Tetsing footer for social links*/
/* Socials Container 
.footer-socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
  */

.footer-socials {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    gap: 20px;
    padding: 10px;
}

/* Link Styling */
.footer-socials a {
  color: inherit; /* Keeps the same color as your brand text */
  font-size: 1.25rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

/* Target the icons specifically */
.footer-socials a i {
    color: #ffffff !important; /* Forces white icons */
    font-size: 1.5rem;         /* Makes them slightly larger */
    transition: all 0.3s ease;
}

/* Add a hover color so users know it's interactive */
.footer-socials a:hover i {
    color: #0077b5 !important; /* LinkedIn Blue or your choice of accent */
    transform: translateY(-3px);
}

/**/