:root {
  --black: #0f0b0b;
  --brown: #3b2b24;
  --red: #b3242a;
  --pink: #e76a8d;
  --cream: #f6eee8;
  --sand: #e1c8bb;
  --shadow: rgba(15, 11, 11, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--black);
  background: radial-gradient(circle at top left, #fbe9e2 0%, #f3d6c8 40%, #e4bfb3 100%);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 238, 232, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(59, 43, 36, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--black), var(--brown));
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--cream);
  border: 1px solid rgba(59, 43, 36, 0.3);
  box-shadow: 0 10px 20px rgba(15, 11, 11, 0.15);
}

.brand-name {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-tag {
  margin: 0;
  font-size: 0.85rem;
  color: var(--brown);
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--cream);
  font-weight: 600;
  box-shadow: 0 12px 24px var(--shadow);
}

main {
  padding: 0 6vw 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 36px;
  padding: 80px 0 60px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--brown);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  margin: 0 0 16px;
}

.accent {
  color: var(--red);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 24px;
  color: #2a1a17;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--black);
  color: var(--cream);
  box-shadow: 0 12px 24px var(--shadow);
}

.button.ghost {
  border-color: var(--black);
  color: var(--black);
}

.hero-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 40px var(--shadow);
  border: 1px solid rgba(59, 43, 36, 0.15);
}

.card-title {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
}

.section {
  padding: 70px 0 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.tile {
  padding: 22px;
  border-radius: 18px;
  background: rgba(246, 238, 232, 0.85);
  border: 1px solid rgba(59, 43, 36, 0.2);
  box-shadow: 0 16px 30px rgba(15, 11, 11, 0.08);
}

.tile h3 {
  margin: 0 0 10px;
  color: var(--red);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.panel {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(183, 38, 45, 0.1), rgba(231, 106, 141, 0.2));
  border: 1px solid rgba(183, 38, 45, 0.3);
}

.about-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--black);
  color: var(--cream);
  box-shadow: 0 16px 30px rgba(15, 11, 11, 0.25);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.map-card {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 20px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(246, 238, 232, 0.95);
  border: 1px solid rgba(59, 43, 36, 0.2);
  box-shadow: 0 18px 32px rgba(15, 11, 11, 0.12);
}

.map-copy h3 {
  margin-top: 0;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(59, 43, 36, 0.2);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.visit-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(59, 43, 36, 0.15);
  box-shadow: 0 16px 30px rgba(15, 11, 11, 0.1);
}

.muted {
  color: rgba(59, 43, 36, 0.7);
  font-size: 0.9rem;
}

.site-footer {
  padding: 28px 6vw 40px;
  border-top: 1px solid rgba(59, 43, 36, 0.2);
  background: #f2e1d8;
}

.site-footer p {
  margin: 6px 0;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-card {
    grid-template-columns: 1fr;
  }
}
