/* ============================================================
   STANVEST PROJECTS — GLOBAL DESIGN SYSTEM
   style.css · Shared across all pages
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Custom Properties (Colour System) ────────────────── */
:root {
  /* Brand colours */
  --clr-light-brown:   #C8A97E;
  --clr-deep-brown:    #8B6A3E;
  --clr-warm-white:    #F5F0E8;
  --clr-espresso:      #3D2B1A;
  --clr-white:         #FFFFFF;

  /* Derived / semantic tokens */
  --clr-bg:            var(--clr-warm-white);
  --clr-surface:       var(--clr-white);
  --clr-primary:       var(--clr-deep-brown);
  --clr-primary-dark:  var(--clr-espresso);
  --clr-accent:        var(--clr-light-brown);
  --clr-text:          var(--clr-espresso);
  --clr-text-muted:    #7A6352;
  --clr-border:        #E2D5C3;
  --clr-overlay:       rgba(61, 43, 26, 0.62);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --fs-xs:   0.75rem;    /*  12px */
  --fs-sm:   0.875rem;   /*  14px */
  --fs-base: 1rem;       /*  16px */
  --fs-md:   1.125rem;   /*  18px */
  --fs-lg:   1.375rem;   /*  22px */
  --fs-xl:   1.75rem;    /*  28px */
  --fs-2xl:  2.25rem;    /*  36px */
  --fs-3xl:  3rem;       /*  48px */
  --fs-4xl:  3.75rem;    /*  60px */
  --fs-5xl:  4.75rem;    /*  76px */

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-black:   900;

  --lh-tight:  1.15;
  --lh-snug:   1.35;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

  --ls-tight:  -0.03em;
  --ls-normal:  0em;
  --ls-wide:    0.08em;
  --ls-wider:   0.14em;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-gap:   clamp(4rem, 8vw, 7rem);

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(61,43,26,0.07);
  --shadow-md:  0 6px 24px rgba(61,43,26,0.10);
  --shadow-lg:  0 16px 48px rgba(61,43,26,0.14);
  --shadow-xl:  0 28px 72px rgba(61,43,26,0.18);

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   180ms;
  --dur-base:   320ms;
  --dur-slow:   520ms;

  /* Navbar */
  --nav-h: 80px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }

/* ── Typography Utilities ─────────────────────────────────── */
.font-heading { font-family: var(--ff-heading); }
.font-body    { font-family: var(--ff-body); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--clr-espresso);
}

h1 { font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); }
h3 { font-size: clamp(var(--fs-xl),  3vw, var(--fs-3xl)); }
h4 { font-size: clamp(var(--fs-lg),  2.5vw, var(--fs-2xl)); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p { line-height: var(--lh-normal); }

.text-muted  { color: var(--clr-text-muted); }
.text-accent { color: var(--clr-accent); }
.text-primary { color: var(--clr-primary); }
.italic      { font-style: italic; }

/* Section label / eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-gap); }

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  font-weight: var(--fw-light);
}

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-6); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.btn:hover::after { opacity: 1; }

/* Primary button */
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(139,106,62,0.30);
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  box-shadow: 0 8px 32px rgba(139,106,62,0.40);
  transform: translateY(-2px);
}

/* Outline button */
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* Ghost on dark backgrounds */
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* Accent button */
.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-espresso);
  box-shadow: 0 4px 20px rgba(200,169,126,0.35);
}

.btn-accent:hover {
  background: var(--clr-deep-brown);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ── Image Placeholder ────────────────────────────────────── */
/*
  ████████████████████████████████████████
  📷  IMAGE PLACEHOLDER — HOW TO REPLACE
  Replace .img-placeholder divs with <img> tags pointing
  to your actual construction photos.
  Each placeholder has a data-caption attribute describing
  the recommended photo subject.
  ████████████████████████████████████████
*/
.img-placeholder {
  background: linear-gradient(
    135deg,
    #c8b89a 0%,
    #b09070 30%,
    #9a7a58 60%,
    #7a5a38 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-align: center;
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 18px
    );
}

.img-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.8;
  position: relative;
}

.img-placeholder .ph-label {
  position: relative;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  opacity: 0.75;
  max-width: 180px;
  line-height: var(--lh-snug);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-deep-brown));
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
}

.divider--center { margin-inline: auto; }

/* ── Tags / Badges ────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(200,169,126,0.15);
  color: var(--clr-primary);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* ── Scroll Reveal (IntersectionObserver) ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms;   opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 80ms;  opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    backdrop-filter var(--dur-base) var(--ease-out);
}

/* Transparent state (at page top) */
.navbar.nav-transparent {
  background: transparent;
}

/* Scrolled state */
.navbar.nav-scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(61,43,26,0.10);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo .logo-name {
  font-family: var(--ff-heading);
  font-size: 1.375rem;
  font-weight: var(--fw-bold);
  color: var(--clr-espresso);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast);
}

.nav-logo .logo-tag {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-top: 2px;
}

.navbar.nav-transparent .logo-name { color: var(--clr-white); }
.navbar.nav-transparent .logo-tag  { color: rgba(200,169,126,0.9); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-normal);
  color: var(--clr-text-muted);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--radius-pill);
  transition: transform var(--dur-base) var(--ease-out);
}

.nav-link:hover { color: var(--clr-primary); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-link.active {
  color: var(--clr-primary);
  font-weight: var(--fw-semi);
}

.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

/* Transparent nav — white links */
.navbar.nav-transparent .nav-link { color: rgba(255,255,255,0.8); }
.navbar.nav-transparent .nav-link:hover,
.navbar.nav-transparent .nav-link.active { color: var(--clr-white); }

.nav-cta {
  margin-left: var(--sp-4);
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-xs);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--clr-espresso);
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
}

.navbar.nav-transparent .nav-hamburger span { background: var(--clr-white); }

/* Hamburger open state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-espresso);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer .nav-link {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-xl);
  font-family: var(--ff-heading);
  font-weight: var(--fw-regular);
  letter-spacing: -0.01em;
  padding: var(--sp-3) var(--sp-8);
}

.nav-drawer .nav-link::after { display: none; }

.nav-drawer .nav-link:hover,
.nav-drawer .nav-link.active { color: var(--clr-white); }

.nav-drawer .nav-cta {
  margin-top: var(--sp-4);
  margin-left: 0;
  font-size: var(--fs-base);
  padding: 0.875rem 2.5rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--clr-espresso);
  color: rgba(255,255,255,0.65);
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}

.footer-brand .logo-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: var(--sp-1);
}

.footer-brand .logo-tag {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  display: block;
  margin-bottom: var(--sp-5);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-5);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-col a:hover { color: var(--clr-white); }

.footer-contact-item {
  display: flex;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-4);
}

.footer-contact-item .icon {
  flex-shrink: 0;
  width: 18px;
  color: var(--clr-accent);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom p { font-size: var(--fs-xs); opacity: 0.5; }

.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-bottom-links a {
  font-size: var(--fs-xs);
  opacity: 0.5;
  transition: opacity var(--dur-fast);
}

.footer-bottom-links a:hover { opacity: 1; }

/* ── Page Hero Band (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--clr-espresso);
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,169,126,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139,106,62,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-geo {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(200,169,126,0.10);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-geo::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(200,169,126,0.08);
  border-radius: 50%;
}

.page-hero .container { position: relative; }

.page-hero-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
}

.page-hero h1 {
  color: var(--clr-white);
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  max-width: 700px;
  margin-bottom: var(--sp-5);
}

.page-hero p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: var(--lh-loose);
}

/* ── Responsive ───────────────────────────────────────────── */

/* Tablet */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --nav-h: 68px; }

  .nav-links,
  .nav-cta { display: none; }

  .nav-hamburger { display: flex; }

  .nav-drawer { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-brand p { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ── Accessibility ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ── Utility overrides ────────────────────────────────────── */
.bg-warm-white  { background: var(--clr-warm-white); }
.bg-white       { background: var(--clr-white); }
.bg-espresso    { background: var(--clr-espresso); }
.bg-primary     { background: var(--clr-primary); }

.mt-auto  { margin-top: auto; }
.mb-0     { margin-bottom: 0; }
.text-center { text-align: center; }
.w-full   { width: 100%; }
.sr-only  {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
