:root {
  --bg: #f6f0e4;
  --bg-soft: #fff8ec;
  --paper: #fff9ef;
  --text: #2e2219;
  --muted: #6f5e52;
  --accent: #cf622f;
  --accent-dark: #a9491d;
  --accent-soft: #f2d6be;
  --line: #e2d4c2;
  --radius: 20px;
  --shadow-sm: 0 8px 22px rgba(74, 43, 20, 0.1);
  --shadow: 0 14px 36px rgba(74, 43, 20, 0.14);
  --shadow-lg: 0 24px 48px rgba(74, 43, 20, 0.16);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, #fce4c7 0%, transparent 45%),
    radial-gradient(circle at 80% 0%, #f7dcc4 0%, transparent 40%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
  animation: blobFloat 16s ease-in-out infinite;
}

.shape-1 {
  width: 220px;
  height: 220px;
  left: -70px;
  top: 18%;
  background: radial-gradient(circle at 35% 35%, #ffe2bd, #f4c79d);
}

.shape-2 {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 55%;
  background: radial-gradient(circle at 35% 35%, #ffd7b0, #eeb988);
  animation-delay: -4s;
}

.shape-3 {
  width: 180px;
  height: 180px;
  right: 16%;
  top: 10%;
  background: radial-gradient(circle at 30% 30%, #fff0d6, #f8d9b8);
  animation-delay: -9s;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246, 240, 228, 0.84);
  border-bottom: 1px solid rgba(201, 177, 151, 0.35);
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(252, 246, 237, 0.95);
  box-shadow: 0 8px 24px rgba(69, 40, 20, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 177, 151, 0.45);
  background: #fff;
}

.logo-text {
  font-family: "Fraunces", serif;
  font-size: 1.22rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--muted);
}

.nav-link {
  position: relative;
  padding-bottom: 0.12rem;
  transition: color 0.24s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.26s ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.92rem;
  color: var(--text);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 700;
  background: linear-gradient(110deg, #d96f3a 8%, #c35b2b 52%, #af4b22 100%);
  color: #fff;
  box-shadow: 0 9px 18px rgba(169, 73, 29, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.44) 50%, transparent 80%);
  transform: translateX(-130%);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 24px rgba(169, 73, 29, 0.3);
}

.btn:hover::after {
  transform: translateX(130%);
  transition: transform 0.66s ease;
}

.btn-sm {
  padding: 0.58rem 1rem;
  font-size: 0.93rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #fff5ea;
}

.nav-cta {
  margin-left: 0.3rem;
}

.hero {
  position: relative;
  padding: 5rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.45rem;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 3.95rem);
  margin-bottom: 0.8rem;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  text-wrap: balance;
}

p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.hero-copy {
  max-width: 580px;
}

.hero-copy p {
  font-size: 1.04rem;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin: 1.15rem 0 0;
  padding: 0;
}

.hero-tags li {
  margin: 0;
  padding: 0.34rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(207, 98, 47, 0.25);
  background: #fff4e6;
  color: #684937;
  font-size: 0.87rem;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(255, 226, 193, 0.74), rgba(246, 185, 139, 0.26));
  opacity: 0.75;
}

.hero-media img {
  min-height: 440px;
  object-fit: contain;
  background: #fff7ea;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: imageFloat 7.5s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.84rem;
  border-radius: 999px;
  background: rgba(46, 34, 25, 0.84);
  color: #fff6ef;
  border: 1px solid rgba(255, 222, 196, 0.36);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(3px);
}

.promise-strip {
  margin-top: 2rem;
  border: 1px solid rgba(201, 177, 151, 0.38);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 247, 233, 0.88), rgba(255, 238, 219, 0.88));
  box-shadow: 0 12px 28px rgba(74, 43, 20, 0.08);
  padding: 0.9rem 1.2rem;
}

.promise-strip p {
  margin: 0;
  text-align: center;
  color: #664938;
  font-weight: 600;
}

.section {
  padding: 4.8rem 0;
}

.alt {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 247, 234, 0.75), rgba(255, 242, 225, 0.64));
  border-block: 1px solid rgba(201, 177, 151, 0.35);
}

.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 35% 65%, rgba(255, 255, 255, 0.2));
  opacity: 0.25;
}

.section-head {
  margin-bottom: 1.6rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(66, 38, 18, 0.06);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.34s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1rem 1.2rem;
}

.card h3 {
  margin-bottom: 0.2rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 0.4rem;
  border-bottom: 1px solid rgba(169, 73, 29, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.card-link:hover {
  color: #7f3416;
  border-color: #7f3416;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin: 1rem 0 0;
  padding-left: 0;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  margin-bottom: 0.62rem;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #e68b5e);
  box-shadow: 0 0 0 3px rgba(207, 98, 47, 0.12);
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.value-points span {
  margin: 0;
  font-size: 0.86rem;
  color: #6c4c3b;
  border: 1px solid rgba(201, 177, 151, 0.46);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  background: rgba(255, 255, 255, 0.7);
}

.image-stack {
  position: relative;
}

.image-stack img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-height: 360px;
  object-fit: cover;
}

.image-stack .stamp {
  position: absolute;
  width: 92px;
  min-height: auto;
  right: -18px;
  bottom: -18px;
  border-radius: 999px;
  background: #fff8ee;
  border: 1px solid rgba(201, 177, 151, 0.55);
  box-shadow: var(--shadow-sm);
  padding: 0.3rem;
  animation: spinSlow 22s linear infinite;
}

.cta {
  padding: 1.8rem 0 4.8rem;
}

.cta-box {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(125deg, #fff7e9 0%, #fbe2c9 45%, #fff2dc 100%);
  background-size: 220% 220%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  animation: ctaGlow 9s ease infinite;
}

.cta-note {
  margin: 0;
  font-size: 0.94rem;
  color: #755745;
}

.site-footer {
  padding: 2.1rem 0 1.4rem;
  border-top: 1px solid rgba(201, 177, 151, 0.35);
  background: rgba(255, 248, 236, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.5rem;
}

.site-footer a {
  color: var(--text);
}

.site-footer a:hover {
  color: var(--accent-dark);
}

.contact-link {
  font-weight: 600;
}

.map-link {
  display: inline-flex;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.map-preview {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(66, 38, 18, 0.08);
  margin-bottom: 0.85rem;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(66, 38, 18, 0.14);
}

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

.copyright {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: #78675a;
}

.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease,
    filter 0.62s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-badge {
    right: 0.8rem;
    top: 0.8rem;
  }

  .image-stack .stamp {
    width: 82px;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

@media (max-width: 700px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 4vw;
    right: 4vw;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff8ec;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.3rem;
  }

  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags {
    gap: 0.45rem;
  }

  .hero-tags li {
    font-size: 0.82rem;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .promise-strip p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
