:root {
  --bg: #f8f3ee;
  --panel: #fffaf6;
  --panel-strong: #f1e0d4;
  --ink: #1d1a1a;
  --muted: #5b4e47;
  --line: rgba(29, 26, 26, 0.12);
  --brand: #a93d2f;
  --brand-dark: #7c291f;
  --gold: #d4b36d;
  --shadow: rgba(24, 16, 11, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1150px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-wrap {
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

.accent {
  color: var(--brand-dark);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 6rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

p {
  margin-top: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(248, 243, 238, 0.74);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 24px rgba(169, 61, 47, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-dark);
}

.button-secondary {
  border-color: rgba(29, 26, 26, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.lead {
  max-width: 32rem;
  font-size: 1.05rem;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  color: var(--brand);
  margin-right: 0.5rem;
}

.hero-visual {
  min-height: 500px;
  background:
    linear-gradient(rgba(26, 16, 12, 0.06), rgba(26, 16, 12, 0.08)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
  border-radius: 2rem;
  position: relative;
  box-shadow: 0 30px 60px var(--shadow);
}

.info-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.strip-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
}

.strip-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(18, 11, 10, 0.16), rgba(18, 11, 10, 0.3)),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
  box-shadow: 0 30px 60px var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.stats div {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.2rem 1rem;
}

.stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--brand);
  margin-bottom: 0.2rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.experience {
  background: rgba(255, 255, 255, 0.22);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 30px rgba(27, 23, 19, 0.06);
}

.icon {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
}

.menu {
  background: rgba(237, 224, 211, 0.28);
}

.contact-copy {
  text-align: left;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact {
  text-align: center;
}

.contact-list {
  list-style: none;
  margin: 0;
  margin-bottom: 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.map-card {
  overflow: hidden;
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(24, 16, 11, 0.06);
}

.map-card iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .experience-grid,
  .strip-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .section-heading.split {
    display: block;
  }
}


@media (max-width: 620px) {
  .nav-wrap {
    min-height: 72px;
  }

  .button {
    padding: 0.8rem 1.2rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-points {
    gap: 0.5rem 1rem;
  }

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

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }
}
