/* ============================================================
   DIVINA CROQUETA — Restyling mobile-first
   Color brand: #A6704E (marró terracotta)
   ============================================================ */

:root {
  --brand: #A6704E;
  --brand-dark: #8a5a3a;
  --brand-light: #f5ede6;
  --text: #2a2218;
  --text-muted: #6b5f55;
  --bg: #fff;
  --bg-alt: #fdfaf7;
  --border: #e8ddd5;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --topbar-h: 36px;
  --nav-h: 64px;
  --header-total: 100px; /* topbar + nav */
  --font-display: 'Amatic SC', cursive;
  --font-body: 'Nunito', sans-serif;
}

/* ============================================================
   TOP BAR
   ============================================================ */
#topbar {
  background: #2a1a10;
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: 36px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 20px; max-width: 1140px; margin: 0 auto; gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 10px; overflow: hidden; }
.topbar-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topbar-wa {
  display: flex; align-items: center; gap: 6px;
  color: #fff; background: #25D366; border-radius: 4px;
  padding: 3px 10px 3px 7px; font-size: .75rem; font-weight: 700;
  transition: background .15s; white-space: nowrap;
}
.topbar-wa:hover { background: #1ebe5d; }
.topbar-phone { letter-spacing: .02em; }
.topbar-badge {
  background: rgba(255,255,255,.2); border-radius: 3px;
  padding: 1px 5px; font-size: .65rem; text-transform: uppercase; letter-spacing: .06em;
}
.topbar-sep { color: rgba(255,255,255,.3); }
.topbar-email { color: rgba(255,255,255,.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 240px; }
.topbar-email:hover { color: #fff; }
.topbar-social {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.7); transition: color .15s; white-space: nowrap;
}
.topbar-social:hover { color: #fff; }

/* ============================================================
   WA FLOTANT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.55); color: #fff; }
.wa-float-label { white-space: nowrap; }

/* ============================================================
   PRESSUPOST
   ============================================================ */
.pressupost-section {
  background: linear-gradient(135deg, #3a2a1f 0%, #5c3d26 100%);
  color: #fff;
}
.pressupost-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
}
.pressupost-text .section-eyebrow { color: rgba(255,255,255,.65); }
.pressupost-text h2 { color: #fff; margin-bottom: 16px; }
.pressupost-text p { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.pressupost-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.pressupost-checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; color: rgba(255,255,255,.85);
}
.pressupost-checklist li::before { content: '✓'; color: #25D366; font-weight: 700; flex-shrink: 0; }
.pressupost-direct { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.pressupost-or { font-size: .9rem; color: rgba(255,255,255,.65); }
.pressupost-or a { color: rgba(255,255,255,.9); text-decoration: underline; }
.pressupost-form {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.pressupost-form h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--brand); margin-bottom: 20px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
ul { list-style: none; }

/* CONTAINER */
.container { width: min(100%, 1140px); margin: 0 auto; padding: 0 20px; }

/* SECTIONS */
.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); }
.section-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; display: block; }
.section-eyebrow.light { color: rgba(255,255,255,.8); }
.section-desc { color: var(--text-muted); margin-top: 12px; font-size: 1rem; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 7vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; }
p { font-size: 1rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: var(--font-body);
  font-size: .95rem; font-weight: 700; cursor: pointer; border: 2px solid transparent;
  transition: all .2s ease; text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.12); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 20px; max-width: 1140px; margin: 0 auto; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem; color: var(--text); transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--brand); background: var(--brand-light); }
.nav-links .nav-cta { background: var(--brand); color: #fff; padding: 8px 20px; border-radius: 50px; }
.nav-links .nav-cta:hover { background: var(--brand-dark); color: #fff; }

/* Burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--topbar-h));
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,5,.45) 0%, rgba(20,10,5,.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 40px 20px;
  max-width: 700px;
}
.hero-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.hero-content h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.4); margin-bottom: 20px; }
.hero-sub { font-size: clamp(.95rem, 2.5vw, 1.15rem); color: rgba(255,255,255,.88); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .2s; padding: 0; }
.dot.active { background: #fff; width: 22px; border-radius: 4px; }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip { background: var(--brand); color: #fff; padding: 36px 0; }
.intro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.intro-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.intro-icon { font-size: 1.75rem; }
.intro-item strong { font-size: .95rem; font-weight: 700; }
.intro-item span { font-size: .82rem; color: rgba(255,255,255,.82); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-images { position: relative; }
.img-main { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.img-secondary {
  position: absolute; bottom: -24px; right: -24px;
  width: 52%; border-radius: var(--radius); border: 4px solid #fff;
  box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover;
}
.about-text { padding-bottom: 24px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: .95rem; }
.check-list li::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); background: #fff; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { color: var(--text-muted); font-size: .95rem; }

/* ============================================================
   MENU
   ============================================================ */
.menu-section { background: var(--bg-alt); }
.menu-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 22px; border-radius: 50px; border: 2px solid var(--border);
  background: #fff; font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  cursor: pointer; color: var(--text-muted); transition: all .15s;
}
.tab-btn.active, .tab-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.menu-item {
  background: #fff; border-radius: var(--radius); padding: 16px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.menu-item img { width: 90px; height: 68px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.menu-item h4 { font-size: 1rem; margin-bottom: 4px; }
.menu-item p { font-size: .85rem; color: var(--text-muted); }
.menu-item ul { padding-left: 0; margin: 8px 0; }
.menu-item ul li { font-size: .85rem; color: var(--text-muted); padding: 2px 0; }
.menu-item ul li::before { content: '· '; color: var(--brand); }
.menu-badge { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: .75rem; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-bottom: 8px; }
.menu-note { font-size: .8rem; color: var(--text-muted); font-style: italic; margin-top: 8px; }
.menu-item.featured { grid-column: 1 / -1; max-width: 500px; }

/* ============================================================
   FOODTRUCK PARALLAX
   ============================================================ */
.foodtruck-section {
  position: relative; overflow: hidden;
  padding: 100px 0;
  color: #fff;
}
.foodtruck-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform .5s ease;
}
.foodtruck-overlay { position: absolute; inset: 0; background: rgba(20,10,5,.62); }
.foodtruck-content {
  position: relative; z-index: 2;
  max-width: 600px;
}
.foodtruck-content .section-eyebrow { color: rgba(255,255,255,.75); }
.foodtruck-content h2 { color: #fff; margin-bottom: 16px; }
.foodtruck-content p { color: rgba(255,255,255,.85); margin-bottom: 28px; }

/* ============================================================
   EQUIPAMENTS
   ============================================================ */
.equip-section { background: var(--bg-alt); }
.equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.equip-item { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.equip-item span { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.equip-svg { font-size: 0; display: flex; justify-content: center; margin-bottom: 12px; }
.equip-item h4 { margin-bottom: 6px; }
.equip-item p { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; transition: transform .2s, box-shadow .2s; }
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* ============================================================
   RODATGES
   ============================================================ */
.rodatges-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.rodatges-text h2 { margin-bottom: 16px; }
.rodatges-text p { color: var(--text-muted); margin-bottom: 16px; }
.rodatges-text p a { color: var(--brand); font-weight: 700; }
.rodatges-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn-outline-brand { background: transparent; color: var(--brand); border: 2px solid var(--brand); border-radius: 50px; }
.btn-outline-brand:hover { background: var(--brand); color: #fff; }
.rodatges-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.contact-item a, .contact-item span { font-size: 1rem; color: var(--text); }
.contact-item a:hover { color: var(--brand); }
.contact-whatsapp { margin-top: 8px; }

/* Form */
.contact-form { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .875rem; font-weight: 700; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: .95rem; color: var(--text); background: var(--bg);
  transition: border-color .15s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #3a2a1f; color: rgba(255,255,255,.8); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { margin-bottom: 12px; opacity: 1; }
.footer-brand p { font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,.65); }
.footer-links h5, .footer-contact h5 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: .875rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-links li a:hover { color: #fff; }
.footer-contact p { font-size: .9rem; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,.75); transition: color .15s; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-social a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p, .footer-bottom a { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; top: calc(var(--nav-h) + var(--topbar-h)); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 16px 20px 24px; gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    pointer-events: none;
  }
  .nav-links.open {
    opacity: 1; visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-links .nav-cta { text-align: center; margin-top: 8px; border-radius: var(--radius-sm); }

  .pressupost-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .img-secondary { display: none; }
  .rodatges-inner { grid-template-columns: 1fr; }
  .rodatges-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  :root { --nav-h: 58px; --topbar-h: 34px; }

  /* Topbar mòbil: simplificat */
  .topbar-email, .topbar-sep, .topbar-badge, .topbar-phone { display: none; }
  .topbar-wa { padding: 4px 10px; gap: 4px; }
  .topbar-social { font-size: 0; gap: 0; } /* oculta text, deixa icona */
  .topbar-social svg { width: 17px; height: 17px; }

  /* WA flotant mòbil: cercle sense text */
  .wa-float-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }

  .pressupost-direct { flex-direction: column; align-items: flex-start; }
  .section { padding: 52px 0; }

  .hero-content h1 { font-size: 2.6rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }

  .intro-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .services-grid { grid-template-columns: 1fr; }

  .menu-tabs { gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: .82rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item.featured { max-width: 100%; }
  .menu-item img { width: 72px; height: 56px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .15s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s ease both; }
