/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy: #16306b;
  --navy-deep: #0c1f4a;
  --orange: #e8590c;
  --orange-light: #ff8c42;
  --cream: #f7f5f1;
  --paper: #ffffff;
  --ink: #1a1f2b;
  --muted: #5b6478;

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", "Manrope", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--serif); }
::selection { background: var(--orange); color: var(--paper); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--ink);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; font-size: .78rem;
  color: var(--orange); margin-bottom: .6rem;
}
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section-head p { color: var(--muted); margin-top: .9rem; font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.7rem; border-radius: 999px; font-weight: 700;
  font-size: .95rem; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--paper); box-shadow: 0 10px 30px -10px rgba(232, 89, 12, .6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -10px rgba(232, 89, 12, .7); }
.btn-ghost { background: transparent; color: var(--paper); border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--paper); }
.btn-outline-navy { color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--paper); }

/* =============================================================
   5. Header / Nav
   ============================================================= */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem var(--gutter);
  background: rgba(247, 245, 241, .96); backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -16px rgba(12, 31, 74, .25);
  transition: box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px -16px rgba(12, 31, 74, .35);
  padding-block: .55rem;
}
.brand { display: flex; align-items: center; gap: .9rem; font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.brand img { height: 68px; width: auto; transition: height .4s var(--ease-out); }
.site-header.is-scrolled .brand img { height: 56px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.12; font-family: var(--serif); }
.brand-name strong { font-size: 1.55rem; }
.brand-name span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); font-family: var(--sans); font-weight: 700; }
@media (min-width: 720px) {
  .brand img { height: 80px; }
  .site-header.is-scrolled .brand img { height: 64px; }
  .brand-name strong { font-size: 1.85rem; }
  .brand-name span { font-size: .85rem; }
}

.nav-links { display: none; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-call { display: none; }

.lang-toggle {
  display: flex; border: 1.5px solid var(--navy); border-radius: 999px; overflow: hidden;
}
.lang-toggle button {
  padding: .45rem .85rem; font-weight: 700; font-size: .82rem; color: var(--navy);
  transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.lang-toggle button.is-active { background: var(--navy); color: var(--paper); }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: .6rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .35s var(--ease-out); }

@media (min-width: 1280px) {
  .nav-call { display: inline-flex; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; gap: 1.6rem; }
  .nav-links a { font-weight: 600; font-size: .95rem; color: var(--navy); position: relative; padding-block: .3rem; }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--orange);
    transition: right .4s var(--ease-out);
  }
  .nav-links a:hover::after { right: 0; }
  .nav-toggle { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 480; background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateY(-100%); transition: transform .55s var(--ease-out);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { color: var(--cream); font-family: var(--serif); font-size: 1.7rem; }
.mobile-nav a:hover { color: var(--orange-light); }

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #1c3a82 100%);
  color: var(--cream); overflow: clip; padding-top: 6rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .14; pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, var(--orange) 0, transparent 38%),
    radial-gradient(circle at 86% 78%, var(--orange-light) 0, transparent 42%);
  filter: blur(60px);
}
.hero-grid {
  position: relative; z-index: 2; display: grid; gap: 2.6rem;
  padding-block: clamp(2.5rem, 7vw, 5rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 800;
  color: var(--orange-light); margin-bottom: 1.3rem;
  font-family: var(--sans);
  background: rgba(232,89,12,.12);
  border: 1px solid rgba(232,89,12,.35);
  border-radius: 999px; padding: .45rem 1.1rem .45rem .75rem;
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 0 3px rgba(232,89,12,.3);
  flex: none;
}
.hero h1 {
  font-size: clamp(2.5rem, 7.4vw, 4.8rem); color: var(--paper);
  max-width: 16ch; font-family: var(--serif);
  font-weight: 700; line-height: 1.08; letter-spacing: -.03em;
}
.hero h1 em {
  font-style: italic; color: var(--orange-light);
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .05em;
  height: 3px; background: var(--orange-light); border-radius: 2px; opacity: .5;
}
.hero p.lede {
  margin-top: 1.5rem; max-width: 50ch;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: rgba(247,245,241,.80);
  font-weight: 400; line-height: 1.8; letter-spacing: .01em;
  border-left: 3px solid rgba(232,89,12,.5); padding-left: 1.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 3rem;
  border-top: 1px solid rgba(247,245,241,.18); padding-top: 1.8rem;
}
.hero-stats .stat:last-child { grid-column: 1 / -1; }
@media (min-width: 540px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stats .stat:last-child { grid-column: auto; }
}
.hero-stats .stat strong {
  display: block; font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--orange-light);
}
.hero-stats .stat span { font-size: .82rem; color: rgba(247,245,241,.7); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(247,245,241,.6);
}
.scroll-cue .line { width: 1px; height: 38px; background: linear-gradient(var(--orange-light), transparent); animation: scrollcue 2.2s var(--ease-out) infinite; }
@keyframes scrollcue { 0% { transform: scaleY(.3); transform-origin: top; opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(.3); transform-origin: bottom; opacity: .3; } }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
}

/* =============================================================
   7. About
   ============================================================= */
.about { background: var(--paper); }
.about-grid { display: grid; gap: clamp(2rem, 6vw, 4rem); align-items: center; }
.about-art {
  position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
}
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(247,245,241,.92); backdrop-filter: blur(10px);
  border-radius: 16px; padding: .9rem 1.1rem; display: flex; align-items: center; gap: .85rem; flex-wrap: wrap;
}
.about-badge strong { font-family: var(--serif); font-size: 1.9rem; color: var(--orange); }
.about-badge span { font-size: .82rem; color: var(--muted); line-height: 1.3; }
.about-copy h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); margin-bottom: 1.2rem; }
.about-copy p { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.about-copy p + p { margin-top: 1rem; }
.about-points { list-style: none; display: grid; gap: .85rem; margin-top: 1.8rem; }
.about-points li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.about-points li::before {
  content: "✓"; flex: none; display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: var(--paper);
  font-size: .8rem; font-weight: 800;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: .85fr 1.15fr; } }

/* =============================================================
   8. Services
   ============================================================= */
.services { background: var(--cream); }
.services-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.service-card {
  background: var(--paper); border-radius: 20px; padding: 1.7rem;
  border: 1px solid rgba(22,48,107,.08);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -22px rgba(22,48,107,.32); border-color: transparent; }
.service-card .ic { font-size: 1.9rem; display: inline-block; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.08rem; font-family: var(--sans); font-weight: 800; letter-spacing: -.01em; }
.svc-desc { margin-top: .6rem; font-size: .88rem; color: var(--muted); line-height: 1.55; }
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   9. Gallery
   ============================================================= */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1;
  background: linear-gradient(160deg, #d8dde8, #c2cad9);
}
.ba-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s var(--ease-out), transform .7s var(--ease-out);
}
.ba-after { opacity: 1; }
.ba-before { opacity: 0; }
.gallery-item:hover .ba-after, .gallery-item:focus-within .ba-after { opacity: 0; }
.gallery-item:hover .ba-before, .gallery-item:focus-within .ba-before { opacity: 1; }
.gallery-item:hover .ba-img, .gallery-item:focus-within .ba-img { transform: scale(1.06); }
.ba-tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px; color: var(--paper);
  transition: opacity .4s var(--ease-out);
}
.ba-tag-after { background: var(--navy); opacity: 1; }
.ba-tag-before { background: var(--orange); opacity: 0; }
.gallery-item:hover .ba-tag-after, .gallery-item:focus-within .ba-tag-after { opacity: 0; }
.gallery-item:hover .ba-tag-before, .gallery-item:focus-within .ba-tag-before { opacity: 1; }
.gallery-item:focus-within { outline: 2px solid var(--orange); outline-offset: 2px; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   9b. Reviews
   ============================================================= */
.reviews { background: var(--cream); }

/* Marquee — endless scrolling ribbon of review cards */
.reviews-marquee {
  margin-bottom: 3rem; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex; gap: 1.1rem; width: max-content;
  animation: reviews-scroll 38s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--paper); border-radius: 20px; padding: 1.7rem;
  border: 1px solid rgba(22,48,107,.08); display: flex; flex-direction: column; gap: 1rem;
  width: min(360px, 86vw); flex: none;
}
.review-stars { color: var(--orange); letter-spacing: .12em; font-size: 1.05rem; }
.review-card p.quote { color: var(--ink); font-size: 1rem; line-height: 1.65; }
.review-who { display: flex; flex-direction: column; gap: .15rem; margin-top: auto; }
.review-who strong { font-family: var(--serif); font-size: 1.05rem; }
.review-who span { font-size: .82rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee { overflow-x: auto; }
  .reviews-track { animation: none; }
}

.review-form-wrap {
  max-width: 720px; margin-inline: auto; text-align: center;
  background: var(--paper); border-radius: 24px; padding: clamp(1.8rem, 5vw, 3rem);
  border: 1px solid rgba(22,48,107,.08); box-shadow: 0 30px 60px -32px rgba(22,48,107,.28);
}
.review-form-wrap h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.review-form-wrap > p { color: var(--muted); margin-top: .7rem; max-width: 50ch; margin-inline: auto; }
.review-form { text-align: left; margin-top: 1.6rem; }
.review-form .btn { margin-top: .4rem; width: 100%; justify-content: center; }

/* =============================================================
   10. Service area
   ============================================================= */
.area {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--cream);
}
.area-grid { display: grid; gap: 2.4rem; align-items: center; }
.area-copy h2 { color: var(--paper); font-size: clamp(1.9rem, 4.4vw, 3rem); }
.area-copy p { color: rgba(247,245,241,.78); margin-top: 1rem; font-size: 1.05rem; max-width: 50ch; }
.area-list { list-style: none; display: grid; gap: .8rem; margin-top: 1.8rem; }
.area-list li {
  display: flex; align-items: center; gap: .9rem; font-family: var(--serif); font-size: 1.4rem;
  padding: .9rem 1.2rem; border-radius: 14px; background: rgba(247,245,241,.07);
  border: 1px solid rgba(247,245,241,.14);
}
.area-list li::before { content: "📍"; font-size: 1.1rem; }
.area-map {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid rgba(247,245,241,.16);
}
.area-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.05); }
@media (min-width: 960px) { .area-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   11. Contact
   ============================================================= */
.contact { background: var(--cream); }
.contact-grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); }
.contact-info h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.contact-info p { color: var(--muted); margin-top: 1rem; max-width: 50ch; }
.contact-cards { display: grid; gap: .9rem; margin-top: 1.8rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  background: var(--paper); border-radius: 16px; border: 1px solid rgba(22,48,107,.08);
  font-weight: 700; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.contact-card:hover { transform: translateX(6px); box-shadow: 0 18px 36px -20px rgba(22,48,107,.35); }
.contact-card .ic {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(232,89,12,.12); color: var(--orange); font-size: 1.25rem; flex: none;
}
.contact-card span { color: var(--muted); font-weight: 500; font-size: .85rem; display: block; }

.form-card {
  background: var(--paper); border-radius: 24px; padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(22,48,107,.08); box-shadow: 0 30px 60px -32px rgba(22,48,107,.28);
}
.form-row { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 700; color: var(--navy); }
.field input, .field textarea, .field select {
  padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid rgba(22,48,107,.16);
  background: var(--cream); font: inherit; color: var(--ink);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); background: var(--paper); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.form-btns { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: .4rem; }
.btn-whatsapp {
  background: #25d366; color: var(--paper);
  box-shadow: 0 10px 28px -10px rgba(37,211,102,.55);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -10px rgba(37,211,102,.65); }
.btn-email {
  background: var(--navy); color: var(--paper);
  box-shadow: 0 10px 28px -10px rgba(22,48,107,.45);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn-email:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -10px rgba(22,48,107,.6); }
.btn-whatsapp:disabled, .btn-email:disabled { opacity: .7; transform: none; cursor: default; }
@media (max-width: 539px) { .form-btns { grid-template-columns: 1fr; } }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .8rem; text-align: center; }
@media (min-width: 720px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.05fr; } }

/* =============================================================
   12. Footer
   ============================================================= */
.site-footer {
  background: var(--navy-deep); color: rgba(247,245,241,.7);
  padding-block: 3rem 2rem;
}
.footer-grid {
  display: grid; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(247,245,241,.12);
}
.footer-brand { display: flex; align-items: center; gap: .7rem; color: var(--paper); font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.footer-brand img { height: 40px; }
.footer-grid p { max-width: 42ch; font-size: .92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { font-weight: 600; font-size: .92rem; color: rgba(247,245,241,.78); transition: color .3s var(--ease-out); }
.footer-links a:hover { color: var(--orange-light); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; padding-top: 1.6rem; font-size: .8rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr .8fr; } }

/* =============================================================
   13. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .scroll-cue .line { animation: none; }
  html { scroll-behavior: auto; }
}
