:root {
  --bg: #f4ede2;
  --text: #201913;
  --muted: #64544a;
  --card: rgba(255, 250, 244, 0.82);
  --card-strong: rgba(255, 247, 238, 0.92);
  --line: rgba(76, 54, 41, 0.12);
  --hero-line: rgba(98, 74, 58, 0.18);
  --shadow: 0 28px 70px rgba(71, 48, 30, 0.14);
  --hero-gradient: linear-gradient(135deg, rgba(236, 122, 54, 0.2), rgba(246, 205, 122, 0.26) 45%, rgba(123, 168, 144, 0.2));
  --social-gradient: linear-gradient(135deg, rgba(252, 239, 214, 0.92), rgba(255, 244, 230, 0.82));
  --business-gradient: linear-gradient(135deg, rgba(225, 241, 231, 0.9), rgba(241, 248, 233, 0.82));
  --footer-gradient: linear-gradient(135deg, rgba(39, 28, 21, 0.92), rgba(65, 43, 29, 0.92));
  --accent: #ec7a36;
  --accent-deep: #1d6b66;
  --accent-soft: #f3b562;
  --primary: #ec7a36;
  --radius: 34px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(244, 237, 226, 0.82), rgba(244, 237, 226, 0.96)),
    url('images/background.jpg') center/cover fixed no-repeat;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -5rem;
  right: -7rem;
  background: rgba(236, 122, 54, 0.16);
}

body::after {
  bottom: -8rem;
  left: -5rem;
  background: rgba(29, 107, 102, 0.14);
}

a {
  color: inherit;
}

main {
  display: grid;
  gap: 26px;
}

p {
  margin: 0;
  line-height: 1.85;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-shell {
  width: min(1040px, 92%);
  margin: 0 auto;
  padding: 46px 0 56px;
}

.hero,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 40px;
  align-items: center;
  isolation: isolate;
  border: 1px solid var(--hero-line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  pointer-events: none;
}

.hero-art,
.hero-copy,
.panel > * {
  position: relative;
  z-index: 1;
}

.hero-art {
  min-height: 320px;
  display: grid;
  place-items: center;
}

.shape {
  position: absolute;
  pointer-events: none;
}

.shape-grid {
  inset: 32px;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(32, 25, 19, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 25, 19, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: rgba(255, 248, 238, 0.36);
  border: 1px solid rgba(84, 59, 39, 0.1);
  transform: rotate(-8deg);
}

.shape-ring {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 24px solid rgba(29, 107, 102, 0.16);
  right: 18px;
  top: 8px;
}

.shape-blur {
  width: 180px;
  height: 180px;
  border-radius: 38px;
  background: rgba(236, 122, 54, 0.18);
  filter: blur(10px);
  left: 18px;
  bottom: 12px;
  transform: rotate(18deg);
}

.profile-photo {
  width: 208px;
  height: 208px;
  object-fit: cover;
  border-radius: 32px;
  border: 10px solid rgba(255, 247, 238, 0.88);
  box-shadow: 0 24px 50px rgba(84, 56, 37, 0.18);
  position: relative;
  z-index: 1;
  transform: rotate(4deg);
}

h1, h2, h3 { margin: 0 0 10px; }
h1 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 10ch;
}
h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.lead { color: var(--muted); max-width: 68ch; font-size: 1.04rem; }

.metrics {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.metric-pill {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), var(--pill-bg));
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

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

.panel {
  padding: 32px;
  background: var(--card-strong);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.social-panel::before {
  background: var(--social-gradient);
}

.business-panel::before {
  background: var(--business-gradient);
}

.panel-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 60%, transparent 72%);
  pointer-events: none;
}

.panel > h1,
.panel > h2,
.panel > h3 {
  margin-bottom: 8px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.social-link {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 20px;
  padding: 18px 18px;
  font-weight: 600;
  transition: 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.social-link img { width: 22px; height: 22px; }

.social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 122, 54, 0.28);
  background: linear-gradient(135deg, rgba(255, 227, 200, 0.9), rgba(255, 243, 231, 0.95));
}

.travel-categories {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.category-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 14px;
}

.link-list { display: flex; flex-wrap: wrap; gap: 8px; }
.link-list a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.92rem;
}
.link-list a:hover { background: rgba(77,163,255,0.2); }

.travel-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.meta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  overflow-wrap: anywhere;
}

.label { display:block; color: var(--muted); font-size: .82rem; margin-bottom: 8px; }

.stars { letter-spacing: 2px; color: #3f506f; font-size: 1.1rem; }
.stars .filled { color: #ffd166; }

.map-wrapper {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

.gallery {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .2s ease;
}
.gallery img:hover { transform: scale(1.03); }

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
#lightbox.show { display: flex; }
#lightbox img { max-width: min(95vw, 1100px); max-height: 88vh; border-radius: 12px; }
#lightbox button {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
}
#lightbox #prev { left: 24px; }
#lightbox #next { right: 24px; }

.action-row { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  text-decoration: none;
  color: #081121;
  background: var(--primary);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
}
.btn.secondary { background: transparent; color: var(--text); border: 1px solid var(--line); }

.site-footer {
  margin-top: 34px;
  padding: 28px 24px;
  text-align: center;
  color: rgba(255, 238, 225, 0.78);
  font-size: 0.92rem;
  background: var(--footer-gradient);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 181, 98, 0.22), transparent 68%);
  pointer-events: none;
}

.footer-copy {
  position: relative;
  z-index: 1;
}

.footer-copy + .footer-copy {
  margin-top: 8px;
}

#upcoming-list {
  display: grid;
  gap: 8px;
}

#upcoming-list li {
  list-style: disc;
  color: var(--text);
}

@media (max-width: 760px) {
  body {
    background-attachment: scroll;
  }

  .site-shell {
    width: min(680px, 94%);
    padding-top: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .hero .lead {
    margin-inline: auto;
  }

  .hero-art {
    min-height: 260px;
  }

  .profile-photo { margin-inline: auto; }

  h1 {
    max-width: none;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .travel-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
