:root {
  --bg-main: #fffdf9;        /* bright warm cream */
  --bg-alt: #ffffff;
  --bg-card: #ffffff;        /* brighter card */
  --accent: #e3b860;         /* brighter gold */
  --accent-dark: #d1a34d;
  --accent-soft: #fcefd3;    /* pale golden wash */
  --text-main: #2a2a2a;
  --text-muted: #6b6b6b;
  --border-subtle: #f0e4c9;  /* lighter border */
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 20px 50px rgba(0,0,0,0.08);
  --max-width: 1080px;
  --font-main: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  filter: brightness(1.04); /* subtle global lift */
}

/* layout */

.container {
  max-width: var(--max-width);
  padding: 0 1.25rem;
  margin: 0 auto;
}

/* promo bar */

.promo-bar {
  background: #fcefd3; /* pale gold */
  color: #5c4a19;      /* rich warm brown text */
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
}

.promo-bar a {
  color: #a87b23; /* medium gold-brown */
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 156, 71, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

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

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fdf2bf, #c89c47);
  color: #111827;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--accent);
}

/* buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 150ms ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: var(--accent-soft);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn.outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.outline:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* links */

.text-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* hero */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;

}

.hero-container {
  padding-top: 6rem;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 245, 220, 0.35); /* light golden wash */
  backdrop-filter: brightness(1.1);      /* brighten photo slightly */
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: #ffffffea; /* brighter + slightly translucent */
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(227, 184, 96, 0.28); /* brighter gold border */
  animation: heroFadeUp 600ms ease-out;
}

.eyebrow {
  font-size: 0.95rem;
  color: #d27c52;
  margin-bottom: 0.7rem;
}

.hero-card h1 {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.lead {
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.sublead {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

/* sections */

.section {
  padding: 3rem 0;
}

.section-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(200, 156, 71, 0.12);
}

.section h2 {
  font-size: 1.7rem;
  margin: 0 0 0.8rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 620px;
}

/* cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 156, 71, 0.18);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* testimonials */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.testimonial {
  background: #fffdf8;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 156, 71, 0.14);
  padding: 1.4rem 1.5rem;
}

.quote {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.name {
  font-weight: 600;
  font-size: 0.9rem;
}

/* form */

.contact-form {
  margin-top: 1.4rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200, 156, 71, 0.16);
}

.form-row {
  margin-bottom: 0.9rem;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

/* footer */

.site-footer {
  background: #fdf6e8; /* bright warm beige */
  color: #5c4a19;
  border-top: 1px solid #f0e4c9;
  padding: 2.6rem 0 1.6rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.8rem;
  font-size: 0.9rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.25rem;
}

.footer-nav a {
  color: #5c4a19;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(92, 74, 25, 0.25);
  padding-top: 0.9rem;
  text-align: center;
  font-size: 0.8rem;
}

/* responsive */

@media (max-width: 900px) {
  .hero-card {
    padding: 2rem 1.7rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
  }

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

  .section-card {
    padding: 1.6rem 1.4rem;
  }

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