:root {
  --bg: #f4eadf;
  --bg-deep: #d8b996;
  --surface: rgba(255, 250, 243, 0.78);
  --surface-strong: #fff7ee;
  --text: #2f1a12;
  --muted: #71503f;
  --accent: #8f2d1d;
  --accent-dark: #641a10;
  --line: rgba(47, 26, 18, 0.12);
  --shadow: 0 22px 60px rgba(70, 31, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 45, 29, 0.2), transparent 34%),
    radial-gradient(circle at right center, rgba(216, 185, 150, 0.75), transparent 28%),
    linear-gradient(180deg, #f6efe7 0%, var(--bg) 50%, #efe0d0 100%);
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 20px auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 248, 240, 0.54);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 45, 29, 0.22), rgba(216, 185, 150, 0.05));
  filter: blur(8px);
}

.topbar,
.hero-content,
.feature-grid,
.visit-section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-kicker,
.eyebrow,
.section-tag,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
}

.brand-name,
.footer a {
  text-decoration: none;
  color: inherit;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
}

.call-chip {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 28px;
  align-items: end;
  padding: 68px 0 30px;
}

.hero-copy h1,
.section-heading h2,
.visit-copy h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
}

.hero-text,
.visit-copy p,
.feature-card p,
.address-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 560px;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.call-chip:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff6ef;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.hero-card,
.feature-card,
.address-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
  border-radius: 26px;
  transform: rotate(-2deg);
  animation: floatIn 850ms ease both;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.hero-card li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.section {
  padding: 30px 28px 60px;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2,
.visit-copy h2 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  padding: 26px;
  border-radius: 24px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.visit-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.address-card {
  margin: 0;
  padding: 28px;
  border-radius: 28px;
  font-style: normal;
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.95), rgba(250, 236, 220, 0.88));
}

.address-title {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}

.address-card p {
  margin: 7px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 28px 30px;
  border-top: 1px solid rgba(47, 26, 18, 0.1);
  font-weight: 800;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(-4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-2deg);
  }
}

@media (max-width: 900px) {
  .hero-content,
  .feature-grid,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    margin: 9px auto;
    border-radius: 22px;
  }

  .hero,
  .section,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .hero-content {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }
}
