/* ==========================================================================
   NET VERTEX HUB - THEME: DESERT GLASS
   Wind-shaped glass surfaces, terracotta warmth, sun-bleached cream,
   muted desert teal, and architectural horizontal typography.
   ========================================================================== */

:root {
  /* Palette */
  --bg-sand-deep: #140e0c;
  --bg-sand-dark: #1b1310;
  --bg-sand-surface: #251b17;
  --bg-sand-card: rgba(37, 27, 23, 0.72);
  --bg-glass-frosted: rgba(45, 33, 28, 0.65);
  --bg-glass-highlight: rgba(223, 139, 91, 0.08);

  --text-cream: #faf3ea;
  --text-cream-muted: #d8c7b5;
  --text-cream-dim: #a69584;

  --accent-terracotta: #c45d3e;
  --accent-terracotta-bright: #df6e4c;
  --accent-dusty-orange: #df8b5b;
  --accent-sand-gold: #e5b382;
  --accent-muted-teal: #3b7a77;
  --accent-teal-glow: #569b97;
  --accent-teal-dark: #1d3d3b;

  --border-glass: rgba(223, 139, 91, 0.22);
  --border-glass-subtle: rgba(242, 232, 219, 0.1);
  --border-glass-hover: rgba(223, 139, 91, 0.45);
  --border-teal: rgba(86, 155, 151, 0.3);

  --shadow-glass: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 1px 1px rgba(223, 139, 91, 0.15);
  --shadow-glow: 0 0 28px rgba(196, 93, 62, 0.25);
  --shadow-teal-glow: 0 0 28px rgba(59, 122, 119, 0.25);

  /* Typography */
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout */
  --container-max: 1200px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-warped: 24px 34px 20px 30px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-heat: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-sand-deep);
  color: var(--text-cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: 
    radial-gradient(circle at 15% 10%, rgba(196, 93, 62, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(59, 122, 119, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(223, 139, 91, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #18110e 0%, #130d0b 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.65;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-cream);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-cream-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent-sand-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-dusty-orange);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 860px;
}

/* Desert Glass Card & Surface Utilities */
.glass-panel {
  background: var(--bg-glass-frosted);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-warped);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 243, 234, 0.25), transparent);
}

.glass-panel:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(223, 139, 91, 0.2);
}

.glass-card-teal {
  background: rgba(29, 61, 59, 0.55);
  border-color: var(--border-teal);
}

.glass-card-teal:hover {
  border-color: rgba(86, 155, 151, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), var(--shadow-teal-glow);
}

/* Badge / Pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(223, 139, 91, 0.12);
  border: 1px solid rgba(223, 139, 91, 0.35);
  color: var(--accent-sand-gold);
}

.badge-teal {
  background: rgba(59, 122, 119, 0.2);
  border-color: rgba(86, 155, 151, 0.4);
  color: #7fd6d0;
}

/* Optical Buttons with Heatwave Distortion Effect */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-heat);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.6s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-terracotta) 0%, #a44528 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(196, 93, 62, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-terracotta-bright) 0%, var(--accent-terracotta) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 93, 62, 0.5), 0 0 15px rgba(223, 139, 91, 0.4);
}

.btn-secondary {
  background: rgba(45, 33, 28, 0.8);
  color: var(--text-cream);
  border-color: var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(65, 48, 40, 0.9);
  color: #ffffff;
  border-color: var(--accent-sand-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-teal {
  background: linear-gradient(135deg, var(--accent-muted-teal) 0%, var(--accent-teal-dark) 100%);
  color: #ffffff;
  border-color: rgba(86, 155, 151, 0.4);
}

.btn-teal:hover {
  background: linear-gradient(135deg, var(--accent-teal-glow) 0%, var(--accent-muted-teal) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 122, 119, 0.4);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 14, 12, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass-subtle);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-logo svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-logo:hover {
  color: var(--accent-sand-gold);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-desktop a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--accent-sand-gold);
}

.nav-desktop a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-terracotta);
  border-radius: 2px;
}

.nav-cta-btn {
  margin-left: 0.5rem;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glass);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  cursor: pointer;
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 14, 12, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 2rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-cream);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(242, 232, 219, 0.08);
}

.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--accent-dusty-orange);
}

/* Sections General */
section {
  padding: 5.5rem 0;
  position: relative;
}

.section-hero {
  padding: 6.5rem 0 5rem;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 720px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-cream-muted);
}

/* Hero Section Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.12;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--text-cream) 30%, var(--accent-sand-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-cream-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass-subtle);
}

.proof-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-cream-dim);
}

.proof-chip svg {
  color: var(--accent-dusty-orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-warped);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  border: 1px solid var(--border-glass);
}

.hero-visual-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.25rem;
  background: rgba(20, 14, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.hero-floating-badge h4 {
  font-size: 0.95rem;
  color: var(--text-cream);
  margin-bottom: 0.25rem;
}

.hero-floating-badge p {
  font-size: 0.85rem;
  color: var(--text-cream-dim);
  margin: 0;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
}

.service-card-image {
  height: 220px;
  margin: -1.75rem -1.75rem 1.5rem -1.75rem;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-header {
  margin-bottom: 1rem;
}

.service-card-title {
  margin-top: 0.6rem;
  font-size: 1.35rem;
}

.service-card-summary {
  font-size: 0.98rem;
  color: var(--text-cream-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-glass-subtle);
  border-bottom: 1px solid var(--border-glass-subtle);
  font-size: 0.88rem;
  color: var(--text-cream-dim);
}

.service-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.service-meta-item strong {
  color: var(--text-cream);
  min-width: 80px;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.service-price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-sand-gold);
}

/* Flagship Feature Box */
.flagship-box {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  background: linear-gradient(145deg, rgba(45, 33, 28, 0.85) 0%, rgba(29, 61, 59, 0.4) 100%);
  border: 1px solid rgba(223, 139, 91, 0.35);
}

.flagship-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.flagship-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.flagship-details h3 {
  font-size: 2rem;
  margin: 0.8rem 0 1.2rem;
}

.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-cream-muted);
}

.inclusions-list svg {
  color: var(--accent-sand-gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Method / Chart Lab Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.process-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(223, 139, 91, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-cream);
}

.process-card p {
  font-size: 0.95rem;
  color: var(--text-cream-muted);
}

/* Reviews / Testimonials */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #e5b382;
  margin-bottom: 1.25rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-cream-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-glass-subtle);
  padding-top: 1.25rem;
}

.review-author-info h4 {
  font-size: 1rem;
  color: var(--text-cream);
}

.review-author-info p {
  font-size: 0.85rem;
  color: var(--text-cream-dim);
  margin: 0;
}

.story-card {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.story-image {
  border-radius: var(--radius-warped);
  overflow: hidden;
  height: 240px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-outcome-badge {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: rgba(59, 122, 119, 0.2);
  border: 1px solid rgba(86, 155, 151, 0.35);
  border-radius: var(--radius-sm);
  color: #7fd6d0;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.25rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-terracotta-bright);
  background: linear-gradient(160deg, rgba(45, 33, 28, 0.9) 0%, rgba(196, 93, 62, 0.15) 100%);
  transform: translateY(-8px);
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-cream);
  margin: 0.8rem 0 0.25rem;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-cream-dim);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-cream-muted);
}

.pricing-features svg {
  color: var(--accent-sand-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Blog / Journal Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-cream-dim);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--text-cream-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem 2rem;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-cream);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-sand-gold);
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-glass-subtle);
  color: var(--text-cream-muted);
  font-size: 0.98rem;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-cream);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: rgba(20, 14, 12, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-sand-gold);
  box-shadow: 0 0 12px rgba(229, 179, 130, 0.25);
  background: rgba(30, 20, 16, 0.9);
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #e55353;
}

.form-error-msg {
  font-size: 0.82rem;
  color: #ff7878;
  display: none;
}

.form-error-msg.is-visible {
  display: block;
}

.form-feedback {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: none;
  font-size: 0.95rem;
}

.form-feedback.is-success {
  display: block;
  background: rgba(59, 122, 119, 0.25);
  border: 1px solid rgba(86, 155, 151, 0.5);
  color: #a8f0ea;
}

.form-feedback.is-error {
  display: block;
  background: rgba(196, 93, 62, 0.25);
  border: 1px solid rgba(223, 110, 76, 0.5);
  color: #ffd0c4;
}

/* Contact Details Card */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(223, 139, 91, 0.15);
  border: 1px solid rgba(223, 139, 91, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-sand-gold);
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 20px;
  height: 20px;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-cream);
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-cream-muted);
  margin: 0;
}

/* Legal / Policy Page Formatting */
.legal-content {
  padding: 3rem;
  background: var(--bg-glass-frosted);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 2.25rem 0 1rem;
  color: var(--text-cream);
  border-bottom: 1px solid var(--border-glass-subtle);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--accent-sand-gold);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 1.25rem;
  color: var(--text-cream-muted);
  font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.75rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Cookies Table */
.cookies-table-wrapper {
  overflow-x: auto;
  margin: 1.75rem 0;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}

.cookies-table th,
.cookies-table td {
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--border-glass-subtle);
}

.cookies-table th {
  background: rgba(223, 139, 91, 0.15);
  color: var(--text-cream);
  font-family: var(--font-display);
  font-weight: 700;
}

.cookies-table td {
  background: rgba(20, 14, 12, 0.4);
  color: var(--text-cream-muted);
}

/* Cookie Consent Banner Island */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 620px;
  margin: 0 auto;
  z-index: 9999;
  padding: 1.5rem 2rem;
  background: rgba(27, 19, 16, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-cream);
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--text-cream-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: rgba(14, 9, 8, 0.95);
  border-top: 1px solid var(--border-glass-subtle);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-cream-dim);
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-cream);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-cream-dim);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-sand-gold);
}

.footer-verbatim-block {
  font-size: 0.88rem;
  color: var(--text-cream-dim);
  line-height: 1.6;
}

.footer-verbatim-block strong {
  color: var(--text-cream);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(242, 232, 219, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-cream-dim);
}

/* Article / Post Detail */
.article-header {
  padding: 4rem 0 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.article-header h1 {
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}

.article-hero-image {
  max-width: 960px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass);
}

.article-hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-body {
  max-width: 780px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-cream-muted);
}

.article-body h2 {
  font-size: 1.75rem;
  color: var(--text-cream);
  margin: 2.5rem 0 1rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.75rem;
}

.article-body li {
  margin-bottom: 0.65rem;
}

.article-body strong {
  color: var(--text-cream);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid,
  .flagship-box,
  .story-card,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .nav-desktop,
  .nav-cta-btn {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .flagship-box {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  section {
    padding: 3.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services-grid,
  .pricing-grid,
  .blog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 1.5rem;
  }
}
