:root {
  --bg: #f4f1f0;
  --surface: #ffffff;
  --surface-alt: #ece8e6;
  --text: #4f4a4a;
  --heading: #a86d64;
  --primary: #b07169;
  --primary-dark: #935952;
  --border: #ddd5d2;
  --container: 1120px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(84, 66, 63, 0.08);
  --section-space: clamp(4rem, 7vw, 7rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  background: var(--bg);
  padding: 2rem 0 1.25rem;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(168, 109, 100, 0.1);
  backdrop-filter: blur(10px);
}

.brand {
  text-align: center;
  color: var(--heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav a {
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.98rem;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  background: var(--primary);
  color: #fff;
}

section {
  padding: var(--section-space) 0;
}

.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(58, 41, 37, 0.45), rgba(58, 41, 37, 0.55)),
    url("images/start.avif") center/cover;
}

.hero__content {
  width: min(100% - 2rem, 900px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  color: #fff;
}

h1, h2, h3 {
  color: var(--heading);
  line-height: 1.1;
  font-weight: 500;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 760px;
  margin: 0 auto 2rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.4rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  transition: 0.2s ease;
  box-shadow: var(--shadow);
}

.btn:hover,
.btn:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.intro {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.intro h2,
.quote h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.intro p,
.quote p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
}

.section-heading p {
  max-width: 820px;
  font-size: 1.05rem;
}

.services-grid,
.feature-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(168, 109, 100, 0.08);
  display: flex;
  flex-direction: column;
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.4rem;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.feature h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.cta-box {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.about-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.split-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(168, 109, 100, 0.1);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.panel p + p {
  margin-top: 1rem;
}

.quote {
  background: var(--primary);
  text-align: center;
  color: #fff;
}

.quote small {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.9;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list strong {
  color: var(--heading);
  display: block;
  margin-bottom: 0.2rem;
}

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(168, 109, 100, 0.1);
}

.legal-card h1 {
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.legal-card h2 {
  color: var(--heading);
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.legal-card p,
.legal-card li {
  margin-bottom: 0.9rem;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: #746d6c;
}

.site-footer p + p {
  margin-top: 0.4rem;
}

@media (max-width: 960px) {
  .services-grid,
  .feature-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 62svh;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 1.25rem;
  }

  .brand {
    margin-bottom: 0.7rem;
  }

  .nav {
    gap: 0.35rem;
  }

  .nav a {
    font-size: 0.92rem;
    padding: 0.6rem 0.8rem;
  }

  .btn {
    width: 100%;
  }

  .button-group {
    align-items: stretch;
  }
  .card:hover {
  transform: translateY(-5px);
  transition: 0.2s;
}
}

