/*
Theme Name: 99TheCrossing_WPConvert (WPConvert)
Theme URI: https://wpconvert.ai
Author: WPConvert.ai
Author URI: https://wpconvert.ai
Description: This theme was automatically generated from your original site design using WPConvert.ai. It preserves your layout, colors, typography, header, footer, and page content, and makes it editable in WordPress.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpconvert
Tags: landing page, responsive, custom header, custom footer
*/

/* External Stylesheets - @import statements MUST come before any CSS rules */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* CSS Variables */
:root {
}

/* Inline Styles */

/* Extracted CSS from page */

/* ═══════════════════════════════════════════
   GLOBAL THEME VARIABLES — edit these to
   change colors, fonts & sizes site-wide
═══════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --color-primary: #2c3e2d; /* dark green */
  --color-secondary: #4a6741; /* mid green  */
  --color-accent: #c4a882; /* tan/gold   */
  --color-accent-lt: #e8d9c0; /* light tan  */
  --color-bg: #f8f5f0; /* off-white  */
  --color-bg-alt: #faf6ef; /* cream      */
  --color-white: #ffffff;
  --color-text: #1e1e1e;
  --color-text-muted: #6b6560;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;

  /* Spacing */
  --section-pad: 5.5rem 5rem;
  --section-pad-mob: 3.5rem 1.5rem;

  /* Logo box */
  --logo-height-desk: 80px;
  --logo-height-mob: 56px;
  --logo-hang: 28px; /* how far it hangs below nav */
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.7;
  font-size: var(--font-size-base);
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem 2.5rem 0 1rem;
  background: rgba(44, 62, 45, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  min-height: 64px;
}

/* Logo box — hangs over nav bottom */
.logo-wrap {
  position: relative;
  z-index: 10;
  top: 0;
  flex-shrink: 0;
}
.logo-box {
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  padding: 0.65rem 1.1rem;
  display: block;
  box-shadow: 0 6px 24px rgba(44, 62, 45, 0.4);
  margin-bottom: calc(-1 * var(--logo-hang));
  margin-left: 18px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
}
.logo-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 62, 45, 0.5);
}
.logo-box img {
  height: 96px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 0;
}
.nm {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.nm a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}
.nm a:hover {
  color: var(--color-accent);
}
.nb {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.nb:hover {
  background: var(--color-accent-lt);
}

/* Hamburger — mobile only */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 45, 0.98);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--color-accent);
}
.mobile-menu .mob-book {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 0.8rem 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
}
.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}
.slides {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.slide:nth-child(1) {
  background: linear-gradient(160deg, #1a2b1b, #2c3e2d, #3d5c35);
}
.slide:nth-child(2) {
  background: linear-gradient(160deg, #1f2e1a, #354d2e, #2a3d22);
}
.slide:nth-child(3) {
  background: linear-gradient(160deg, #231f1a, #3d3226, #2e261e);
}
.slide:nth-child(4) {
  background: linear-gradient(160deg, #1a2424, #2c3e3e, #1e3030);
}
.slide:nth-child(5) {
  background: linear-gradient(160deg, #1a1f2b, #2c3245, #1e2838);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.slide-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  border: 1px dashed rgba(196, 168, 130, 0.15);
}
.slide-ph span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.28);
  border: 1px dashed rgba(196, 168, 130, 0.12);
  padding: 0.4rem 1rem;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  text-align: left;
  color: #fff;
  padding: 0 4rem 0 2rem;
}
.hinner {
  max-width: 480px;
  animation: fadeUp 1.2s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text box overlay — right-aligned rectangle like Newnan Centre */
.hero-textbox {
  background: rgba(250, 246, 239, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  padding: 2rem 2.5rem;
  display: inline-block;
  width: 100%;
}
.hdiv {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 0.9rem;
}
.hdiv::before {
  display: none;
}
.hdiv::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}
.hdiv span {
  color: var(--color-accent);
  font-size: 0.8rem;
}
.hey {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}
.ht {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.ht em {
  font-style: italic;
  color: var(--color-accent-lt);
}
.hs {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.bt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.3s,
    transform 0.2s;
}
.bt:hover {
  background: var(--color-accent-lt);
  transform: translateY(-2px);
}
.bow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  transition:
    border-color 0.3s,
    transform 0.2s;
}
.bow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.slider-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 20;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}
.sarrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(44, 62, 45, 0.55);
  border: 1px solid rgba(196, 168, 130, 0.3);
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
  user-select: none;
}
.sarrow:hover {
  background: rgba(196, 168, 130, 0.45);
}
.sarrow.prev {
  left: 1.2rem;
}
.sarrow.next {
  right: 1.2rem;
}
.hscr {
  position: absolute;
  bottom: 3.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 20;
  animation: sb 2s infinite;
}
.hscr::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(196, 168, 130, 0.5), transparent);
}
@keyframes sb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════ */
section {
  padding: var(--section-pad);
}
.ey {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.7rem;
  display: block;
  font-weight: 700;
}
.st {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.st em {
  font-style: italic;
  color: var(--color-secondary);
}
.sb {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  max-width: 520px;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.intro {
  background: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.iw {
  position: relative;
}
.ii {
  aspect-ratio: 4/5;
  background: #eaf0e6;
  border: 1px solid rgba(74, 103, 65, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 103, 65, 0.3);
  position: relative;
}
.ii::before {
  content: 'Your Venue Photo Here';
  position: absolute;
  border: 1px dashed rgba(74, 103, 65, 0.18);
  inset: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ia {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  aspect-ratio: 1;
  background: #eaf0e6;
  border: 1px solid rgba(74, 103, 65, 0.12);
  z-index: -1;
}
.is {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.sbox {
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
}
.sn {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
}
.sl {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════
   CATEGORY GRID
═══════════════════════════════════════════ */
.catgrid-section {
  background: var(--color-white);
  padding: 4rem 3rem;
}
.catgrid-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.catgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.catgrid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.ccat {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #eaf0e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccat-bg {
  position: absolute;
  inset: 0;
  transition:
    transform 0.5s ease,
    filter 0.5s;
}
.ccat:hover .ccat-bg {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.ccat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
}
.ccat-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(74, 103, 65, 0.32);
}
.ccat-label {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--color-accent);
  padding: 0.45rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
  transition:
    background 0.3s,
    color 0.3s;
  z-index: 5;
}
.ccat:hover .ccat-label {
  background: var(--color-accent);
  color: #fff;
}

/* ═══════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════ */
.feats {
  background: var(--color-primary);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feats .st {
  color: #fff;
}
.feats .st em {
  color: var(--color-accent-lt);
}
.feats .ey {
  color: var(--color-accent);
}
.feats .sb {
  color: rgba(255, 255, 255, 0.48);
}
.fl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-top: 2rem;
}
.fi {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.fic {
  width: 34px;
  height: 34px;
  background: rgba(196, 168, 130, 0.08);
  border: 1px solid rgba(196, 168, 130, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.fit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #fff;
}
.fit span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}
.fis {
  position: relative;
  height: 500px;
}
.fim {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  background: rgba(74, 103, 65, 0.22);
  border: 1px dashed rgba(196, 168, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.28);
}
.fis2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 47%;
  background: rgba(74, 103, 65, 0.16);
  border: 1px dashed rgba(196, 168, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.28);
}
.facc {
  position: absolute;
  bottom: 24px;
  left: -14px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(196, 168, 130, 0.15);
  background: rgba(196, 168, 130, 0.04);
}

/* ═══════════════════════════════════════════
   COMMUNITY
═══════════════════════════════════════════ */
.community {
  background: var(--color-bg-alt);
  text-align: center;
}
.comm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.8rem;
}
.comm-card {
  background: var(--color-white);
  padding: 1.6rem 1rem;
  border-bottom: 3px solid var(--color-accent);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.comm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(44, 62, 45, 0.1);
}
.comm-icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.comm-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.comm-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery {
  background: var(--color-bg);
  padding-bottom: 0;
}
.gh {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 5px;
}
.gc {
  background: #eaf0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 103, 65, 0.28);
  cursor: pointer;
  transition: filter 0.3s;
}
.gc:hover {
  filter: brightness(0.88);
}
.gc.wide {
  grid-column: span 2;
}
.gc.tall {
  grid-row: span 2;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testis {
  background: var(--color-white);
  text-align: center;
}
.thd {
  margin-bottom: 3.5rem;
}
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.tc {
  background: var(--color-bg-alt);
  padding: 2.2rem;
  text-align: left;
  border-top: 3px solid var(--color-accent);
  position: relative;
}
.tq {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 0.8rem;
  left: 1.3rem;
}
.sts {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}
.tt {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.3rem;
  font-style: italic;
}
.ta strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.ta span {
  font-size: 0.7rem;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cband {
  background: var(--color-secondary);
  padding: 3.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.cband h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.cband p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 0.3rem;
}
.bw {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: #fff;
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.3s,
    transform 0.2s;
  white-space: nowrap;
}
.bw:hover {
  background: var(--color-accent-lt);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: var(--color-primary);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact .st {
  color: #fff;
}
.contact .st em {
  color: var(--color-accent-lt);
}
.contact .ey {
  color: var(--color-accent);
}
.contact .sb {
  color: rgba(255, 255, 255, 0.48);
}
.citems {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.cic {
  width: 32px;
  height: 32px;
  background: rgba(196, 168, 130, 0.08);
  border: 1px solid rgba(196, 168, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.cit strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.15rem;
}
.cit span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
}
.cit a {
  color: inherit;
  text-decoration: none;
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.fg label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(196, 168, 130, 0.28);
  padding: 0.7rem 0.85rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}
.fg select option {
  background: var(--color-primary);
}
.fg textarea {
  height: 80px;
  resize: vertical;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(196, 168, 130, 0.55);
}
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.bsub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  border: none;
  padding: 0.9rem 2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  transition: background 0.3s;
  margin-top: 0.4rem;
  width: 100%;
}
.bsub:hover {
  background: var(--color-accent-lt);
}
.team-blurb {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.team-blurb p:first-child {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-blurb p:last-child {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2;
}
.team-blurb strong {
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #0d1a0e;
  color: rgba(255, 255, 255, 0.32);
  padding: 2.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.flog img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.flinks {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.flinks a {
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  transition: color 0.3s;
}
.flinks a:hover {
  color: var(--color-accent);
}
.fsoc {
  display: flex;
  gap: 0.7rem;
}
.fsb {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  font-size: 0.7rem;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.fsb:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.fcopy {
  width: 100%;
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.64rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.3rem;
}
.fcopy a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
}
.fcopy a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE — 768px and below
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --logo-height-desk: var(--logo-height-mob);
    --logo-hang: 18px;
    --section-pad: var(--section-pad-mob);
  }

  nav {
    padding: 0.4rem 1rem 0 0.5rem;
    min-height: 56px;
  }

  .logo-box {
    padding: 0.4rem 0.6rem;
  }
  .logo-box img {
    height: var(--logo-height-mob);
  }

  /* Hide desktop nav links, keep Book Now, show hamburger */
  .nm {
    display: none;
  }
  .nb {
    display: block !important;
    font-size: 0.78rem !important;
    padding: 0.7rem 1.4rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
  }
  .hamburger {
    display: flex;
  }
  .nav-right {
    gap: 0.8rem;
    padding: 0.6rem 0;
  }

  /* Hero - hide text box on mobile, show clean photo like Newnan Centre */
  .hero {
    height: 100svh;
    min-height: 500px;
  }
  .hero-content {
    display: none;
  }
  .hscr {
    display: none;
  }

  /* About */
  .intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .iw {
    order: 2;
  }
  .ia {
    display: none;
  }

  /* Cat grid */
  .catgrid-section {
    padding: 3rem 1.2rem;
  }
  .catgrid,
  .catgrid-row2 {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .ccat-label {
    font-size: 0.6rem;
    padding: 0.35rem 0.8rem;
    letter-spacing: 0.1em;
  }

  /* Amenities */
  .feats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fis {
    display: none;
  }
  .fl {
    grid-template-columns: 1fr;
  }

  /* Community */
  .comm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  /* Gallery */
  .gg {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
    gap: 4px;
  }
  .gc.tall {
    grid-row: span 1;
  }

  /* Testimonials */
  .tg {
    grid-template-columns: 1fr;
  }

  /* CTA band */
  .cband {
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem;
  }
  .fr {
    grid-template-columns: 1fr;
  }

  /* Footer */
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .flinks {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .catgrid,
  .catgrid-row2 {
    grid-template-columns: 1fr;
  }
  .comm-grid {
    grid-template-columns: 1fr;
  }
  .ht {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
}

:root {
  --color-primary: #2c3e2d;
  --color-secondary: #4a6741;
  --color-accent: #c4a882;
  --color-accent-lt: #e8d9c0;
  --color-bg: #f8f5f0;
  --color-bg-alt: #faf6ef;
  --color-white: #ffffff;
  --color-text: #1e1e1e;
  --color-text-muted: #6b6560;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --section-pad: 5.5rem 5rem;
  --section-pad-mob: 3.5rem 1.5rem;
  --logo-height-desk: 80px;
  --logo-height-mob: 56px;
  --logo-hang: 28px;
}
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.7;
  font-size: var(--font-size-base);
}
nav {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem 2.5rem 0px 1rem;
  background: rgba(44, 62, 45, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  min-height: 64px;
}
.logo-wrap {
  position: relative;
  z-index: 10;
  top: 0px;
  flex-shrink: 0;
}
.logo-box {
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
  padding: 0.65rem 1.1rem;
  display: block;
  box-shadow: rgba(44, 62, 45, 0.4) 0px 6px 24px;
  margin-bottom: calc(-1 * var(--logo-hang));
  margin-left: 18px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
}
.logo-box:hover {
  transform: translateY(-3px);
  box-shadow: rgba(44, 62, 45, 0.5) 0px 10px 30px;
}
.logo-box img {
  height: 96px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 0px;
}
.nm {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.nm a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}
.nm a:hover {
  color: var(--color-accent);
}
.nb {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.nb:hover {
  background: var(--color-accent-lt);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0px;
  background: rgba(44, 62, 45, 0.98);
  z-index: 250;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--color-accent);
}
.mobile-menu .mob-book {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 0.8rem 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
}
.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  cursor: pointer;
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0px;
}
.slides {
  position: absolute;
  inset: 0px;
  display: flex;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.slide:nth-child(1) {
  background: linear-gradient(
    160deg,
    rgb(26, 43, 27),
    rgb(44, 62, 45),
    rgb(61, 92, 53)
  );
}
.slide:nth-child(2) {
  background: linear-gradient(
    160deg,
    rgb(31, 46, 26),
    rgb(53, 77, 46),
    rgb(42, 61, 34)
  );
}
.slide:nth-child(3) {
  background: linear-gradient(
    160deg,
    rgb(35, 31, 26),
    rgb(61, 50, 38),
    rgb(46, 38, 30)
  );
}
.slide:nth-child(4) {
  background: linear-gradient(
    160deg,
    rgb(26, 36, 36),
    rgb(44, 62, 62),
    rgb(30, 48, 48)
  );
}
.slide:nth-child(5) {
  background: linear-gradient(
    160deg,
    rgb(26, 31, 43),
    rgb(44, 50, 69),
    rgb(30, 40, 56)
  );
}
.slide-overlay {
  position: absolute;
  inset: 0px;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.slide-ph {
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  border: 1px dashed rgba(196, 168, 130, 0.15);
}
.slide-ph span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.28);
  border: 1px dashed rgba(196, 168, 130, 0.12);
  padding: 0.4rem 1rem;
}
.hero-content {
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  text-align: left;
  color: rgb(255, 255, 255);
  padding: 0px 4rem 0px 2rem;
}
.hinner {
  max-width: 480px;
  animation: 1.2s ease 0s 1 normal forwards running fadeUp;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.hero-textbox {
  background: rgba(250, 246, 239, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  padding: 2rem 2.5rem;
  display: inline-block;
  width: 100%;
}
.hdiv {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  margin-bottom: 0.9rem;
}
.hdiv::before {
  display: none;
}
.hdiv::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}
.hdiv span {
  color: var(--color-accent);
  font-size: 0.8rem;
}
.hey {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}
.ht {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.ht em {
  font-style: italic;
  color: var(--color-accent-lt);
}
.hs {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.bt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.3s,
    transform 0.2s;
}
.bt:hover {
  background: var(--color-accent-lt);
  transform: translateY(-2px);
}
.bow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  transition:
    border-color 0.3s,
    transform 0.2s;
}
.bow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.slider-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 20;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}
.sarrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(44, 62, 45, 0.55);
  border: 1px solid rgba(196, 168, 130, 0.3);
  color: rgb(255, 255, 255);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
  user-select: none;
}
.sarrow:hover {
  background: rgba(196, 168, 130, 0.45);
}
.sarrow.prev {
  left: 1.2rem;
}
.sarrow.next {
  right: 1.2rem;
}
.hscr {
  position: absolute;
  bottom: 3.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 20;
  animation: 2s ease 0s infinite normal none running sb;
}
.hscr::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(rgba(196, 168, 130, 0.5), transparent);
}
@keyframes sb {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
}
section {
  padding: var(--section-pad);
}
.ey {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.7rem;
  display: block;
  font-weight: 700;
}
.st {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.st em {
  font-style: italic;
  color: var(--color-secondary);
}
.sb {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  max-width: 520px;
}
.intro {
  background: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.iw {
  position: relative;
}
.ii {
  aspect-ratio: 4 / 5;
  background: rgb(234, 240, 230);
  border: 1px solid rgba(74, 103, 65, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 103, 65, 0.3);
  position: relative;
}
.ii::before {
  content: 'Your Venue Photo Here';
  position: absolute;
  border: 1px dashed rgba(74, 103, 65, 0.18);
  inset: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ia {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 55%;
  aspect-ratio: 1 / 1;
  background: rgb(234, 240, 230);
  border: 1px solid rgba(74, 103, 65, 0.12);
  z-index: -1;
}
.is {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.sbox {
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
}
.sn {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
}
.sl {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}
.catgrid-section {
  background: var(--color-white);
  padding: 4rem 3rem;
}
.catgrid-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.catgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.catgrid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.ccat {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: rgb(234, 240, 230);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccat-bg {
  position: absolute;
  inset: 0px;
  transition:
    transform 0.5s,
    filter 0.5s;
}
.ccat:hover .ccat-bg {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.ccat-overlay {
  position: absolute;
  inset: 0px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
}
.ccat-ph {
  position: absolute;
  inset: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(74, 103, 65, 0.32);
}
.ccat-label {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--color-accent);
  padding: 0.45rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
  transition:
    background 0.3s,
    color 0.3s;
  z-index: 5;
}
.ccat:hover .ccat-label {
  background: var(--color-accent);
  color: rgb(255, 255, 255);
}
.feats {
  background: var(--color-primary);
  color: rgb(255, 255, 255);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feats .st {
  color: rgb(255, 255, 255);
}
.feats .st em {
  color: var(--color-accent-lt);
}
.feats .ey {
  color: var(--color-accent);
}
.feats .sb {
  color: rgba(255, 255, 255, 0.48);
}
.fl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-top: 2rem;
}
.fi {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.fic {
  width: 34px;
  height: 34px;
  background: rgba(196, 168, 130, 0.08);
  border: 1px solid rgba(196, 168, 130, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.fit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: rgb(255, 255, 255);
}
.fit span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}
.fis {
  position: relative;
  height: 500px;
}
.fim {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 78%;
  height: 78%;
  background: rgba(74, 103, 65, 0.22);
  border: 1px dashed rgba(196, 168, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.28);
}
.fis2 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 52%;
  height: 47%;
  background: rgba(74, 103, 65, 0.16);
  border: 1px dashed rgba(196, 168, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.28);
}
.facc {
  position: absolute;
  bottom: 24px;
  left: -14px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(196, 168, 130, 0.15);
  background: rgba(196, 168, 130, 0.04);
}
.community {
  background: var(--color-bg-alt);
  text-align: center;
}
.comm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.8rem;
}
.comm-card {
  background: var(--color-white);
  padding: 1.6rem 1rem;
  border-bottom: 3px solid var(--color-accent);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.comm-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(44, 62, 45, 0.1) 0px 14px 36px;
}
.comm-icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.comm-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.comm-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.gallery {
  background: var(--color-bg);
  padding-bottom: 0px;
}
.gh {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 5px;
}
.gc {
  background: rgb(234, 240, 230);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 103, 65, 0.28);
  cursor: pointer;
  transition: filter 0.3s;
}
.gc:hover {
  filter: brightness(0.88);
}
.gc.wide {
  grid-column: span 2;
}
.gc.tall {
  grid-row: span 2;
}
.testis {
  background: var(--color-white);
  text-align: center;
}
.thd {
  margin-bottom: 3.5rem;
}
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0px auto;
}
.tc {
  background: var(--color-bg-alt);
  padding: 2.2rem;
  text-align: left;
  border-top: 3px solid var(--color-accent);
  position: relative;
}
.tq {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 0.8rem;
  left: 1.3rem;
}
.sts {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}
.tt {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.3rem;
  font-style: italic;
}
.ta strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.ta span {
  font-size: 0.7rem;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cband {
  background: var(--color-secondary);
  padding: 3.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.cband h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  line-height: 1.2;
}
.cband p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 0.3rem;
}
.bw {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgb(255, 255, 255);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.3s,
    transform 0.2s;
  white-space: nowrap;
}
.bw:hover {
  background: var(--color-accent-lt);
  transform: translateY(-2px);
}
.contact {
  background: var(--color-primary);
  color: rgb(255, 255, 255);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact .st {
  color: rgb(255, 255, 255);
}
.contact .st em {
  color: var(--color-accent-lt);
}
.contact .ey {
  color: var(--color-accent);
}
.contact .sb {
  color: rgba(255, 255, 255, 0.48);
}
.citems {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.cic {
  width: 32px;
  height: 32px;
  background: rgba(196, 168, 130, 0.08);
  border: 1px solid rgba(196, 168, 130, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.cit strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.15rem;
}
.cit span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
}
.cit a {
  color: inherit;
  text-decoration: none;
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.fg label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255, 255, 255, 0.05);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08) rgba(255, 255, 255, 0.08)
    rgba(196, 168, 130, 0.28);
  border-image: initial;
  padding: 0.7rem 0.85rem;
  color: rgb(255, 255, 255);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}
.fg select option {
  background: var(--color-primary);
}
.fg textarea {
  height: 80px;
  resize: vertical;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(196, 168, 130, 0.55);
}
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.bsub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  padding: 0.9rem 2rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  transition: background 0.3s;
  margin-top: 0.4rem;
  width: 100%;
}
.bsub:hover {
  background: var(--color-accent-lt);
}
.team-blurb {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.team-blurb p:first-child {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-blurb p:last-child {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2;
}
.team-blurb strong {
  color: var(--color-accent);
}
footer {
  background: rgb(13, 26, 14);
  color: rgba(255, 255, 255, 0.32);
  padding: 2.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.flog img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.flinks {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.flinks a {
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  transition: color 0.3s;
}
.flinks a:hover {
  color: var(--color-accent);
}
.fsoc {
  display: flex;
  gap: 0.7rem;
}
.fsb {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  font-size: 0.7rem;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.fsb:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.fcopy {
  width: 100%;
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.64rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.3rem;
}
.fcopy a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
}
.fcopy a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  :root {
    --logo-height-desk: var(--logo-height-mob);
    --logo-hang: 18px;
    --section-pad: var(--section-pad-mob);
  }
  nav {
    padding: 0.4rem 1rem 0px 0.5rem;
    min-height: 56px;
  }
  .logo-box {
    padding: 0.4rem 0.6rem;
  }
  .logo-box img {
    height: var(--logo-height-mob);
  }
  .nm {
    display: none;
  }
  .nb {
    display: block !important;
    font-size: 0.78rem !important;
    padding: 0.7rem 1.4rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
  }
  .hamburger {
    display: flex;
  }
  .nav-right {
    gap: 0.8rem;
    padding: 0.6rem 0px;
  }
  .hero {
    height: 100svh;
    min-height: 500px;
  }
  .hero-content {
    display: none;
  }
  .hscr {
    display: none;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .iw {
    order: 2;
  }
  .ia {
    display: none;
  }
  .catgrid-section {
    padding: 3rem 1.2rem;
  }
  .catgrid,
  .catgrid-row2 {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
  .ccat-label {
    font-size: 0.6rem;
    padding: 0.35rem 0.8rem;
    letter-spacing: 0.1em;
  }
  .feats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fis {
    display: none;
  }
  .fl {
    grid-template-columns: 1fr;
  }
  .comm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }
  .gg {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
    gap: 4px;
  }
  .gc.tall {
    grid-row: span 1;
  }
  .tg {
    grid-template-columns: 1fr;
  }
  .cband {
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem;
  }
  .fr {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .flinks {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .catgrid,
  .catgrid-row2 {
    grid-template-columns: 1fr;
  }
  .comm-grid {
    grid-template-columns: 1fr;
  }
  .ht {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
}

/* WordPress-specific styles */
.wp-block-group {
  margin-bottom: 1rem;
}

.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-button {
  margin-bottom: 1rem;
}

/* CRITICAL: Reset WordPress default constraints that break layouts */
/* WordPress adds default max-width to containers which breaks original layouts */
.entry-content,
.site-content,
.content-area {
  max-width: none !important;
  width: 100% !important;
}

/* EC-CONTAIN-001: Only override .container / section max-width when the site's
   own CSS does NOT define them. Tailwind and Bootstrap sites intentionally set
   .container { max-width: … } — blasting it with !important breaks every section. */
section,
.section {
  max-width: none !important;
}

.container {
  max-width: none !important;
}

/* EC-ANIM-008 / EC-ANIM-009: Scroll-reveal utilities (.scroll-fade-up etc.) start at opacity:0
   and transition to visible when an IntersectionObserver adds .visible (injected in functions.php).
   Carousels inside scroll-reveal wrappers must be forced visible immediately so Embla can measure. */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-up:has([data-wpconvert-blog-filter-bar]),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}

/* EC-SCROLL-001: Auto-scroll marquee CSS (always included - lightweight, no-op if no marquee elements) */

/* EC-SCROLL-001: Auto-scroll gallery marquee animation */
/* Replaces React requestAnimationFrame/scrollLeft with pure CSS animation */
.wpconvert-marquee-container {
  overflow: hidden !important;
}
.wpconvert-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: wpconvert-marquee 30s linear infinite;
}
@keyframes wpconvert-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Pause on hover for accessibility */
.wpconvert-marquee-container:hover .wpconvert-marquee-track {
  animation-play-state: paused;
}
/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .wpconvert-marquee-track {
    animation: none;
    overflow-x: auto;
  }
}

/* EC-ANIM-011: Frozen Framer Motion infinite float/pulse animations replaced with CSS keyframes.
   4 float variants with staggered durations and amplitudes, plus a pulse variant. */
@keyframes wpconvert-float-1 {
  0%,
  100% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes wpconvert-float-2 {
  0%,
  100% {
    transform: translateY(6px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes wpconvert-float-3 {
  0%,
  100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes wpconvert-float-4 {
  0%,
  100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes wpconvert-pulse {
  0%,
  100% {
    scale: 1;
  }
  50% {
    scale: 1.05;
  }
}
@keyframes wpconvert-float-tilt {
  0%,
  100% {
    transform: translateY(0%) rotate(0deg);
  }
  50% {
    transform: translateY(4%) rotate(-2deg);
  }
}
.wpconvert-float-1 {
  animation: wpconvert-float-1 5s ease-in-out infinite;
}
.wpconvert-float-2 {
  animation: wpconvert-float-2 6s ease-in-out infinite 0.5s;
}
.wpconvert-float-3 {
  animation: wpconvert-float-3 5.5s ease-in-out infinite 1s;
}
.wpconvert-float-4 {
  animation: wpconvert-float-4 6.5s ease-in-out infinite 1.5s;
}
.wpconvert-pulse {
  animation: wpconvert-pulse 4s ease-in-out infinite;
}
.wpconvert-float-tilt {
  animation: wpconvert-float-tilt 6s ease-in-out infinite;
}
/* EC-ANIM-011c: z-0 override for centered pulse cards whose z-10 was demoted */
.wpconvert-pulse.z-0 {
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .wpconvert-float-1,
  .wpconvert-float-2,
  .wpconvert-float-3,
  .wpconvert-float-4,
  .wpconvert-pulse,
  .wpconvert-float-tilt {
    animation: none;
  }
}

/* WPConvert Tabs Component CSS */

/* WPConvert Tabs Component */
.wpconvert-tabs {
  max-width: 64rem;
  margin: 0 auto;
}

.wpconvert-tab-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .wpconvert-tab-nav {
    grid-template-columns: repeat(6, 1fr);
  }
}

.wpconvert-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpconvert-tab-btn:hover {
  border-color: hsl(var(--primary) / 0.5);
  color: hsl(var(--foreground));
}

.wpconvert-tab-btn.active {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.wpconvert-tab-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.5rem;
}

.wpconvert-tab-icon svg {
  width: 100%;
  height: 100%;
}

.wpconvert-tab-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.wpconvert-tab-viewport {
  position: relative;
  display: flex;
  align-items: center;
}

.wpconvert-tab-content {
  flex: 1;
  position: relative;
}

.wpconvert-tab-panel {
  display: none;
  padding: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    hsl(var(--card)) 0%,
    hsl(var(--muted) / 0.3) 100%
  );
  border: 1px solid hsl(var(--border));
  text-align: center;
  animation: wpconvert-tab-fade-in 0.3s ease;
}

.wpconvert-tab-panel.active {
  display: block;
}

@keyframes wpconvert-tab-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpconvert-tab-icon-large {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: hsl(var(--primary) / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpconvert-tab-icon-large svg {
  width: 100%;
  height: 100%;
  color: hsl(var(--primary));
}

.wpconvert-tab-title {
  font-family: var(--font-display, inherit);
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-title {
    font-size: 1.875rem;
  }
}

.wpconvert-tab-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.wpconvert-tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.wpconvert-tab-arrow:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.wpconvert-tab-prev {
  left: -1rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-prev {
    left: -1.5rem;
  }
}

.wpconvert-tab-next {
  right: -1rem;
}

@media (min-width: 640px) {
  .wpconvert-tab-next {
    right: -1.5rem;
  }
}

.wpconvert-tab-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.wpconvert-tab-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: hsl(var(--muted-foreground) / 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpconvert-tab-dot:hover {
  background: hsl(var(--muted-foreground) / 0.5);
}

.wpconvert-tab-dot.active {
  background: hsl(var(--primary));
  width: 2rem;
  border-radius: 0.375rem;
}

/* EC-MSTEP-001: Multi-step form wizard CSS */

/* EC-MSTEP-001: Multi-step form wizard */
.wpconvert-multistep-form {
  width: 100%;
}
.wpconvert-step-panel {
  display: none;
}
.wpconvert-step-panel.active {
  display: block;
  animation: wpconvert-step-fade-in 0.25s ease;
}
@keyframes wpconvert-step-fade-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.wpconvert-step-progress-fill {
  transition: width 0.4s ease-out;
}
/* Signature canvas */
canvas[data-wpc-sig-init] {
  width: 100%;
  min-height: 150px;
  border: 2px solid var(--border, #e5e7eb);
  border-radius: 1rem;
  background: #fff;
  cursor: crosshair;
  touch-action: none;
}

/* EC-CALC-001: Interactive calculator CSS */

/* EC-CALC-001: Interactive calculator */
[data-wpc-calc] input[type='range'] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
[data-wpc-calc] input[type='range']:focus {
  outline: none;
}
[data-wpc-calc] [data-wpc-calc-toggle].wpc-calc-toggle-active {
  opacity: 1;
}
[data-wpc-calc] [data-wpc-calc-toggle]:not(.wpc-calc-toggle-active) {
  opacity: 0.6;
}

/* CRITICAL FIX: Ensure gradient overlays respect their default hidden state */
/* NOTE: The main fix is in cleanHtmlContent() which corrects captured hover states */
/* These CSS rules are a FALLBACK to ensure overlays stay hidden if any slip through */

/* Keep gradient overlays hidden - they're decorative hover effects */
.group [class*='absolute'][class*='inset-0'][class*='bg-gradient'].opacity-0 {
  opacity: 0 !important;
}

/* Keep bottom accent bars hidden by default */
.group [class*='absolute'][class*='bottom-0'][class*='bg-gradient'].scale-x-0 {
  transform: scaleX(0) !important;
}

/* Reset WordPress default margins that break spacing */
.entry-content > *:first-child,
.site-content > *:first-child {
  margin-top: 0 !important;
}

/* EC-DARK-001: In dark-themed sites (html.dark), containers with explicit bg-white
   backgrounds need dark text. The .dark scope sets --foreground to a light color,
   making text invisible on white cards. Reset to :root-scope (light) variable values. */
.dark .bg-white,
.dark [class*='bg-white'] {
  --foreground: 222.2 84% 4.9%;
  --muted-foreground: 215.4 16.3% 46.9%;
  color: hsl(222.2 84% 4.9%);
}
.dark .bg-white .text-foreground,
.dark [class*='bg-white'] .text-foreground,
.dark .bg-white [class*='text-foreground'],
.dark [class*='bg-white'] [class*='text-foreground'] {
  color: hsl(222.2 84% 4.9%);
}

/* Navigation Menu Styling - Universal for all dropdown patterns */
/* Reset ALL menu items */
.menu-item,
li.menu-item,
li.menu-item-type-post_type,
li.menu-item-type-custom,
li.menu-item-object-page,
li.menu-item-has-children {
  position: relative;
  list-style: none !important;
  margin: 0;
}

/* CRITICAL: Top-level menu MUST be horizontal - Maximum specificity */
/* NOTE: nav ul#wpconvert-primary-ul is NOT included here to avoid conflicting with .main-nav styling */
/* EC-NAV-095: Do NOT set gap here. A fixed gap with !important (previously 0.25rem, briefly 2rem) overrides
   menus.json ulClasses / Tailwind (e.g. gap-8) and breaks diverse nav densities. Spacing comes from ulClasses. */
header ul#wpconvert-primary-ul,
#wpconvert-primary-ul,
#wpconvert-primary-ul.menu,
ul#wpconvert-primary-ul.menu,
ul.menu:not(.submenu):not(.sub-menu) {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

/* CRITICAL: Preserve original .main-nav styling for static sites - MUST come AFTER generic rules */
/* MAXIMUM specificity with header prefix ensures this overrides ALL other rules */
header nav.main-nav ul#wpconvert-primary-ul,
header .main-nav ul#wpconvert-primary-ul,
nav.main-nav ul#wpconvert-primary-ul,
.main-nav #wpconvert-primary-ul,
.main-nav ul#wpconvert-primary-ul {
  /* Inherit the original .main-nav ul styles */
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

/* Preserve original .main-nav link styling */
header nav.main-nav ul#wpconvert-primary-ul a,
header .main-nav ul#wpconvert-primary-ul a,
nav.main-nav ul#wpconvert-primary-ul a,
.main-nav #wpconvert-primary-ul a,
.main-nav ul#wpconvert-primary-ul a {
  text-decoration: none;
  font-weight: 500;
}

/* CRITICAL: Top-level items MUST be inline - Maximum specificity for ALL WordPress classes */
/* NOTE: nav ul#wpconvert-primary-ul > li is NOT included to avoid conflicting with .main-nav */
header ul#wpconvert-primary-ul > li,
#wpconvert-primary-ul > li,
#wpconvert-primary-ul > li.menu-item,
#wpconvert-primary-ul > li.menu-item-type-post_type,
#wpconvert-primary-ul > li.menu-item-type-custom,
#wpconvert-primary-ul > li.menu-item-object-page,
#wpconvert-primary-ul > li.menu-item-object-custom,
#wpconvert-primary-ul > li.menu-item-has-children,
#wpconvert-primary-ul > li.current-menu-item,
#wpconvert-primary-ul > li.current_page_item,
#wpconvert-primary-ul > li.current-menu-ancestor,
#wpconvert-primary-ul.menu > li,
ul.menu:not(.submenu):not(.sub-menu) > li,
body #wpconvert-primary-ul > li {
  display: inline-block !important;
  position: relative !important;
  flex-shrink: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  vertical-align: middle !important;
  float: none !important;
  width: auto !important;
  clear: none !important;
}

/* Top-level links maintain their button appearance */
#wpconvert-primary-ul > .menu-item > a {
  /* Keep original classes for styling */
}

/* Hide submenus by default with high z-index - CRITICAL for all sites */
.menu-item.menu-item-has-children > .submenu,
.menu-item.menu-item-has-children > .sub-menu,
.menu-item-has-children > ul,
li.menu-item-has-children > ul {
  display: none !important; /* Important to override inline-flex and other display classes */
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  min-width: 200px !important;
  max-width: 500px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  z-index: 9999 !important; /* Higher than content */
  padding: 0.5rem 0 !important;
  list-style: none !important;
  margin: 0 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.375rem !important;
}

/* Show on hover/focus - Maximum specificity to override everything */
.menu-item.menu-item-has-children:hover > .submenu,
.menu-item.menu-item-has-children:hover > .sub-menu,
.menu-item.menu-item-has-children:hover > ul,
.menu-item.menu-item-has-children:focus-within > .submenu,
.menu-item.menu-item-has-children:focus-within > .sub-menu,
.menu-item.menu-item-has-children:focus-within > ul,
li.menu-item-has-children:hover > ul,
li.menu-item-has-children:focus-within > ul {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force submenu items to display as block - Override ALL WordPress and utility classes */
.submenu li,
.submenu .menu-item,
.submenu .menu-item-type-post_type,
.submenu .menu-item-type-custom,
.submenu .menu-item-object-page,
.submenu .menu-item-object-custom,
.submenu .current-menu-item,
.submenu .current_page_item,
ul.sub-menu li,
ul.sub-menu .menu-item,
body .submenu li {
  display: block !important;
  width: 100% !important;
  position: relative !important;
  flex-direction: column !important;
  list-style: none !important;
  float: none !important;
  clear: both !important;
}

.submenu .menu-item a,
.submenu a,
ul.sub-menu a {
  display: block !important;
  width: 100% !important;
  padding: 0.5rem 1rem !important;
  white-space: nowrap !important;
  text-align: left !important;
}

/* Override ANY utility classes that could break submenu layout */
.submenu .menu-item.inline-flex,
.submenu .menu-item.flex,
.submenu .menu-item.grid,
.submenu li.inline-flex,
.submenu li.flex,
.submenu li.grid,
.submenu .inline-flex,
.submenu .flex,
.submenu .grid {
  display: block !important;
  flex-direction: column !important;
}

.submenu .menu-item a.inline-flex,
.submenu .menu-item a.flex,
.submenu .menu-item a.grid,
.submenu a.inline-flex,
.submenu a.flex,
.submenu a.grid {
  display: block !important;
}

/* Ensure submenu container is vertical */
.submenu,
ul.sub-menu {
  flex-direction: column !important;
  display: block !important;
}

/* FLAT NAV ACTIVE STATE - For React/Vite sites converted to wp_nav_menu() */
/* EC-NAV-010: Dynamic current page highlighting */
/* The .wpconvert-active-link class is added by WPConvert_Flat_Menu_Walker to current page links */
.wpconvert-active-link {
  /* Default active styling - will be enhanced by extracted classes if available */
  font-weight: 600;
}

/* EC-NAV-010: When active link has text-primary class, override any text-foreground from base */
/* This ensures the active item shows the highlighted color (text-primary = green/brand color) */
a.wpconvert-active-link.text-primary,
.current-menu-item > a.text-primary,
.current_page_item > a.text-primary {
  color: hsl(var(--primary)) !important;
}

/* EC-NAV-010: Ensure inactive items don't get active color */
/* Links WITHOUT wpconvert-active-link should use text-foreground */
nav a.text-foreground:not(.wpconvert-active-link):not(.text-primary) {
  color: hsl(var(--foreground)) !important;
}

/* Also style current-menu-item for flat navs */
.current-menu-item > a,
.current_page_item > a,
a.current-menu-item,
a.wpconvert-active-link {
  /* The actual active styling comes from extracted activeLinkClasses */
  /* These are fallback styles if extraction doesn't provide specific classes */
}

/* Flat nav submenu styling */
.wpconvert-flat-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  padding: 0.5rem 0;
  display: none;
  z-index: 9999;
}

.wpconvert-flat-submenu a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* EC-NAV-140: Large flat dropdowns flow into two columns (mega-style) without extra walker markup */
.wpconvert-flat-submenu--mega-cols-2 {
  min-width: min(640px, 92vw);
  column-count: 2;
  column-gap: 2.5rem;
  padding: 0.75rem 1.25rem !important;
}
.wpconvert-flat-submenu--mega-cols-2 > a {
  white-space: normal !important;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
/* Show flat submenu when parent <li> hovers (wp_nav_menu wraps items in li.menu-item-has-children) */
li.menu-item-has-children:hover > .wpconvert-flat-submenu,
li.menu-item-has-children:focus-within > .wpconvert-flat-submenu {
  display: block !important;
}

/* Hide Radix UI viewport containers and similar dropdown containers - Universal */
[data-radix-navigation-menu-viewport],
[class*='viewport'][data-state='open'],
[class*='popover'][data-state='open'],
.radix-navigation-menu-viewport,
nav > div[class*='absolute'][class*='top-full'] {
  display: none !important;
  visibility: hidden !important;
}

/* EC-DIALOG-001: Hide Radix Sheet/Dialog overlays and panels that survive into converted themes */
/* These are interactive React components captured in open state during snapshot */
[role='dialog'][class*='fixed'],
[data-radix-dialog-content][class*='fixed'],
div[data-state='open'][class*='fixed'][class*='inset-0'][class*='bg-black'],
div[data-state='open'][class*='fixed'][class*='inset-0'][class*='backdrop'] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .menu-item.menu-item-has-children > .submenu {
    position: static;
    box-shadow: none;
  }
}

/* CRITICAL: Ensure header and navigation are above hero/content sections */
/* Only apply relative positioning if nav is NOT sticky/fixed */
/* Exclude #wpconvert-mobile-nav — it must stay position:fixed as an overlay */
header:not([class*='sticky']):not([class*='fixed']),
.site-header:not([class*='sticky']):not([class*='fixed']),
nav:not([class*='sticky']):not([class*='fixed']):not(#wpconvert-mobile-nav),
[role='banner']:not([class*='sticky']):not([class*='fixed']),
[role='navigation']:not([class*='sticky']):not([class*='fixed']):not(
    #wpconvert-mobile-nav
  ) {
  position: relative !important;
  z-index: 1000 !important;
}

/* Preserve sticky/fixed positioning for navs that have it */
/* CRITICAL: Ensure sticky/fixed actually works - add explicit CSS for common patterns */
nav[class*='sticky'],
nav[class*='fixed'],
header nav[class*='sticky'],
header nav[class*='fixed'],
header[class*='sticky'],
header[class*='fixed'],
.site-header[class*='sticky'],
.site-header[class*='fixed'] {
  z-index: 1000 !important; /* Keep z-index for visibility */
}

/* Explicit sticky positioning support - ensures it works even without Tailwind CSS loaded */
/* Only apply if sticky class is present and no explicit position override */
nav.sticky,
nav[class*='sticky']:not([style*='position']),
header nav.sticky,
header nav[class*='sticky']:not([style*='position']),
header.sticky,
header[class*='sticky']:not([style*='position']) {
  position: sticky !important;
}

/* Explicit fixed positioning support - ensures it works even without Tailwind CSS loaded */
nav.fixed,
nav[class*='fixed']:not([style*='position']),
header nav.fixed,
header nav[class*='fixed']:not([style*='position']),
header.fixed,
header[class*='fixed']:not([style*='position']) {
  position: fixed !important;
}

/* Common Tailwind patterns: sticky top-0, fixed top-0 */
nav[class*='sticky'][class*='top-0'],
nav[class*='fixed'][class*='top-0'],
header nav[class*='sticky'][class*='top-0'],
header nav[class*='fixed'][class*='top-0'],
header[class*='sticky'][class*='top-0'],
header[class*='fixed'][class*='top-0'] {
  top: 0 !important;
}

/* Fixed navs typically need full width */
nav[class*='fixed'][class*='w-full'],
nav[class*='fixed'][class*='top-0'],
header nav[class*='fixed'][class*='w-full'],
header nav[class*='fixed'][class*='top-0'],
header[class*='fixed'][class*='w-full'],
header[class*='fixed'][class*='top-0'] {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* Ensure hero and main content respect header z-index */
section[class*='hero'],
.hero,
main,
.site-main {
  position: relative;
  z-index: 1;
}

/* Theme-specific overrides */
/* Only apply relative if not sticky/fixed */
.site-header:not([class*='sticky']):not([class*='fixed']) {
  position: relative;
}

.site-main {
  margin-top: 0;
  padding-top: 0;
  min-height: 60vh;
}

/* Remove gap between fixed navbar and first content (white band under header).
 * Use :first-of-type (not :first-child): WP templates often have a whitespace text node
 * between <div id="primary"> and <section>, so section is never :first-child and rules
 * would silently fail (EC-NAV-086 follow-up). */
.site-main > section:first-of-type,
.site-main > div:first-of-type > section:first-of-type {
  margin-top: 0;
}

/* EC-NAV-086: Fixed nav + full-viewport hero (Tailwind min-h-screen) — React/Vite SPAs
 * stack the hero at document top with fixed nav overlaid; body/main background shows through
 * any empty band under the bar. Pull the first min-h-screen hero up by the header bar height
 * (--wpconvert-header-bar-height from header.php EC-NAV-100; fallback 4rem) so background layers
 * align with the original SPA.
 * Only on front-page template (body.front-page); skip sections with explicit pt-* / mt-* utilities.
 * :first-of-type required: newline/whitespace between #primary and hero <section> breaks :first-child. */
body.front-page
  .site-main
  #primary
  > section.min-h-screen:first-of-type:not([class*='pt-']):not([class*='mt-']),
body.front-page
  .site-main
  > div:first-of-type
  > section.min-h-screen:first-of-type:not([class*='pt-']):not([class*='mt-']) {
  /* Logged out: --wp-admin--admin-bar--height is unset → 0px. Logged in: WP sets 32px / 46px (782px). */
  margin-top: calc(
    -1 * var(--wpconvert-header-bar-height, 4rem) -
      var(--wp-admin--admin-bar--height, 0px)
  );
}

/* EC-NAV-089: Admin bar is fixed at top:0; in-flow content gets html { margin-top } but fixed nav does not,
 * so the site navbar sits under #wpadminbar. Offset primary fixed nav; exclude full-screen mobile drawer. */
body.admin-bar nav.fixed.top-0:not(#wpconvert-mobile-nav),
body.admin-bar nav.fixed[class*='top-0']:not(#wpconvert-mobile-nav) {
  top: var(--wp-admin--admin-bar--height, 32px) !important;
}

/* EC-NAV-087: Merged / blog / legacy CSS often sets body { padding-top: 5rem+ } as “clearance”
 * for fixed headers. With a fixed overlay nav, that padding does NOT move the bar — it only
 * pushes <main> down while body background shows through → white/cream band (~nav height) under
 * the bar. Stay Boost ships this in bundled style.css; EC-NAV-086 margin alone cannot cancel it. */
body.front-page {
  padding-top: 0 !important;
}

.site-footer {
  margin-top: auto;
}

/* EC-TW4-001: WordPress default style overrides */

body {
  line-height: 1.6;
}
body.wp-admin {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
}
/* EC-BTN-104: :where() = 0 specificity so Tailwind text-* utilities always win over these resets.
   Plain "a:hover { color: inherit }" can outrank .text-white on links (0,2,0 vs 0,1,0) and wash out hero CTAs. */
:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a:hover) {
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
:where(button, .btn) {
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
input,
textarea,
select {
  font-family: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

/* Grid Layout & Sidebar Preservation - Ensures Bootstrap and other grid systems work properly */
.grid-layout-container {
  width: 100%;
  max-width: 100%;
}

/* Preserve Bootstrap row structure */
.grid-layout-container .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Ensure Bootstrap columns work */
.grid-layout-container [class*='col-'] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Bootstrap column widths - responsive */
@media (min-width: 768px) {
  .grid-layout-container .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-layout-container .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .grid-layout-container .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-layout-container .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .grid-layout-container .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .grid-layout-container .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Mobile stacking for sidebars */
@media (max-width: 767px) {
  .grid-layout-container [class*='col-'] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Sidebar styling */
.grid-layout-container aside,
.grid-layout-container [class*='sidebar'] {
  padding: 20px;
}

/* CRITICAL: Disable popups marked by WPConvert - Universal for ALL popup libraries */
/* This targets ONLY popups we've marked, regardless of the library used */
/* Users can re-enable by overriding this CSS in Customizer → Additional CSS */
[data-wpconvert-popup-disabled='true'] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -9999 !important;
  position: absolute !important;
  left: -99999px !important;
  transform: scale(0) !important;
}

/* Also hide child elements of disabled popups (for nested structures) */
[data-wpconvert-popup-disabled='true'] * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Disable popup overlay backgrounds (universal) */
[data-wpconvert-popup-disabled='true'].overlay,
[data-wpconvert-popup-disabled='true'][class*='overlay'],
[data-wpconvert-popup-disabled='true'][class*='backdrop'],
[data-wpconvert-popup-disabled='true'][class*='bg'] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* CRITICAL: Tailwind Font Override - ensure custom fonts take precedence over Tailwind CDN */
/* Tailwind CDN generates CSS dynamically that can override static CSS, so we use !important */
/* No custom font classes detected */

/* EC-STATIC-013: Site CSS sets position:fixed on nav — override WPConvert base relative reset.
   Selector mirrors the base rule's :not() guards so specificity (1,2,1) matches; source-order wins. */
nav:not([class*='sticky']):not([class*='fixed']):not(#wpconvert-mobile-nav) {
  position: fixed !important;
}
