/* ============================================
   Superior International LLC
   Soft Tan + Gold Professional Theme
   ============================================ */

:root {
  /* Soft Tan Palette */
  --tan-50: #FBF8F3;
  --tan-100: #F5F0E6;
  --tan-200: #E8DFD0;
  --tan-300: #D4C4A8;
  --tan-400: #C4B090;
  --tan-500: #A89070;
  
  /* Gold Accents */
  --gold-400: #D4AF37;
  --gold-500: #C9A227;
  --gold-600: #B8860B;
  --gold-700: #9A7209;
  
  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --text-dark: #2C2A26;
  --text-muted: #5C574F;
  --text-light: #8A847A;
  
  /* Shadows & Effects */
  --shadow-sm: 0 1px 3px rgba(44, 42, 38, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 42, 38, 0.08);
  --shadow-lg: 0 12px 40px rgba(44, 42, 38, 0.1);
  
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--tan-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tan-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  letter-spacing: -0.2px;
}

.logo-text small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-left: 2px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
  background: var(--tan-100);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(160deg, var(--tan-100) 0%, var(--tan-50) 45%, #F0EBE0 100%);
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(212, 196, 168, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--tan-400);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  background: rgba(201, 162, 39, 0.06);
}

.btn-full {
  width: 100%;
}

/* ========== Section Common ========== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.section-desc {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ========== About ========== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--tan-200);
}

.about-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tan-100);
  color: var(--gold-600);
  font-size: 0.85rem;
  border-radius: 50%;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.value-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-light);
}

.about-card {
  background: linear-gradient(160deg, var(--tan-100), var(--tan-50));
  border: 1px solid var(--tan-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.about-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.975rem;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.commitment-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.commitment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
}

/* ========== Services ========== */
.services {
  padding: 100px 0;
  background: var(--tan-50);
}

.services-photo-wrap {
  max-width: 900px;
  margin: 0 auto 48px;
}

.services-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--tan-200);
}

.services-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-featured {
  background: var(--white);
  border: 1px solid var(--tan-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tan-300);
}

.service-featured-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.service-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
}

.service-featured h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-top: 4px;
}

.service-lead {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.925rem;
  color: var(--text-dark);
}

.service-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
}

/* ========== Contact ========== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-lead {
  color: var(--text-muted);
  margin: 16px 0 36px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-600);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-dark);
  font-weight: 500;
}

.contact-form-wrapper {
  background: var(--tan-50);
  border: 1px solid var(--tan-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--tan-300);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* ========== Footer ========== */
.footer {
  background: var(--text-dark);
  color: var(--tan-200);
  padding: 48px 0 28px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 2px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--tan-400);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--tan-300);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--tan-500);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .services-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--tan-50);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--tan-200);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .logo-text {
    display: none;
  }
  
  .logo-img {
    height: 42px;
  }
  
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 28px 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .about,
  .services,
  .contact {
    padding: 70px 0;
  }
  
  .service-featured {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
