:root {
  --forest: #0d3b2d;
  --dark: #061f18;
  --green: #2f7d55;
  --gold: #d8ad4b;
  --cream: #f5f2e9;
  --ink: #17251f;
  --muted: #68746f;
  --line: #dce4df;
  --white: #fff;
  --shadow: 0 20px 55px rgba(10, 49, 37, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, sans-serif;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, serif; }
.shell { width: min(1180px, calc(100% - 40px)); margin: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(5, 35, 27, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 14px; letter-spacing: .04em; }
.brand small {
  margin-top: 4px;
  color: #a7b7b0;
  font-size: 9px;
  letter-spacing: .15em;
}
.nav nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: bold; }
.nav-cta { padding: 13px 18px; border-radius: 28px; color: #12271f; background: var(--gold); }
.menu { display: none; border: 0; color: #fff; background: transparent; font-size: 28px; }

.hero-slider {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity .7s;
}
.hero-slide.active { z-index: 1; opacity: 1; }
.hero-content { position: relative; z-index: 2; padding: 100px 0; }
.hero-content h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(55px, 8vw, 100px);
  line-height: .95;
  letter-spacing: -.04em;
}
.hero-content p {
  max-width: 650px;
  color: #d5dfdb;
  font-size: 18px;
  line-height: 1.75;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #f0d28c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
}
.eyebrow.dark { color: var(--green); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 28px;
  font-weight: bold;
  cursor: pointer;
}
.primary { color: #14231d; background: var(--gold); }
.outline { color: #fff; background: transparent; border-color: rgba(255, 255, 255, .4); }
.slider-dots { position: absolute; right: 7%; bottom: 32px; z-index: 3; display: flex; gap: 9px; }
.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}
.slider-dots button.active { background: var(--gold); }

.section { padding: 90px 0; }
.soft { background: var(--cream); }
.section-head {
  margin-bottom: 35px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.section h2 { font-size: clamp(36px, 5vw, 58px); line-height: 1.05; }
.property-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(9, 48, 36, .06);
}
.property-image { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.property-image::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(3, 25, 18, .92));
}
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.property-card:hover img { transform: scale(1.04); }
.property-image h3 {
  position: absolute;
  right: 15px;
  bottom: 13px;
  left: 15px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 20px;
}
.status {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 20px;
  color: var(--forest);
  background: #fff;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
}
.card-copy { padding: 16px; }
.card-copy small { color: var(--green); font-size: 10px; font-weight: bold; }
.card-copy p { margin: 8px 0 14px; color: var(--muted); font-size: 12px; }
.text-link { color: var(--forest); font-size: 12px; font-weight: bold; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.location-button {
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9d3c5;
  border-radius: 20px;
  color: #17603e;
  background: #eff8f3;
  font-size: 11px;
  font-weight: bold;
}
.map-button { color: #17603e; background: #eff8f3; border-color: #b9d3c5; }

.township-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(130deg, #06271e, #12523c);
}
.township-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  border: 80px solid rgba(216, 173, 75, .08);
  border-radius: 50%;
}
.township-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 60px;
}
.township-intro p { color: #c9d8d2; line-height: 1.8; }
.feature-grid {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid article, .faq-grid details {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}
.feature-grid article { position: relative; transition: transform .25s, background .25s; }
.feature-grid article:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .12); }
.feature-grid article > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, .25);
  font-size: 22px;
  font-weight: bold;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #19280f;
  background: linear-gradient(145deg, #f1d58d, #d4a33c);
  font-size: 24px;
}
.feature-grid h3 { font-size: 21px; }
.feature-grid p { margin: 0; color: #c6d5cf; line-height: 1.65; }

.completed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.completed-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  box-shadow: var(--shadow);
}
.completed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(3, 25, 18, .96));
}
.completed-card img { width: 100%; height: 340px; object-fit: cover; }
.completed-card > div { position: absolute; right: 22px; bottom: 18px; left: 22px; z-index: 2; }
.completed-card h3 { margin: 6px 0; font-size: 25px; }
.crown {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #352600;
  background: var(--gold);
  transform-origin: center;
  will-change: transform;
  animation: crown-rotate 4s linear infinite;
}
@keyframes crown-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.faq-grid details { border-color: var(--line); background: #fff; }
.faq-grid summary { font-weight: bold; cursor: pointer; }
.faq-grid p { margin: 16px 0 0; color: var(--muted); line-height: 1.7; }

.reviews-section { background: #f7f4ed; }
.review-score { display: flex; align-items: center; gap: 12px; }
.review-score > strong { color: var(--forest); font: 700 52px Georgia; }
.review-score > span { color: #e0a91f; letter-spacing: 2px; }
.review-score small { display: block; margin-top: 5px; color: var(--muted); letter-spacing: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.review-card {
  grid-column: span 2;
  padding: 25px;
  border: 1px solid #e5ded0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(56, 43, 17, .06);
}
.review-card:nth-child(4) { grid-column: 2 / span 2; }
.review-card:nth-child(5) { grid-column: 4 / span 2; }
.stars { color: #e0a91f; letter-spacing: 2px; }
.review-card > p { min-height: 112px; margin: 18px 0; color: #4e5c56; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-weight: bold;
}
.reviewer strong, .reviewer small { display: block; }
.reviewer small { margin-top: 4px; color: var(--muted); font-size: 10px; }

.contact { color: #fff; background: var(--forest); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.contact p { color: #c4d3cd; line-height: 1.8; }
.lead-form, .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form { padding: 28px; border-radius: 22px; color: var(--ink); background: #fff; }
label { display: grid; gap: 7px; font-size: 12px; font-weight: bold; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
}
.full { grid-column: 1 / -1; }

.page-hero { padding: 90px 0; color: #fff; background: linear-gradient(110deg, #06251c, #1b5c43); }
.page-hero h1 { max-width: 850px; font-size: clamp(48px, 7vw, 82px); line-height: 1; }
.page-hero p { max-width: 700px; color: #c8d7d1; font-size: 18px; line-height: 1.7; }
.detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 55px; }
.detail-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 18px; }
.detail-copy { position: sticky; top: 110px; align-self: start; }
.price { margin: 15px 0 22px; color: var(--green); font: 700 35px Georgia; }
.detail-copy p { color: var(--muted); line-height: 1.8; }
.detail-copy ul { padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }
.gallery-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-grid figure, .blog-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.gallery-grid img, .blog-card img { width: 100%; height: 250px; object-fit: cover; }
.gallery-grid figcaption, .blog-card > div { padding: 20px; }
.gallery-grid span { display: block; margin-top: 5px; color: var(--muted); }
.article { max-width: 850px; padding-top: 80px; padding-bottom: 100px; }
.article h1 { font-size: clamp(44px, 7vw, 76px); }
.article-image { width: 100%; max-height: 500px; object-fit: cover; border-radius: 22px; }
.summary { color: var(--muted); font-size: 20px; line-height: 1.7; }
.article-content { font-size: 17px; line-height: 1.9; }
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; }
.about-panel { display: grid; gap: 12px; }
.about-panel b { padding: 20px; border-radius: 14px; background: var(--cream); }
.office-location {
  margin-top: 30px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 18px;
  background: var(--cream);
}
.office-location > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 24px;
}
.office-location small { color: var(--green); font-weight: bold; }
.office-location h3 { margin: 5px 0 12px; }

.seo-overview { background: linear-gradient(180deg, #fff, #f4f7f4); }
.seo-overview-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 70px; }
.seo-overview p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.seo-links { display: flex; flex-wrap: wrap; gap: 10px; }
.seo-links a, .seo-related a {
  padding: 10px 14px;
  border: 1px solid #c7dacf;
  border-radius: 999px;
  color: var(--forest);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}
.seo-page-hero { padding-bottom: 105px; }
.seo-landing { display: grid; gap: 80px; }
.seo-point-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seo-point-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(10, 49, 37, .07);
}
.seo-point-grid article > span {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #eaf5ee;
  font-weight: 900;
}
.seo-point-grid h2 { font-size: 25px; }
.seo-point-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.seo-faq > h2 { margin-bottom: 28px; }
.seo-related {
  padding: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 18px;
  background: var(--cream);
}

footer { padding: 65px 0 22px; color: #aabbb4; background: #051d16; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr; gap: 55px; }
.footer-grid .footer-brand-logo { width: 90px; padding: 8px; border-radius: 14px; background: #fff; }
.footer-grid a { display: block; margin: 9px 0; }
.footer-grid h3 { color: #fff; }
.footer-office {
  max-width: 340px;
  padding: 13px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
}
.footer-office > span { color: var(--gold); font-size: 24px; }
.footer-office small, .footer-office strong { display: block; }
.footer-office small { font-size: 9px; letter-spacing: .12em; }
.footer-office strong { margin-top: 4px; color: #fff; font-size: 12px; }
.footer-social-icons { margin: 16px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.footer-social-icons a {
  width: 42px;
  height: 42px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: transform .2s, box-shadow .2s;
}
.footer-social-icons a:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0, 0, 0, .26); }
.footer-social-icons svg { width: 19px; height: 19px; fill: currentColor; }
.footer-social-icons .facebook { background: #1877f2; }
.footer-social-icons .instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0 15%, #fa7e1e 30%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}
.footer-social-icons .youtube { background: #f00; }
.footer-social-icons .whatsapp { background: #25d366; }
.social-help { max-width: 230px; margin-bottom: 12px; font-size: 12px; line-height: 1.6; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
}
.developer-credit { display: flex; align-items: center; gap: 10px; }
.developer-credit > span:last-child { display: grid; gap: 2px; }
.developer-credit strong { color: #fff; }
.developer-logo {
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: #fff;
}
.developer-logo img {
  width: 68px;
  max-width: none;
  height: 68px;
  object-fit: cover;
  transform: scale(1.06);
}

.installer { min-height: 100vh; padding: 40px; background: #eef3ef; }
.install-card { width: min(760px, 100%); margin: auto; padding: 38px; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.install-card > img { width: 110px; margin: auto; }
.install-card h1 { text-align: center; }
.install-card > p { color: var(--muted); text-align: center; }
.notice { margin: 15px 0; padding: 14px; border-radius: 10px; }
.success { color: #155b34; background: #dff5e7; }
.error { color: #8b2020; background: #ffe4e4; }

@media (max-width: 1050px) {
  .property-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    padding: 24px;
    display: none;
    flex-direction: column;
    background: var(--dark);
  }
  .nav nav.open { display: flex; }
  .menu { display: block; }
  .property-grid, .feature-grid, .completed-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .township-intro, .contact-grid, .detail-grid, .about-grid, .seo-overview-grid { grid-template-columns: 1fr; }
  .detail-copy { position: static; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card, .review-card:nth-child(4), .review-card:nth-child(5) { grid-column: auto; }
  .seo-point-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav { min-height: 68px; }
  .brand img { width: 48px; height: 48px; }
  .brand span { display: none; }
  .nav nav { top: 68px; }

  .hero-slider {
    width: 100%;
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    background: var(--dark);
  }
  .hero-slide {
    align-items: flex-end;
    background-size: 100% 100%, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
  }
  .hero-content { padding: 18px 0 28px; }
  .hero-content h1 {
    max-width: 95%;
    margin-bottom: 9px;
    font-size: clamp(27px, 8.5vw, 38px);
    line-height: 1;
    letter-spacing: -.03em;
  }
  .hero-content p { max-width: 96%; margin-bottom: 10px; font-size: 12px; line-height: 1.4; }
  .hero-content .eyebrow { margin-bottom: 6px; font-size: 8px; }
  .hero-content .button { min-height: 36px; padding: 0 14px; font-size: 11px; }
  .slider-dots { right: 50%; bottom: 8px; transform: translateX(50%); }
  .slider-dots button { width: 9px; height: 9px; }

  .section { padding: 56px 0; }
  .section h2 { font-size: clamp(31px, 9vw, 40px); }
  .section-head { margin-bottom: 26px; align-items: flex-start; flex-direction: column; }
  .property-grid, .faq-grid, .gallery-grid, .blog-grid, .lead-form, .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }

  .township-section { padding-bottom: 48px; }
  .township-intro { gap: 6px; }
  .township-intro p { margin-bottom: 0; font-size: 14px; line-height: 1.65; }
  .feature-grid {
    width: calc(100% + 14px);
    margin-top: 26px;
    padding: 2px 14px 10px 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .feature-grid::-webkit-scrollbar,
  .completed-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar { display: none; }
  .feature-grid article {
    min-height: 202px;
    padding: 18px;
    flex: 0 0 min(69vw, 245px);
    scroll-snap-align: start;
  }
  .feature-grid article:hover { transform: none; }
  .feature-grid article > span { top: 16px; right: 16px; font-size: 17px; }
  .feature-icon { width: 40px; height: 40px; margin-bottom: 14px; border-radius: 12px; font-size: 20px; }
  .feature-grid h3 { margin-bottom: 9px; font-size: 18px; }
  .feature-grid p { font-size: 12px; line-height: 1.55; }

  .completed-grid {
    width: calc(100% + 14px);
    padding: 2px 14px 16px 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .completed-card {
    min-height: 270px;
    flex: 0 0 min(79vw, 300px);
    border-radius: 20px;
    scroll-snap-align: start;
  }
  .completed-card img { height: 270px; }
  .completed-card > div { right: 18px; bottom: 15px; left: 18px; }
  .completed-card h3 { font-size: 22px; }
  .crown { top: 12px; right: 12px; width: 34px; height: 34px; font-size: 16px; }

  .reviews-section .section-head { gap: 4px; }
  .review-score > strong { font-size: 43px; }
  .reviews-grid {
    width: calc(100% + 14px);
    padding: 4px 14px 18px 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .review-card,
  .review-card:nth-child(4),
  .review-card:nth-child(5) {
    padding: 18px;
    flex: 0 0 min(76vw, 285px);
    border-radius: 16px;
    scroll-snap-align: start;
  }
  .review-card > p { min-height: 0; margin: 13px 0; font-size: 13px; line-height: 1.55; }
  .reviewer > span { width: 36px; height: 36px; }
  .stars { font-size: 12px; }

  .seo-overview-grid { gap: 12px; }
  .seo-overview p { font-size: 14px; line-height: 1.7; }
  .seo-links { align-items: flex-start; flex-direction: column; }
  .seo-landing { gap: 55px; }
  .seo-point-grid { gap: 12px; }
  .seo-point-grid article { padding: 22px; }
  .seo-point-grid h2 { font-size: 22px; }
  .seo-related { align-items: flex-start; flex-direction: column; }
  .seo-page-hero { padding: 62px 0; }
  .page-hero h1 { font-size: clamp(39px, 12vw, 54px); }

  .detail-gallery { grid-template-columns: 1fr; }
  .detail-gallery img { height: 240px; }

  footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid .footer-brand-logo { width: 78px; }
  .footer-social-icons { gap: 11px; }
  .footer-social-icons a { width: 44px; height: 44px; }
  .social-help { max-width: 280px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 20px; }
  .developer-credit {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
  }
  .developer-logo { width: 52px; height: 52px; flex-basis: 52px; }
  .developer-logo img { width: 74px; height: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .crown { animation: none; }
  .hero-slide { transition: none; }
}
