/*
Theme Name: 2208 Signature
Theme URI: https://2208sig.com
Author: 2208 Signature LLC
Author URI: https://2208sig.com
Description: Premium WordPress theme for 2208 Signature Marketing Agency — a traditional marketing agency in Allen, Texas. Built for conversion, SEO, and brand authority.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 2208-signature
Tags: one-page, marketing, agency, conversion, gold, luxury
*/

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────── */
:root {
  --charcoal: #0D0D0D;
  --navy: #0F1923;
  --navy-2: #131f2e;
  --gold: #C9A84C;
  --gold-l: #dfc278;
  --gold-d: #b8934a;
  --gold-dim: rgba(201, 168, 76, .14);
  --gold-line: rgba(201, 168, 76, .22);
  --warm: #FAFAF8;
  --stone: #8C8C8C;
  --stone-light: #b0b0b0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .09);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .14);
  --gold-shadow: 0 4px 22px rgba(201, 168, 76, .28);
  --transition: all .28s cubic-bezier(.4, 0, .2, 1);
}

/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--warm);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }
input, textarea, select {
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

/* ─── REVEAL ON SCROLL ───────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.rv.in { opacity: 1; transform: none; }

/* ─── GOLD TEXT GRADIENT ─────────────────────────────── */
.gold-text {
  background: linear-gradient(105deg, #b8934a 0%, #e8c97a 40%, #C9A84C 65%, #dfc278 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* ─── SECTION TAG ────────────────────────────────────── */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sec-tag-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #C9A84C, #dfc278, #b8934a);
  background-size: 200% auto;
  color: var(--navy);
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  box-shadow: var(--gold-shadow);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, .44);
  background-position: right center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .65);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold-line);
  background: var(--gold-dim);
}
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  border: 1px solid var(--gold-line);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ─── HEADER ─────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(15, 25, 35, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-line);
  transition: background .3s, box-shadow .3s;
}
#site-header.scrolled {
  background: rgba(13, 13, 13, .97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.logo-fallback {
  line-height: 1;
}
.logo-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #FAFAF8;
}
.logo-script {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.logo-sub {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 3px;
}
.logo-rule {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  flex-shrink: 0;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.current {
  color: var(--gold);
  background: var(--gold-dim);
}
.main-nav .nav-cta {
  background: linear-gradient(135deg, #C9A84C, #dfc278, #b8934a) !important;
  color: var(--navy) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: var(--gold-shadow);
}
.main-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, .42) !important;
  background: linear-gradient(135deg, #dfc278, #C9A84C, #b8934a) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  min-width: 36px;
  min-height: 36px;
}
.nav-toggle .tog-open { display: flex; flex-direction: column; gap: 5px; }
.nav-toggle .tog-open span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle .tog-close { display: none; color: var(--gold); line-height: 0; }

/* ─── FOOTER ─────────────────────────────────────────── */
#site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--gold-line);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 5% 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .38);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .38);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact-item p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .38) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}
.footer-contact-item a {
  color: var(--gold);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--gold-l); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, .2);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, .2);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.page-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, .07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  color: #FAFAF8;
  margin-bottom: 14px;
  letter-spacing: -.03em;
}
.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  margin-top: 20px;
  justify-content: center;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { opacity: .4; }

/* ─── PAGINATION ─────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 5%;
}
.page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--stone);
  border: 1px solid rgba(0, 0, 0, .1);
  transition: var(--transition);
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--gold-dim);
  border-color: var(--gold-line);
  color: var(--gold);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(13, 13, 13, .98);
    backdrop-filter: blur(20px);
    padding: 24px 5% 32px;
    border-bottom: 1px solid var(--gold-line);
    gap: 4px;
  }
  .main-nav.open, #mainNav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; font-size: 15px; }
  .nav-toggle { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 48px 5% 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
