/* ========================================================
   Waterside Residences — Forest Reserve Landing
   Theme: Deep Emerald Forest + Warm Champagne Gold
   ======================================================== */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;

  --cream: oklch(0.975 0.012 95);
  --ink: oklch(0.18 0.018 160);
  --forest: oklch(0.36 0.058 160);
  --forest-deep: oklch(0.22 0.045 160);
  --gold: oklch(0.76 0.13 80);
  --gold-soft: oklch(0.88 0.08 88);

  --background: var(--cream);
  --foreground: var(--ink);
  --card: oklch(1 0 0);
  --muted: oklch(0.94 0.012 95);
  --muted-foreground: oklch(0.45 0.02 160);
  --secondary: oklch(0.94 0.018 95);
  --border: oklch(0.88 0.015 95);
  --input: oklch(0.92 0.012 95);
  --destructive: oklch(0.55 0.22 25);

  --gradient-gold: #A9262D;
  --gradient-forest: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  --gradient-overlay: linear-gradient(180deg, oklch(0.18 0.018 160 / 0) 0%, oklch(0.18 0.018 160 / 0.85) 100%);
  --shadow-elegant: 0 30px 60px -30px oklch(0.22 0.045 160 / 0.35);
  --shadow-card: 0 10px 30px -15px oklch(0.22 0.045 160 / 0.2);
  --shadow-gold: 0 8px 24px -8px oklch(0.76 0.13 80 / 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
* { border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Layout */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
}
.site-header .inner {
  height: 5rem; display: flex; align-items: center; justify-content: space-between;
}
.site-nav { display: none; gap: 2rem; }
@media (min-width: 1024px) { .site-nav { display: flex; align-items: center; } }
.site-nav a {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: #000;
  transition: color 0.2s;
}
.site-nav a:hover { color: #A9262D; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.22em;
  border-radius: 9999px; color: #fff;
  background: var(--gradient-gold); box-shadow: 0px 0px 10px #a9262d6b;
  border: none; cursor: pointer; transition: filter 0.2s;
  font-family: inherit; font-weight: 500;
}
.btn-gold:hover { filter: brightness(1.05); }
.btn-gold-sm { padding: 0.625rem 1.25rem; letter-spacing: 0.2em; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.22em;
  border-radius: 9999px; color: white;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

/* Logo */
.logo-mark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.42em;
  font-size: 1.45rem;
  color: #000;
  position: relative;
  padding: 0.25rem 0 0.4rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.logo-mark.light { color: var(--cream); }
.logo-mark::after {
  content: ""; position: absolute;
  left: 8%; right: 8%; bottom: 0;
  height: 1px; background: #A9262D;
}
.logo-leaf { width: 18px; height: 18px; color: #A9262D; }

/* Heading ornament */
.heading-ornament {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: oklch(0.48 0.17 23.56);
}
.heading-ornament::before, .heading-ornament::after {
  content: ""; width: 2.5rem; height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.48 0.17 23.56), transparent);
}
.section-heading { max-width: 42rem; margin-bottom: 3rem; }
.section-heading h2 {
  font-size: 2.25rem; line-height: 1.15; color: #000;
  margin-top: 1.25rem;
}
@media (min-width: 768px) { .section-heading h2 { font-size: 3rem; } }
.section-heading.light h2 { color: var(--cream); }

/* Hero */
.hero {
  position: relative; height: 92vh; min-height: 640px;
  width: 100%; overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero .overlay { position: absolute; inset: 0; background: var(--gradient-overlay); }
.hero .tint { position: absolute; inset: 0; background: oklch(0.18 0.018 160 / 0.25); }
.hero .content {
  position: relative; z-index: 10; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 5rem;
}
@media (min-width: 768px) { .hero .content { padding-bottom: 7rem; } }
.hero .badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.75rem; margin-bottom: 1.5rem;
  border-radius: 9999px; font-size: 0.625rem;
  text-transform: uppercase; letter-spacing: 0.3em;
  backdrop-filter: blur(8px);
  background: oklch(1 0 0 / 0.12);     color: oklch(1 0 0);
    border: 1px solid #a9262db3;;
}
.hero .badge .dot {
  width: 6px; height: 6px; border-radius: 9999px; background: #fff;
}
.hero h1 {
  font-size: 3rem; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--cream); max-width: 48rem;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 5.5rem; } }
.hero h1 .accent { color: oklch(0.48 0.17 23.56); font-style: italic; }
.hero .lede {
  margin-top: 1rem; font-size: 1.125rem; max-width: 34rem;
  line-height: 1.6; color: oklch(0.95 0.01 95 / 0.85);
}
.hero .ctas {
  margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.hero-stats {
  margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 32rem;
}
.hero-stats .label {
  font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.25em; color: #fff;
}
.hero-stats .value { margin-top: 0.25rem; font-size: 0.95rem; color: white; }

/* Two-column layout */
.layout-grid {
  padding: 4rem 0;
  display: grid; gap: 2.5rem;
}
@media (min-width: 768px) { .layout-grid { padding: 6rem 0; } }
@media (min-width: 1024px) {
  .layout-grid { grid-template-columns: 8fr 4fr; gap: 3.5rem; }
}
.content-col { display: flex; flex-direction: column; gap: 6rem; }
.aside-col { position: relative; }
@media (min-width: 1024px) {
  .aside-col .sticky { position: sticky; top: 7rem; }
}

/* Sections */
section { scroll-margin-top: 6rem; }
.muted { color: var(--muted-foreground); }
.lead-text {
  font-size: 1rem; line-height: 1.7;
  color: #000;
  max-width: 48rem;
}
@media (min-width: 768px) { .lead-text { font-size: 1.125rem; } }
.rera-badge {
  margin-top: 2rem; display: inline-block;
  padding: 0.5rem 1rem; border-radius: 0.375rem;
 border: 1px solid #ebe6df;
    background: #ebe6df;
  font-size: 0.75rem; letter-spacing: 0.04em;
  color: #684c1b;
}

/* Highlight cards */
.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.amenities-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }

.highlight-card {
  padding: 1.75rem; border-radius: 0.75rem;
  background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s;
}
.highlight-card:hover { border-color: #a9262d; }
.highlight-num {
  width: 2.75rem; height: 2.75rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 0.875rem; font-weight: 500;
  background: var(--gradient-gold); color: #fff;
}
.highlight-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--forest-deep); }
.highlight-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem;
}
@media (min-width: 768px) { .gallery { gap: 1rem; } }
.gallery figure {
  position: relative; overflow: hidden; border-radius: 0.75rem;
  margin: 0; cursor: pointer;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, oklch(0.48 0.17 23.56) 80%, transparent), transparent);
}
.gallery figcaption {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 1;
  color: white; font-size: 0.875rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.g-1 { grid-column: span 6; height: 18rem; }
.g-2, .g-3, .g-4, .g-5 { grid-column: span 3; height: 11rem; }
@media (min-width: 768px) {
  .g-1 { grid-column: span 4; height: 24rem; }
  .g-2 { grid-column: span 2; height: 24rem; }
  .g-3, .g-4 { grid-column: span 2; height: 16rem; }
  .g-5 { grid-column: span 2; height: 16rem; }
}

/* Homes designed */
.homes-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .homes-grid { grid-template-columns: repeat(2, 1fr); } }
.home-card {
  position: relative; height: 20rem; border-radius: 0.75rem; overflow: hidden;
}
@media (min-width: 768px) { .home-card { height: 24rem; } }
.home-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.home-card:hover img { transform: scale(1.05); }
.home-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, oklch(0.48 0.17 23.56) 80%, transparent), transparent);
}
.home-card h3 {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 1; color: white; font-size: 1.875rem;
}

/* Amenities */
.amenity-card {
  padding: 1.25rem; border-radius: 0.5rem;
  background: var(--card); border: 1px solid var(--border);
  transition: background 0.2s;
}
.amenity-card:hover { background: var(--secondary); }
.amenity-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.amenity-icon {
  width: 2rem; height: 2rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-gold);
}
.amenity-card h4 { font-size: 1.125rem; color: #684c1b; }
.amenity-card p { font-size: 0.75rem; color: #4c4c4c; line-height: 1.6; }

/* Specs */
.spec-card {
  padding: 1.75rem; border-radius: 0.75rem;
  border: 1px solid var(--border); background: var(--card);
}
.spec-card h4 {
  font-size: 1.5rem; margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #684c1b;
  color: #684c1b;
}
.spec-card li {
  font-size: 0.875rem; line-height: 1.6;
  display: flex; gap: 0.5rem; margin-bottom: 0.625rem;
  color: #4c4c4c;
}
.spec-card li::before { content: "◆"; color: #684c1b; margin-top: 2px; }

/* Location */
.location-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
.map-card, .table-card {
  border-radius: 0.75rem; overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
}
.map-card img { width: 100%; height: 18rem; object-fit: cover; }
.map-card .meta { padding: 1.25rem; text-align: center; }
.map-card h4 { font-size: 1.125rem; color: #000; }
.map-card .sub { font-size: 0.75rem; color: #4c4c4c; margin-top: 0.25rem; }
.loc-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.loc-table thead tr { background: #684c1b; }
.loc-table th {
  padding: 0.75rem 1.25rem; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
}
.loc-table th:first-child { text-align: left; color: var(--cream); }
.loc-table th:last-child { text-align: right; color: #fff; }
.loc-table td { padding: 0.625rem 1.25rem; }
.loc-table td:first-child { color: #4c4c4c; }
.loc-table td:last-child { text-align: right; color:#4c4c4c; }
.loc-table tbody tr:nth-child(odd) { background: color-mix(in oklab, var(--background) 40%, transparent); }
.table-card .footnote {
  padding: 0.75rem 1.25rem; font-size: 11px;
  color: #4c4c4c;
  border-top: 1px solid var(--border);
}

/* Sustainability */
.sustain-card {
  position: relative; padding: 1.75rem; border-radius: 0.75rem;
  overflow: hidden; color: white;
  background: #684c1b;
}
.sustain-card .icon-wrap {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  margin-bottom: 1rem; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-gold);
}
.sustain-card h4 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--cream); }
.sustain-card p { font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.75); }

/* Japanese excellence */
.japan-section {
  position: relative; padding: 4rem 1rem; border-radius: 1rem;
  overflow: hidden; margin: 0 -1rem;
  background: #684c1bd6;
}
.japan-section .heading-ornament{
    color: oklch(1 0 0);
}
.japan-section .heading-ornament::before,.japan-section .heading-ornament::after{
    background: linear-gradient(90deg, transparent, oklch(1 0 0), transparent);
}
@media (min-width: 640px) { .japan-section { padding: 4rem 1.5rem; margin: 0 -1.5rem; } }
@media (min-width: 1024px) { .japan-section { padding: 4rem 2.5rem; margin: 0 -2.5rem; } }
.japan-section > .bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.25; mix-blend-mode: overlay;
}
.japan-section .inner { position: relative; z-index: 10; }
.partner-grid {
  display: grid; gap: 1.25rem; max-width: 48rem;
}
@media (min-width: 768px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
.partner-card {
  padding: 1.25rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  background: oklch(1 0 0 / 0.05);
}
.partner-card .role {
  font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.3em; margin-bottom: 0.25rem; color: #fff;
}
.partner-card .name { font-size: 1rem; color: rgba(255,255,255,0.9); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-radius: 0.5rem; border: 1px solid var(--border);
  background: var(--card); transition: background 0.2s;
}
.faq-item[open] { background: var(--secondary); }
.faq-item summary {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-size: 0.75rem; font-weight: 500;
  width: 2rem; flex-shrink: 0;
  color: oklch(0.44 0.07 78.28); font-variant-numeric: tabular-nums;
}
.faq-q {
  flex: 1; font-size: 1rem; color: oklch(0.44 0.07 78.28);
  font-family: var(--font-display);
}
@media (min-width: 768px) { .faq-q { font-size: 1.125rem; } }
.faq-toggle {
  width: 1.75rem; height: 1.75rem; flex-shrink: 0;
  border-radius: 9999px; border: 1px solid oklch(0.44 0.07 78.28);
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.44 0.07 78.28); transition: transform 0.2s;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.25rem 1.25rem 3.75rem;
  font-size: 0.875rem; color: #4c4c4c; line-height: 1.6;
}

/* Sticky form */
.lead-form {
  border-radius: 1rem; overflow: hidden;
  border: 1px solid #a9262d4f;
  background: var(--card); box-shadow: 0px 0px 10px #a9262d4f ;
}
.lead-form-head {
  padding: 1.5rem 1.5rem 1.25rem; text-align: center;
  background: #684c1b;
}
.lead-form-head .pill {
  display: inline-block; padding: 0.25rem 0.75rem; margin-bottom: 0.75rem;
  font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase;
  border-radius: 9999px;
  background: var(--gradient-gold); color: oklch(1 0 0);
}
.lead-form-head h3 { font-size: 1.5rem; line-height: 1.2; color: var(--cream); }
.lead-form-head h3 .accent { color: #fff; }
.lead-form-head .sub {
  margin-top: 0.5rem; font-size: 0.75rem;
  color: oklch(0.95 0.01 95 / 0.75);
}
.lead-form form { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.lead-form input, .lead-form select {
  width: 100%; height: 2.75rem; padding: 0 0.75rem;
  border-radius: 0.375rem; border: 1px solid var(--input);
  background: var(--background); font-size: 0.875rem;
  font-family: inherit; color: var(--foreground);
}
.lead-form input::placeholder { color: color-mix(in oklab, var(--muted-foreground) 70%, transparent); }
.lead-form input:focus, .lead-form select:focus {
  outline: none; box-shadow: 0 0 0 1px oklch(0.48 0.17 23.56);
}
.field-error { margin-top: 0.25rem; font-size: 0.75rem; color: var(--destructive); }
.lead-form button[type="submit"] {
  width: 100%; height: 3rem; border-radius: 0.375rem; border: none;
  font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: #fff; cursor: pointer;
  background: var(--gradient-gold);
  transition: filter 0.2s;
  font-family: inherit;
}
.lead-form button[type="submit"]:hover { filter: brightness(1.05); }
.lead-form button[type="submit"]:disabled { opacity: 0.6; cursor: wait; }
.lead-form .privacy {
  font-size: 11px; text-align: center;
  color: #4c4c4c; padding-top: 0.25rem;
}
.lead-success { padding: 2rem; text-align: center; }
.lead-success .check {
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-gold);
}
.lead-success h4 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.lead-success p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Trust badges */
.trust-grid {
  margin-top: 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem; text-align: center;
}
.trust-grid > div {
  padding: 0.75rem; border-radius: 0.5rem;
  background: var(--card); border: 1px solid var(--border);
}
.trust-grid .a { font-size: 0.75rem; font-weight: 600; color:oklch(0.48 0.17 23.56); }
.trust-grid .b {
  font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: #4c4c4c;
  margin-top: 0.125rem;
}

/* Final CTA */
.final-cta {
  position: relative; padding: 5rem 1rem; overflow: hidden;
  background: #000000d6;
}
.final-cta .heading-ornament{
    color: oklch(1 0 0);
}
.final-cta .heading-ornament{
    color: oklch(1 0 0);
}
.final-cta .heading-ornament::before,.final-cta .heading-ornament::after{
    background: linear-gradient(90deg, transparent, oklch(1 0 0), transparent);
}
@media (min-width: 768px) { .final-cta { padding: 7rem 1rem; } }
.final-cta > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.2;
}
.final-cta .inner {
  position: relative; z-index: 10; max-width: 48rem;
  margin: 0 auto; text-align: center;
}
.final-cta .heading-ornament { justify-content: center; margin-bottom: 1.25rem; }
.final-cta h2 { font-size: 2.25rem; line-height: 1.15; color: white; }
@media (min-width: 768px) { .final-cta h2 { font-size: 3.75rem; } }
.final-cta h2 .accent { color: var(--gold); font-style: italic; }
.final-cta p {
  margin-top: 1.25rem; max-width: 32rem; margin-left: auto; margin-right: auto;
  font-size: 1.125rem; color: rgba(255,255,255,0.75);
}
.final-cta .btn-gold { margin-top: 2rem; padding: 1rem 2rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--ink); color: white;
}
.site-footer .grid {
  display: grid; gap: 2rem; padding: 3rem 0;
}
@media (min-width: 768px) { .site-footer .grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer .blurb {
  margin-top: 1rem; font-size: 0.875rem; max-width: 20rem;
  color: rgba(255,255,255,0.6); line-height: 1.6;
}
.site-footer .col-title {
  font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.3em; margin-bottom: 1rem; color: #fff;
}
.site-footer ul li {
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.site-footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0; text-align: center;
  font-size: 11px; color: rgba(255,255,255,0.4);
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up 0.8s ease-out both; }
