/* ============================================================
   Arkansas Anesthesia Partners — ar-styles.css
   The Natural State: Forest Green + Warm Amber + Cream
   Fonts: Source Serif 4 (display) + Urbanist (UI/body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,300;1,8..60,400;1,8..60,600&family=Urbanist:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-950: #071410;
  --green-900: #0F2419;
  --green-800: #152E20;
  --green-700: #1B3D2C;
  --green-600: #2A5940;
  --green-500: #3A7A58;
  --amber:      #C8832A;
  --amber-light: #DFA04A;
  --amber-dim:  #9A6120;
  --cream:      #F5F0E8;
  --cream-dark: #EDE5D6;
  --cream-mid:  #E4D9C7;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-mid:   #3D4038;
  --text-muted: #6B7060;

  --font-display: 'Source Serif 4', Georgia, serif;
  --font-ui:      'Urbanist', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
  --max-w: 1160px;
  --section-py: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--amber);
  color: var(--white);
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: var(--green-900);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-badge {
  width: 50px;
  height: 50px;
  background: var(--amber);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav__logo-name {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.nav__logo-tagline {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.02em;
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav__cta {
  background: var(--amber);
  color: var(--green-900) !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease !important;
}
.nav__cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,20,16,0.7);
  z-index: 800;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav__overlay.open {
  opacity: 1;
  display: block;
}

/* Drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--green-800);
  z-index: 901;
  padding: 90px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer-close {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 1.4rem;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav__drawer-close:hover { opacity: 1; }
.nav__drawer-link {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.2s;
}
.nav__drawer-link:hover { color: var(--amber); padding-left: 6px; }
.nav__drawer-cta {
  margin-top: 20px;
  background: var(--amber);
  color: var(--green-900);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background 0.2s;
}
.nav__drawer-cta:hover { background: var(--amber-light); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(15,36,25,0.76), rgba(15,36,25,0.76)), url('../images/hero.jpg') center 35% / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 60px;
}

/* Decorative diamond shapes */
.hero__diamond-1 {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1.5px solid rgba(200,131,42,0.14);
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.hero__diamond-2 {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(200,131,42,0.09);
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.hero__diamond-3 {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(200,131,42,0.18);
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.hero__dot-field {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,131,42,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(0,0,0,0.4) 0%, transparent 70%);
}
.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,131,42,0.08) 0%, transparent 70%);
  top: 50%;
  right: 0;
  translate: 20% -50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(1000px, 90vw);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 90px) 48px 90px;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero__heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
}

.hero__sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 52px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--amber {
  background: var(--amber);
  color: var(--green-900);
  box-shadow: 0 4px 20px rgba(200,131,42,0.35);
}
.btn--amber:hover {
  background: var(--amber-light);
  box-shadow: 0 6px 28px rgba(200,131,42,0.45);
}
.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: max(40px, calc((100vw - var(--max-w)) / 2 + 40px));
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); opacity: 0; transform-origin: top; }
  30% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  70% { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  background: var(--cream);
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__left {
  position: relative;
}
.about__diamond-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 64px;
  height: 64px;
  border: 2px solid var(--amber);
  transform: rotate(45deg);
  opacity: 0.5;
}
.about__diamond-filled {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  background: var(--amber);
  transform: rotate(45deg);
  opacity: 0.15;
}
.about__pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green-700);
  line-height: 1.35;
  padding-left: 28px;
  border-left: 3px solid var(--amber);
}
.about__right {}
.about__body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about__body:last-child { margin-bottom: 0; }

/* ================================================================
   SERVICES
   ================================================================ */
.services {
  background: var(--green-900);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,131,42,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.services__header {
  text-align: center;
  margin-bottom: 64px;
}
.services__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.services__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: background 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,131,42,0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber);
  stroke-width: 1.8;
  fill: none;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card__body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

/* ================================================================
   BLOG PREVIEW
   ================================================================ */
.blog-preview {
  background: var(--cream-dark);
  padding: var(--section-py) 0;
}
.blog-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-preview__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: -0.01em;
}
.blog-preview__all {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  white-space: nowrap;
}
.blog-preview__all:hover { gap: 10px; }
.blog-preview__all svg {
  width: 16px; height: 16px;
  stroke: var(--amber);
  stroke-width: 2;
  fill: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--cream-mid);
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(15,36,25,0.12);
  transform: translateY(-3px);
}
.blog-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1.45;
  margin-bottom: 16px;
  transition: color 0.2s;
  flex: 1;
}
.blog-card:hover .blog-card__title { color: var(--amber-dim); }
.blog-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, gap 0.2s;
}
.blog-card:hover .blog-card__link { color: var(--amber); gap: 8px; }
.blog-card__link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--green-800);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(200,131,42,0.15);
  transform: rotate(45deg);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200,131,42,0.1);
  transform: rotate(45deg);
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.cta-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.cta-section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}
.cta-section__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-section__phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.cta-section__phone:hover { color: var(--amber-light); }
.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================================================
   CONTACT FORMS (tabbed, homepage)
   ================================================================ */
.contact-forms {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.contact-forms__header {
  max-width: 600px;
  margin-bottom: 48px;
}
.contact-forms__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.contact-forms__sub {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Tab switcher */
.form-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.form-tab {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-mid);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s var(--ease-out);
  letter-spacing: 0.02em;
}
.form-tab:hover {
  border-color: var(--amber);
  color: var(--amber-dim);
  transform: translateY(-1px);
}
.form-tab.active {
  background: var(--amber);
  color: var(--green-900);
  border-color: var(--amber);
}

/* Panels */
.form-panel {
  display: none;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.form-panel.active { display: grid; }

.form-panel__info {}
.form-panel__info-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.form-panel__info-body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.form-panel__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-panel__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.form-panel__contact-item:first-child { border-top: 1px solid var(--cream-mid); }
.form-panel__contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,131,42,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-panel__contact-icon svg {
  width: 17px; height: 17px;
  stroke: var(--amber);
  stroke-width: 1.8;
  fill: none;
}
.form-panel__contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.form-panel__contact-value {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}
.form-panel__contact-value a {
  color: var(--green-700);
  transition: color 0.2s;
}
.form-panel__contact-value a:hover { color: var(--amber); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--green-950);
  padding: 72px 0 40px;
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer__logo-badge {
  width: 50px;
  height: 50px;
  background: var(--amber);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}
.footer__logo-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.footer__logo-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
}
.footer__description {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 300px;
  margin-bottom: 24px;
}
.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer__contact-item svg {
  width: 14px; height: 14px;
  stroke: var(--amber);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200,131,42,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.footer__social-link:hover {
  border-color: var(--amber);
  background: rgba(200,131,42,0.12);
}
.footer__social-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--amber);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__contact-item a:hover { color: var(--amber); }
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
}
.footer__link:hover { color: var(--amber); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer__legal-links {
  display: flex;
  gap: 24px;
}
.footer__legal-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer__legal-link:hover { color: var(--amber); }

/* ================================================================
   BLOG PAGE
   ================================================================ */
.page-hero {
  background: var(--green-900);
  padding: calc(var(--nav-h) + 72px) 0 72px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -40px;
}
.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.page-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--amber);
}
.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

.blog-listing {
  padding: 100px 0 var(--section-py);
  background: var(--cream);
}
.blog-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream-dark);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 48px;
}
.blog-disclaimer__icon { color: var(--amber-dim); flex-shrink: 0; margin-top: 2px; }
.blog-disclaimer__text { font-size: 0.94rem; line-height: 1.6; color: var(--text-mid); }
.blog-disclaimer__text a { color: var(--amber-dim); font-weight: 600; text-decoration: underline; }
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-listing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--cream-mid);
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}
.blog-listing-card:hover {
  box-shadow: 0 8px 32px rgba(15,36,25,0.1);
  transform: translateY(-3px);
}
.blog-listing-card__date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.blog-listing-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1.45;
  transition: color 0.2s;
}
.blog-listing-card:hover .blog-listing-card__title { color: var(--amber-dim); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
  padding: 100px 0 var(--section-py);
  background: var(--cream);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact__info-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.contact__detail-item:first-of-type { border-top: 1px solid var(--cream-mid); }
.contact__detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(200,131,42,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--amber);
  stroke-width: 1.8;
  fill: none;
}
.contact__detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact__detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact__detail-value a {
  color: var(--green-700);
  transition: color 0.2s;
}
.contact__detail-value a:hover { color: var(--amber); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--cream-mid);
  box-shadow: 0 4px 32px rgba(15,36,25,0.06);
}
.form__heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7060' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,131,42,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input[type="file"] {
  padding: 8px 14px;
  cursor: pointer;
}
.form-group input[type="file"]::file-selector-button {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--green-700);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.2s;
}
.form-group input[type="file"]::file-selector-button:hover {
  background: var(--green-600);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--amber);
  cursor: pointer;
}
.form-checkbox span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-checkbox a {
  color: var(--amber);
  text-decoration: underline;
}
.btn--submit {
  width: 100%;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.btn--submit:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15,36,25,0.3);
}

/* ================================================================
   PRIVACY POLICY PAGE
   ================================================================ */
.policy-content {
  padding: 100px 0 var(--section-py);
  background: var(--cream);
}
.policy-content__inner {
  max-width: 780px;
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-800);
  margin: 40px 0 12px;
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  margin: 12px 0 16px 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.policy-content ul li { margin-bottom: 8px; }
.policy-content a { color: var(--amber); text-decoration: underline; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .about__inner {
    gap: 48px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .container { padding: 0 24px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 24px; }

  .hero__content {
    padding: calc(var(--nav-h) + 40px) 24px 40px;
    max-width: 100%;
    padding-left: 24px;
  }
  .hero__diamond-1,
  .hero__diamond-2,
  .hero__diamond-3,
  .hero__dot-field,
  .hero__glow { display: none; }
  .hero__scroll { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-listing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-panel.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .blog-listing-grid { grid-template-columns: 1fr; }
  .nav__logo-tagline { display: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   BLOG POST ARTICLE PAGE
   ================================================================ */
.post-featured {
  background: var(--cream);
  padding: 60px 0 0;
}
.post-featured__img {
  width: 100%;
  max-width: 900px;
  max-height: 460px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(15,36,25,0.12);
}

.post-body {
  padding: 64px 0 var(--section-py);
  background: var(--cream);
}
.post-body__inner {
  max-width: 800px;
  margin: 0 auto;
}
.post-body__inner p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 24px;
}
.post-body__inner h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-800);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.post-body__inner ol,
.post-body__inner ul {
  margin: 0 0 24px 28px;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.88;
}
.post-body__inner li { margin-bottom: 12px; }
.post-body__inner li:last-child { margin-bottom: 0; }
.post-body__inner a { color: var(--amber); text-decoration: underline; }
.post-body__inner strong { color: var(--text-dark); font-weight: 600; }

/* Post Navigation (prev / next) */
.post-nav {
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-mid);
  padding: 56px 0;
}
.post-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.post-nav__next {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}
.post-nav__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.post-nav__next .post-nav__label { flex-direction: row-reverse; }
.post-nav__label svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.post-nav__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1.4;
  transition: color 0.2s;
}
.post-nav__link:hover .post-nav__title { color: var(--amber-dim); }

@media (max-width: 600px) {
  .post-nav__inner { grid-template-columns: 1fr; }
  .post-nav__next { align-items: flex-start; text-align: left; }
  .post-nav__next .post-nav__label { flex-direction: row; }
}

/* ---- Post References ---- */
.post-references {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-mid);
}
.post-references__label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.post-references ol {
  padding-left: 1.25rem;
}
.post-references li {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
