:root {
  --bg: #f4eee5;
  --bg-soft: #fbf7f1;
  --text: #1f1a17;
  --muted: #5f5249;
  --accent: #b68f61;
  --line: rgba(31, 26, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(182, 143, 97, 0.2), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(80, 64, 45, 0.13), transparent 24%),
    linear-gradient(145deg, #f8f1e8 0%, #efe2cf 44%, #f5ecdf 100%);
  line-height: 1.55;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23000000' fill-opacity='0.07'%3E%3Ccircle cx='12' cy='14' r='1'/%3E%3Ccircle cx='80' cy='102' r='1'/%3E%3Ccircle cx='142' cy='33' r='1'/%3E%3Ccircle cx='47' cy='168' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.shell {
  max-width: 1020px;
  margin: 0 auto;
  padding: 56px 20px 48px;
  display: grid;
  gap: 28px;
}

.hero,
.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.42));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow:
    0 24px 64px rgba(36, 30, 24, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.hero {
  padding: clamp(30px, 4.3vw, 62px);
  background:
    radial-gradient(circle at 8% 8%, rgba(182, 143, 97, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.44));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px);
  gap: 24px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h1 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  max-width: 11ch;
  line-height: 1.02;
  text-wrap: balance;
}

.lead {
  margin: 18px 0 0;
  max-width: 44ch;
  color: #433730;
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-photo-wrap {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 23, 0.14);
  box-shadow: 0 18px 44px rgba(33, 27, 22, 0.14);
}

.hero-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 13px 22px 13px 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  text-transform: none;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn-dark {
  color: #f6efe5;
  background: linear-gradient(128deg, #211c19 0%, #312922 55%, #261f1a 100%);
  border: 1px solid rgba(255, 235, 209, 0.3);
  box-shadow:
    0 12px 28px rgba(25, 20, 18, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn::after {
  content: "→";
  font-size: 0.95em;
  transform: translateX(0);
  transition: transform 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(25, 20, 18, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn:hover::after {
  transform: translateX(2px);
}

.panel {
  padding: clamp(22px, 3vw, 34px);
}

.panel-head h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.gallery-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: #fff;
  box-shadow: 0 14px 30px rgba(33, 27, 22, 0.08);
}

.gallery-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card p {
  margin: 0;
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.address {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 400;
}

.map-wrap {
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 23, 0.12);
  box-shadow: 0 18px 42px rgba(33, 27, 22, 0.1);
}

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

.actions {
  margin-top: 6px;
}

footer {
  border-top: 1px solid rgba(31, 26, 23, 0.11);
  padding: 20px;
}

footer p {
  max-width: 1020px;
  margin: 0 auto;
  color: #63574d;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .shell {
    padding-top: 34px;
  }

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

  .map-wrap iframe {
    height: 300px;
  }
}
