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

:root {
  --gold: #A1824F;
  --teal: #00bee0;
  --dark: #1a1a1a;
  --mid: #4a4a4a;
  --light: #f7f5f2;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
header {
  background: var(--white);
  border-bottom: 1px solid #e8e3dc;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta a {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-cta a:hover { background: #8a6d42; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 60%, #3a3228 100%);
  color: var(--white);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(161,130,79,0.15) 0%, transparent 60%);
}

.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

.hero-eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #8a6d42; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  margin-left: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); background: rgba(161,130,79,0.1); }

/* SERVICES */
.services {
  padding: 80px 24px;
  background: var(--light);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.section-eyebrow {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--mid);
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #e8e3dc;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), #c4a06a);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}

/* ABOUT STRIP */
.about-strip {
  padding: 80px 24px;
  background: var(--white);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-text h2 span { color: var(--gold); }

.about-text p {
  color: var(--mid);
  margin-bottom: 16px;
  font-size: 15px;
}

.about-text a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: var(--light);
  border-radius: 8px;
  border-top: 3px solid var(--gold);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* INFO BAR */
.info-bar {
  background: var(--dark);
  color: var(--white);
  padding: 40px 24px;
}

.info-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.info-item h4 {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-item p, .info-item a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: none;
}

.info-item a:hover { color: var(--teal); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--gold), #8a6d42);
  padding: 60px 24px;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--gold);
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.1s, box-shadow 0.2s;
}

.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* FOOTER */
footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
}

footer .footer-logo { margin-bottom: 16px; }
footer .footer-logo img { height: 36px; opacity: 0.8; }

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

footer .footer-links a:hover { color: var(--gold); }
footer p { margin-top: 8px; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}

.page-hero .eyebrow {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}

/* CONTACT PAGE */
.contact-section {
  padding: 70px 24px;
  background: var(--light);
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.contact-info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
}

.contact-detail-text a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid #e8e3dc;
}

.contact-form-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.2s;
  background: #fafafa;
}

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

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

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

/* SMS Consent */
.sms-consent {
  background: #f7f5f2;
  border: 1px solid #e0dbd2;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 18px;
}

.sms-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.sms-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.sms-consent .consent-text {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
}

.sms-consent .consent-text a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.sms-consent .consent-text a:hover { text-decoration: underline; }

.sms-note {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: #8a6d42; }

/* PRIVACY PAGE */
.privacy-section {
  padding: 60px 24px;
  background: var(--white);
}

.privacy-content {
  max-width: 780px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 14px;
  line-height: 1.7;
}

.privacy-content ul {
  margin: 0 0 16px 20px;
}

.privacy-content ul li {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 6px;
  line-height: 1.6;
}

.privacy-content a { color: var(--gold); }

.privacy-updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 36px;
  font-style: italic;
}

/* SMS BELOW FORM */
.sms-below-form {
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 0 24px;
  text-align: center;
}

.sms-below-form p {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

.sms-below-form a {
  color: var(--gold);
  text-decoration: none;
}

.sms-below-form a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; }

  .info-bar-inner { grid-template-columns: 1fr; gap: 24px; }

  .nav-links, .nav-cta { display: none; }

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

  .about-stats { grid-template-columns: 1fr 1fr; }

  .btn-secondary { display: none; }

  .contact-form-box { padding: 24px; }
}
