/* ==========================================================================
   HOSSAM AGRI & SOLUTIONS — Official Brand Identity & Design System
   Colors Extracted from Official Logo:
   - Deep Forest Emerald: #1b4d3e / #123328
   - Warm Antique Gold / Sand Bronze: #c59b5d / #b8860b
   - Soft Cream / Warm Alabaster: #f9f4ec / #ede4d8
   - Dark Forest Earth: #0a1c15
   Rules: NO rounded buttons (0px radius), rectangular 3D box-shadows,
          continuous full-page background image of real farm fields & machinery,
          official logo palette integration throughout.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@500;700;800;900&family=Plus+Jakarta+Sans:wght@400;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

/* ── Official Design System Tokens ───────────────────────────────────── */
:root {
  --bg-dark:          #0a1c15;
  --bg-card:          rgba(17, 43, 34, 0.93);
  --bg-card-alt:      rgba(24, 56, 45, 0.95);
  --bg-input:         #07150f;

  --border-emerald:   #255e4c;
  --border-gold:      #c59b5d;
  --border-active:    #34a883;

  --emerald-primary:  #1b4d3e;
  --emerald-bright:   #2bb388;
  --emerald-glow:     rgba(43, 179, 136, 0.35);
  --moss-dark:        #123328;
  
  --gold-primary:     #c59b5d;
  --gold-bright:      #e5ba73;
  --gold-glow:        rgba(197, 155, 93, 0.35);
  
  --cream-soft:       #f9f4ec;
  --cream-muted:      #ede4d8;
  
  --alert-red:        #ef4444;

  --txt-light:        #fdfbf7;
  --txt-mid:          #e2d8c5;
  --txt-muted:        #b5a894;
  --txt-dim:          #9ca3af;

  --font-en:          'Plus Jakarta Sans', system-ui, sans-serif;
  --font-ar:          'Cairo', system-ui, sans-serif;
  --font-mono:        'JetBrains Mono', monospace;

  --ease-tactical:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Global Reset & Continuous Full-Page Background ──────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important; /* STRICT REQUIREMENT: NO ROUNDED BUTTONS OR CARDS */
}

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

body {
  font-family: var(--font-en);
  color: var(--txt-light);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  /* CONTINUOUS SCROLLABLE BACKGROUND IMAGE OF REAL AGRICULTURAL FIELD & MACHINERY */
  background: 
    linear-gradient(180deg, rgba(10, 28, 21, 0.88) 0%, rgba(18, 51, 40, 0.92) 50%, rgba(7, 20, 15, 0.96) 100%),
    url('../img/real-machinery-bg.png') center top / cover no-repeat fixed;
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a1c15;
  border-left: 1px solid var(--border-emerald);
}
::-webkit-scrollbar-thumb {
  background: var(--emerald-primary);
  border: 1px solid var(--gold-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Rectangular Card Container ──────────────────────────────────────── */
.agri-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--border-emerald);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  transition: transform 0.25s var(--ease-tactical), border-color 0.25s, box-shadow 0.25s;
}

.agri-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ══════════════════════════════════════════════════════════════════════
   NAVIGATION & OFFICIAL LOGO DISPLAY
   ══════════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 28, 21, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold-primary);
  padding: 0.75rem 0;
  box-shadow: 0 4px 25px rgba(0,0,0,0.7);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-en {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--txt-light);
  text-transform: uppercase;
}

.brand-ar {
  font-family: var(--font-ar);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-primary);
  direction: rtl;
}

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--emerald-primary);
  border: 2px solid var(--gold-primary);
  color: var(--txt-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-mono);
  box-shadow: 0 4px 0 #000;
  transition: all 0.2s var(--ease-tactical);
}

.nav-contact-btn:hover {
  background: var(--gold-primary);
  color: #0a1c15;
  border-color: var(--cream-soft);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* ══════════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BANNER
   ══════════════════════════════════════════════════════════════════════ */
.announcement {
  background: linear-gradient(90deg, rgba(27, 77, 62, 0.95) 0%, rgba(18, 51, 40, 0.95) 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.65rem 0;
  text-align: center;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 600;
}

.launch-tag {
  background: var(--gold-primary);
  color: #0a1c15;
  padding: 0.15rem 0.65rem;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 0 #000;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO SECTION (STREAMLINED FULL-WIDTH)
   ══════════════════════════════════════════════════════════════════════ */
.hero {
  padding: 3.5rem 0 2rem;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald-primary);
  border: 1px solid var(--gold-primary);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  box-shadow: 0 4px 0 #000;
}

.bi-heading {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bi-heading .en {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bi-heading .ar {
  font-family: var(--font-ar);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--txt-mid);
  direction: rtl;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .bi-heading .en { font-size: 2.1rem; }
  .bi-heading .ar { font-size: 1.3rem; }
}

.text-gold {
  color: var(--gold-primary);
}

.bi-para {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bi-para .en {
  font-size: 1.05rem;
  color: var(--txt-mid);
  line-height: 1.7;
}

.bi-para .ar {
  font-family: var(--font-ar);
  font-size: 0.95rem;
  color: var(--txt-muted);
  direction: rtl;
  line-height: 1.7;
}

.pills {
  display: inline-flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.agri-pill {
  background: var(--bg-input);
  border: 1px solid var(--border-emerald);
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--txt-mid);
  font-family: var(--font-mono);
}

.email-card {
  margin: 0.5rem auto 0;
  padding: 1rem 1.75rem;
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 6px 0 #000;
}

.email-icon-box {
  width: 44px;
  height: 44px;
  background: var(--gold-primary);
  color: #0a1c15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
}

.email-info {
  text-align: left;
}

.email-info h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.email-info .ar-sub {
  font-family: var(--font-ar);
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-left: 0.5rem;
}

.email-info a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.email-info a:hover {
  color: var(--emerald-bright);
}

/* ══════════════════════════════════════════════════════════════════════
   FORM SECTION
   ══════════════════════════════════════════════════════════════════════ */
.form-section {
  padding: 1.5rem 0 4rem;
}

.form-header {
  text-align: center;
  max-width: 900px; /* INCREASED MAX-WIDTH TO PREVENT "US" FROM SPLITTING ONTO A NEW LINE */
  margin: 0 auto 2rem;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
  font-family: var(--font-mono);
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  text-wrap: balance; /* EVEN BALANCE TO PREVENT SINGLE ORPHANED WORDS */
  white-space: normal;
}

.section-title-ar {
  font-family: var(--font-ar);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--txt-mid);
  direction: rtl;
}

.form-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem;
}

@media (max-width: 600px) {
  .form-wrapper {
    padding: 1.5rem 1rem;
  }
}

.security-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-input);
  border: 1px solid var(--border-gold);
  padding: 0.9rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shield-badge {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.privacy-text {
  color: var(--txt-mid);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── 3 BOXES PER ROW (STRICT 3-COLUMN GRID) ── */
.checkbox-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  width: 100%;
}

@media (max-width: 520px) {
  .checkbox-grid-3col {
    grid-template-columns: 1fr;
  }
}

.interest-box-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0.9rem;
  background: var(--bg-input);
  border: 2px solid var(--border-emerald);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5), 0 4px 0 #000;
  cursor: pointer;
  transition: all 0.2s var(--ease-tactical);
  user-select: none;
  min-height: 105px;
}

.interest-box-row:hover {
  border-color: var(--gold-primary);
  background: var(--moss-dark);
  box-shadow: 0 0 12px var(--gold-glow), 0 4px 0 #000;
}

.interest-box-row.selected {
  border-color: var(--gold-primary);
  background: var(--moss-dark);
  box-shadow: 0 0 15px var(--gold-glow), 0 4px 0 #000;
}

.interest-box-row.full-width-span {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 0.85rem 1rem;
}

.interest-box-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--gold-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.interest-box-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.4rem;
  line-height: 1.35;
}

.icon-emoji {
  font-size: 1.1rem;
}

.text-en {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--txt-light);
}

.text-ar {
  font-family: var(--font-ar);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--txt-mid);
  width: 100%;
  margin-top: 0.2rem;
}

.form-section-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-family: var(--font-mono);
  border-bottom: 2px solid var(--border-emerald);
  padding-bottom: 0.5rem;
}

.form-section-label .ar-sub {
  font-family: var(--font-ar);
  font-size: 0.88rem;
  color: var(--txt-muted);
  margin-left: 0.5rem;
  text-transform: none;
}

/* ── FORM INPUTS & GRID ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.full-width {
  grid-column: 1 / -1;
}

.hidden {
  display: none !important;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--txt-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-label .ar-sub {
  font-family: var(--font-ar);
  font-size: 0.78rem;
  color: var(--txt-muted);
  margin-left: 0.5rem;
  text-transform: none;
}

.required-star {
  color: var(--alert-red);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-input);
  border: 2px solid var(--border-emerald);
  color: var(--txt-light);
  font-family: var(--font-en);
  font-size: 0.95rem;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow), inset 0 2px 4px rgba(0,0,0,0.5);
}

.form-select option {
  background: #0a1c15;
  color: #fff;
}

.phone-combo {
  display: flex;
  gap: 0.5rem;
}

.phone-combo select {
  width: 150px;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .phone-combo {
    flex-direction: column;
  }
  .phone-combo select {
    width: 100%;
  }
}

/* ── FULL-WIDTH AREAS OF INTEREST SELECTOR ── */
.full-interest-selector {
  width: 100%;
  margin-top: 0.5rem;
}

.checkbox-list-full {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.checkbox-row-full {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-input);
  border: 2px solid var(--border-emerald);
  cursor: pointer;
  box-shadow: 0 4px 0 #000;
  transition: all 0.2s var(--ease-tactical);
  width: 100%;
}

.checkbox-row-full:hover {
  border-color: var(--gold-primary);
  background: var(--moss-dark);
}

.checkbox-row-full input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--gold-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.cb-label-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--txt-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cb-label-text .ar-sub {
  font-family: var(--font-ar);
  font-size: 0.85rem;
  color: var(--txt-muted);
  direction: rtl;
}

/* ── DYNAMIC EXPANDABLE SUB-SECTIONS ── */
.sub-section {
  display: none;
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
  padding: 1.25rem;
  background: var(--moss-dark);
  border: 2px solid var(--gold-primary);
  border-top: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  animation: slideDown 0.3s var(--ease-tactical);
}

.sub-section.visible {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Crop Search & Selector */
.crop-search-wrap {
  position: relative;
  margin-bottom: 0.85rem;
}

.crop-search {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  background: var(--bg-input);
  border: 2px solid var(--border-emerald);
  color: var(--txt-light);
  font-family: var(--font-en);
  font-size: 0.92rem;
  outline: none;
}

.crop-search:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.crop-search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1rem;
}

.crop-category-group {
  margin-bottom: 1rem;
}

.crop-cat-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  border-bottom: 1px dashed var(--border-emerald);
  padding-bottom: 0.25rem;
}

.crop-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.crop-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border-emerald);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--txt-mid);
  cursor: pointer;
  transition: all 0.15s;
}

.crop-chip:hover {
  background: var(--emerald-primary);
  border-color: var(--gold-primary);
  color: var(--gold-bright);
}

.crop-chip.selected {
  background: var(--gold-primary);
  color: #0a1c15;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.crop-ar-hint {
  font-family: var(--font-ar);
  font-size: 0.75rem;
  opacity: 0.85;
}

.selected-crops {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--gold-primary);
  color: #0a1c15;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 2px 0 #000;
}

.selected-tag .x {
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
}

.selected-tag .x:hover {
  color: var(--alert-red);
}

/* ══════════════════════════════════════════════════════════════════════
   INTERACTIVE TACTICAL SUBMIT BUTTON WITH SHADOWS & PRESS EFFECT
   ══════════════════════════════════════════════════════════════════════ */
.btn-submit {
  width: 100%;
  padding: 1.25rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, #c59b5d 0%, #a67c3e 100%);
  color: #0a1c15;
  border: 3px solid #e5ba73;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  box-shadow: 
    0 8px 0 #4d3816,
    0 15px 30px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.15s var(--ease-tactical);
  position: relative;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #e5ba73 0%, #c59b5d 100%);
  box-shadow: 
    0 10px 0 #4d3816,
    0 0 25px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(6px);
  box-shadow: 
    0 2px 0 #4d3816,
    0 5px 10px rgba(0, 0, 0, 0.6);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(10, 28, 21, 0.3);
  border-top-color: #0a1c15;
  animation: spin 0.6s linear infinite;
}

.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Alerts */
.alert {
  padding: 1.15rem;
  margin-top: 1.5rem;
  display: none;
  font-size: 0.95rem;
  font-family: var(--font-mono);
  box-shadow: 0 6px 0 #000;
  animation: fadeUp 0.35s var(--ease-tactical);
}

.alert.show { display: block; }

.alert-ok {
  background: var(--moss-dark);
  border: 2px solid var(--gold-primary);
  color: var(--txt-light);
}

.alert-err {
  background: #2a1212;
  border: 2px solid var(--alert-red);
  color: #fca5a5;
}

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

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 3px solid var(--gold-primary);
  padding: 3rem 0 2rem;
  background: rgba(7, 20, 15, 0.96);
  color: var(--txt-mid);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--txt-muted);
}

.ft-title {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  font-family: var(--font-mono);
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ft-links a {
  color: var(--txt-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  border-top: 1px dashed var(--border-emerald);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
