:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 252, 246, 0.88);
  --surface-strong: #fffdf8;
  --text: #254233;
  --muted: #6b7d6e;
  --line: rgba(36, 66, 51, 0.12);
  --brand: #4a7c59;
  --brand-deep: #335a43;
  --accent: #d49b3d;
  --shadow: 0 22px 60px rgba(42, 66, 49, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 430px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(212, 155, 61, 0.16), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(74, 124, 89, 0.16), transparent 26%),
    linear-gradient(180deg, #f9f5ee 0%, #f1eadf 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.16) 0,
      rgba(255, 255, 255, 0.16) 2px,
      transparent 2px,
      transparent 14px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
}

.page-shell {
  width: min(100%, var(--content-width));
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  filter: blur(8px);
}

.page-shell::before {
  width: 112px;
  height: 112px;
  top: -18px;
  right: -10px;
  background: radial-gradient(circle, rgba(212, 155, 61, 0.22), rgba(212, 155, 61, 0));
}

.page-shell::after {
  width: 140px;
  height: 140px;
  left: -18px;
  bottom: 68px;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.18), rgba(74, 124, 89, 0));
}

.card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 251, 244, 0.94)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(74, 124, 89, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(212, 155, 61, 0.08), rgba(255, 255, 255, 0));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.15)),
    linear-gradient(135deg, rgba(212, 155, 61, 0.4), rgba(74, 124, 89, 0.16));
  opacity: 0.7;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(212, 155, 61, 0.18), rgba(74, 124, 89, 0.18)),
    var(--surface-strong);
  border: 1px solid rgba(74, 124, 89, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.brand-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--brand-deep);
}

.section {
  padding: 20px 22px 22px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-links,
.social-links {
  display: grid;
  gap: 12px;
}

.main-link,
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(57, 79, 60, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.main-link {
  padding: 14px 16px;
}

.main-link-map {
  align-items: stretch;
}

.main-link:hover,
.social-link:hover,
.main-link:focus-visible,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(57, 79, 60, 0.1);
  border-color: rgba(74, 124, 89, 0.26);
  outline: none;
}

.main-link-primary {
  background:
    linear-gradient(135deg, rgba(74, 124, 89, 0.14), rgba(212, 155, 61, 0.11)),
    rgba(255, 255, 255, 0.86);
}

.is-disabled {
  opacity: 0.72;
  cursor: default;
}

.is-disabled:hover,
.is-disabled:focus-visible {
  transform: none;
}

.link-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.link-badge,
.social-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 238, 229, 0.96));
  border: 1px solid rgba(74, 124, 89, 0.14);
  color: var(--brand-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.link-badge svg,
.social-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.link-labels {
  min-width: 0;
}

.link-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.link-subtitle {
  display: block;
  margin-top: 2px;
  font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.link-arrow {
  flex: 0 0 auto;
  color: rgba(51, 90, 67, 0.52);
  font-size: 1rem;
  font-weight: 700;
}

.map-tile {
  display: grid;
  gap: 12px;
  width: 100%;
}

.map-preview {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(74, 124, 89, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 238, 229, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.map-preview iframe {
  display: block;
  width: 100%;
  height: 128px;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-link {
  justify-content: center;
  padding: 0;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  flex: 0 0 auto;
}

.section-icons {
  padding-top: 6px;
}

@media (max-width: 420px) {
  .hero {
    padding: 24px 20px 20px;
  }

  .section {
    padding: 18px 18px 20px;
  }
}
