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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ── Header ── */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

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

nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #444;
  transition: color 0.2s;
}

nav a:hover {
  color: #C9A87C;
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #C9A87C;
  color: #fff;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-dark {
  background: #2C2C2C;
  color: #fff;
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #2C2C2C 0%, #3a3a3a 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 0 0 auto;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 strong {
  font-weight: 700;
  color: #C9A87C;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ── Quote Banner ── */
.quote-banner {
  background: #F5F0EB;
  padding: 50px 20px;
  text-align: center;
}

.quote-banner blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-style: italic;
  color: #6a5a4a;
  line-height: 1.7;
}

/* ── Section Styles ── */
.section {
  padding: 70px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.section-text {
  font-size: 1.05rem;
  color: #555;
  max-width: 750px;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

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

/* ── Services Grid ── */
.services {
  background: #f8f8f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F0EB;
  border-radius: 50%;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2C2C2C;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

/* ── Locations ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-top: 3px solid #C9A87C;
}

.location-card h3 {
  font-size: 1.1rem;
  color: #2C2C2C;
  margin-bottom: 10px;
}

.location-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.location-card a {
  color: #C9A87C;
  font-weight: 600;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-banner-dark {
  background: linear-gradient(135deg, #2C2C2C, #444);
}

.cta-banner-gold {
  background: linear-gradient(135deg, #b8956a, #C9A87C, #d4b88e);
}

.cta-banner h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

footer h3 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #999;
}

/* ── SMS Opt-in ── */
.footer-sms {
  max-width: 450px;
}

.sms-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sms-form input[type="tel"] {
  padding: 10px 14px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
}

.sms-form input[type="tel"]::placeholder {
  color: #777;
}

.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: #bbb;
  cursor: pointer;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #C9A87C;
}

.consent-disclosure {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.6;
}

.consent-disclosure a {
  color: #C9A87C;
  text-decoration: underline;
}

.sms-form .btn {
  align-self: flex-start;
}

.sms-confirm {
  margin-top: 16px;
}

.sms-confirm > p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 12px;
}

.confirm-row {
  display: flex;
  gap: 8px;
}

.confirm-row input {
  padding: 10px 14px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  width: 180px;
}

.confirm-row input::placeholder {
  color: #777;
}

.sms-success {
  color: #C9A87C;
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

.footer-bottom p {
  margin: 4px 0;
}

/* ── Legal Pages ── */
.legal-page {
  padding: 60px 20px 80px;
  background: #fff;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-size: 2.2rem;
  font-weight: 300;
  color: #2C2C2C;
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 40px;
}

.legal-inner section {
  margin-bottom: 35px;
}

.legal-inner h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2C2C2C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.legal-inner h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
  margin: 14px 0 8px;
}

.legal-inner p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-inner ul {
  padding-left: 24px;
  margin-bottom: 10px;
  list-style: disc;
}

.legal-inner li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-inner a {
  color: #C9A87C;
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
  }

  nav ul {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }

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

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    max-width: 250px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}
