:root {
  --ink: #1a1612;
  --ink-soft: #3d342c;
  --paper: #f6f1e8;
  --paper-2: #efe6d8;
  --terracotta: #b54a32;
  --terracotta-dark: #8f3825;
  --gold: #c4a574;
  --white: #fffdf8;
  --muted: #6e6458;
  --shadow: 0 24px 60px rgba(26, 22, 18, 0.18);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 232, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 22, 18, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1.1;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand strong {
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.brand-text > span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--terracotta);
  color: white;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.4);
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  overflow: hidden;
  color: var(--white);
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 22, 18, 0.35) 0%, rgba(26, 22, 18, 0.55) 45%, rgba(26, 22, 18, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 0 4.5rem;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 560;
  line-height: 1.02;
  max-width: 14ch;
}

.hero p {
  max-width: 42rem;
  margin: 1.2rem 0 1.8rem;
  font-size: 1.12rem;
  color: rgba(255, 253, 248, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.slider-controls {
  position: absolute;
  right: 1.2rem;
  bottom: 1.4rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 248, 0.35);
  background: rgba(26, 22, 18, 0.35);
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.slider-count {
  min-width: 4.5rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

section {
  padding: 5.2rem 0;
}

.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.lead {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.stat {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat article {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  color: var(--terracotta);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: 2.2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card p {
  font-size: 1.15rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.service {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid rgba(26, 22, 18, 0.06);
}

.service h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.service p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  background: var(--ink);
  color: var(--paper);
}

.cta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-hero {
  padding: 4.5rem 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  padding-bottom: 1.4rem;
}

.map-section {
  padding-top: 0;
  padding-bottom: 5rem;
}

.map-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.map-card .section-title {
  margin-bottom: 0.4rem;
}

.map {
  height: 380px;
  margin-top: 1.4rem;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-2);
}

.map-link {
  margin-top: 1.2rem;
}

.map-pin {
  background: none;
  border: 0;
}

.map-pin-dot {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(26, 22, 18, 0.35);
}

.contact-card,
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.1rem;
  margin-top: 1.4rem;
}

.contact-list a,
.contact-list span {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-list small {
  color: var(--muted);
  font-weight: 400;
}

form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

label {
  font-size: 0.88rem;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(26, 22, 18, 0.12);
  background: var(--paper);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 860px) {
  .about,
  .contact-grid,
  .cta .wrap,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1rem 1.2rem 1.3rem;
    border-bottom: 1px solid rgba(26, 22, 18, 0.08);
  }

  .nav-links.open {
    display: flex;
  }
}
