/* Root Variables */
:root {
  --navy: #1a3a52;
  --gold: #d4a574;
  --light-bg: #f9f8f6;
  --dark-text: #1a1a1a;
  --light-text: #555;
  --border: #e5e0d8;
  --focus-blue: #2563eb;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-text);
  background: white;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Georgia', 'Garamond', serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, var(--gold), rgba(212, 165, 116, 0.15));
  border-radius: 2px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--gold);
  outline: none;
}

/* Header & Navigation */
.header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 68px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #142a3d 0%, #1a3a52 45%, #2d5a7b 100%);
  color: white;
  padding: 8rem 1.5rem;
  text-align: center;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.35) 0%, rgba(212, 165, 116, 0) 70%);
  animation: heroFloat 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0) 70%);
  animation: heroFloat 11s ease-in-out infinite reverse;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(115deg, rgba(212, 165, 116, 0.08) 0px, rgba(212, 165, 116, 0.08) 1px, transparent 1px, transparent 90px);
  opacity: 0.6;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 25px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(212, 165, 116, 0.5);
  border-radius: 999px;
  margin-bottom: 1.75rem;
  background: rgba(212, 165, 116, 0.08);
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #e8e6e1;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb {
    animation: none;
  }
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: 2px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover,
.cta-button:focus {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  outline: none;
}

/* Why Us Section */
.why-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.why-orb-1 {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -140px;
  left: -120px;
  border-radius: 50%;
  filter: blur(40px);
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0) 70%);
  z-index: 0;
  animation: heroFloat 10s ease-in-out infinite;
}

.why-us > h2,
.why-grid {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  flex: 1 1 280px;
  max-width: 320px;
}

.why-card:nth-child(1) { animation: whyPop 0.6s ease-out 0.05s both; }
.why-card:nth-child(2) { animation: whyPop 0.6s ease-out 0.15s both; }
.why-card:nth-child(3) { animation: whyPop 0.6s ease-out 0.25s both; }
.why-card:nth-child(4) { animation: whyPop 0.6s ease-out 0.35s both; }
.why-card:nth-child(5) { animation: whyPop 0.6s ease-out 0.45s both; }

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

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.12);
}

.why-card:hover::before,
.why-card:focus-within::before {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.18), rgba(26, 58, 82, 0.08));
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.why-icon svg {
  width: 30px;
  height: 30px;
}

.why-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--light-text);
}

/* Services Section */
.services {
  max-width: none;
  margin: 0;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(212, 165, 116, 0.05) 0px, rgba(212, 165, 116, 0.05) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
  z-index: 0;
}

.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  animation: heroFloat 12s ease-in-out infinite;
}

.services-orb-1 {
  width: 380px;
  height: 380px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.22) 0%, rgba(212, 165, 116, 0) 70%);
}

.services-orb-2 {
  width: 320px;
  height: 320px;
  bottom: -150px;
  left: -90px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.14) 0%, rgba(212, 165, 116, 0) 70%);
  animation-delay: 2s;
}

.services h2,
.services-grid {
  position: relative;
  z-index: 1;
}

.services h2 {
  color: white;
}

.services > .services-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border-radius: 4px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 165, 116, 0.5);
}

.service-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(212, 165, 116, 0.12);
  color: var(--gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-text h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Approach Section */
.approach {
  background: var(--light-bg);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  right: -100px;
  border-radius: 50%;
  filter: blur(40px);
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, rgba(212, 165, 116, 0) 70%);
  z-index: 0;
}

.approach > h2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  position: relative;
  z-index: 1;
}

.timeline-bar {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: min-content;
  padding: 2rem 0;
}

.timeline-step {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(212, 165, 116, 0.15);
}

.timeline-label {
  text-align: center;
  max-width: 220px;
}

.timeline-label h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.timeline-label p {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 0;
  line-height: 1.5;
}

.timeline-connector {
  flex-grow: 1;
  height: 4px;
  background: var(--gold);
  margin: 0 1.5rem;
  margin-top: 2.5rem;
  min-width: 100px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* About Section */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.about-image {
  flex-shrink: 0;
  width: 280px;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 30px rgba(26, 58, 82, 0.15);
}

.about-text {
  flex: 1;
  min-width: 0;
}

.about-text h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--light-text);
}

/* Contact Section */
.contact {
  background: var(--navy);
  color: white;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.contact-orb-1 {
  width: 300px;
  height: 300px;
  top: -110px;
  left: -70px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25) 0%, rgba(212, 165, 116, 0) 70%);
}

.contact-orb-2 {
  width: 260px;
  height: 260px;
  bottom: -110px;
  right: -70px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, rgba(212, 165, 116, 0) 70%);
}

.contact h2 {
  color: white;
  position: relative;
  z-index: 1;
}

.contact-intro {
  text-align: center;
  font-size: 1.05rem;
  color: #d8d6d2;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: white;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.submit-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover,
.submit-button:focus {
  background: #e6b88e;
  transform: translateY(-2px);
  outline: none;
}

.submit-button:active {
  transform: translateY(0);
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.5rem;
}

.form-status.success {
  color: #86efac;
}

.form-status.error {
  color: #fca5a5;
}

/* Deal Room */
.hidden {
  display: none !important;
}

.deals-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  min-height: 60vh;
}

.lock-screen {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}

.lock-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.lock-card h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.lock-subtitle {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.auth-form {
  text-align: left;
  margin-bottom: 1.5rem;
}

.auth-form .form-group label {
  color: var(--dark-text);
}

.auth-form .form-group input {
  border: 1px solid var(--border);
  background: white;
  color: var(--dark-text);
}

.auth-form .form-group input::placeholder {
  color: #999;
}

.auth-form .form-group input:focus {
  border-color: var(--gold);
  background: white;
}

.link-button {
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.5rem;
  min-height: 44px;
}

.link-button:hover,
.link-button:focus {
  color: var(--gold);
  outline: none;
}

.deals-app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.deals-app-header h1 {
  margin-bottom: 0.25rem;
  text-align: left;
}

.deals-app-subtitle {
  margin-bottom: 0;
}

.secondary-button {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 44px;
}

.secondary-button:hover,
.secondary-button:focus {
  background: var(--navy);
  color: white;
  outline: none;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.admin-tab-link {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--light-text);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  min-height: 44px;
}

.admin-tab-link:hover,
.admin-tab-link:focus {
  color: var(--navy);
  outline: none;
}

.admin-tab-link.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.deals-select-group select,
#dealsSelect {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  color: var(--dark-text);
  font-family: inherit;
  font-size: 1rem;
}

#dealsSelect:focus {
  outline: none;
  border-color: var(--gold);
}

.deal-detail-view {
  margin-top: 1.5rem;
}

.panel {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.panel h2 {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.panel-hint {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.paste-panel textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  resize: vertical;
}

.deal-form .form-group label,
.password-form .form-group label {
  color: var(--dark-text);
}

.deal-form .form-group input,
.deal-form .form-group select,
.deal-form .form-group textarea,
.password-form .form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  color: var(--dark-text);
  font-family: inherit;
  font-size: 1rem;
}

.deal-form .form-group input:focus,
.deal-form .form-group select:focus,
.deal-form .form-group textarea:focus,
.password-form .form-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.password-form .form-group input::placeholder {
  color: var(--light-text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-actions .submit-button {
  width: auto;
  flex: 1;
  min-width: 160px;
}

.deals-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.deals-empty {
  color: var(--light-text);
  margin-bottom: 0;
}

.deal-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.deal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.deal-card-header h3 {
  margin-bottom: 0;
}

.deal-status {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  background: var(--border);
  color: var(--navy);
  white-space: nowrap;
}

.deal-status-active {
  background: rgba(134, 239, 172, 0.35);
  color: #166534;
}

.deal-status-under-review {
  background: rgba(212, 165, 116, 0.3);
  color: #7a5322;
}

.deal-status-closed {
  background: rgba(197, 197, 197, 0.4);
  color: #444;
}

.deal-meta {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 0.75rem;
}

.deal-description {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.deal-contact {
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 0.75rem;
}

.deal-card-actions {
  display: flex;
  gap: 1rem;
}

.access-log-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 320px;
  overflow-y: auto;
}

.access-log-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.9rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
}

.access-log-name {
  font-weight: 600;
  color: var(--navy);
}

.access-log-time {
  color: var(--light-text);
  font-size: 0.8rem;
  white-space: nowrap;
}

.viewer-notice {
  background: rgba(212, 165, 116, 0.15);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.access-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.access-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  color: var(--dark-text);
  font-family: inherit;
  font-size: 1rem;
}

.access-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.access-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.access-row:last-child {
  border-bottom: none;
}

.footer-link {
  font-size: 0.85rem;
  color: #9a9690;
  text-decoration: underline;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--gold);
}

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

  .why-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .deals-app-header {
    flex-direction: column;
  }

  .deal-card-header {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  background: #0f2438;
  color: #d8d6d2;
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-content p {
  font-size: 0.95rem;
  color: #d8d6d2;
  margin-bottom: 0.5rem;
}

.footer-content p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services,
  .why-us,
  .approach,
  .about,
  .contact {
    padding: 4rem 1.5rem;
  }

  .services h2,
  .why-us h2,
  .approach h2,
  .about h2,
  .contact h2 {
    font-size: 1.75rem;
  }

  .services-grid,
  .why-grid {
    gap: 1.5rem;
  }

  .why-card {
    flex: 1 1 45%;
    max-width: none;
  }

  .service-card,
  .why-card {
    padding: 1.5rem;
  }

  .timeline-bar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 0;
  }

  .timeline-step {
    flex-basis: 100%;
    margin-bottom: 2rem;
  }

  .timeline-label {
    max-width: 280px;
  }

  .timeline-connector {
    display: none;
  }

  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .cta-button {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .submit-button {
    min-height: 44px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0.75rem 0;
  }

  .header-content {
    padding: 0 1rem;
  }

  .logo {
    height: 52px;
  }

  .nav {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .services,
  .approach,
  .about,
  .contact {
    padding: 3rem 1rem;
  }

  .services h2,
  .approach h2,
  .about h2,
  .contact h2 {
    font-size: 1.5rem;
  }

  .approach-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-intro {
    font-size: 0.95rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--focus-blue);
  outline-offset: 2px;
}
