/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink: #0D0D0B;
  --ink-soft: #2A2A26;
  --mid: #6B6B62;
  --border: #E0DDD6;
  --cream: #F6F4EE;
  --warm-white: #FAFAF7;
  --accent: #1A3A2A;
  --accent-light: #2E5C42;
  --gold: #B8935A;
  --gold-light: #D4AF7A;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --nav-h: 68px;
  --max-w: 1200px;
  --section-pad: clamp(5rem, 10vw, 9rem);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--warm-white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-brand:hover { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== SHARED ELEMENTS ===== */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-primary.btn-large { padding: 16px 40px; font-size: 14px; }

.btn-ghost {
  display: inline-block;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--cream);
}

.link-arrow {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.link-arrow:hover { border-color: var(--accent); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: var(--nav-h) clamp(1.5rem, 5vw, 3.5rem) 0;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 4rem;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-frame {
  position: relative;
  width: min(420px, 100%);
}

.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}

.photo-accent {
  position: absolute;
  top: 18px; right: -18px;
  width: 100%; height: 100%;
  border: 1.5px solid var(--gold-light);
  border-radius: 3px;
  z-index: 0;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  padding: 1.1rem 0;
  margin: 4rem 0;
}

.marquee {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  width: max-content;
}

.marquee span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.marquee .dot { color: var(--gold); }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== VALUE SECTION ===== */
.value-section {
  padding: 0 clamp(1.5rem, 5vw, 3.5rem) var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.value-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 0.5rem;
}

.value-right p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 1.25rem;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background: var(--ink);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
}

.services-preview .section-label {
  max-width: var(--max-w);
  margin: 0 auto 2rem;
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  max-width: var(--max-w);
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
}

.service-card {
  display: block;
  padding: 2.5rem 2rem;
  background: var(--ink);
  transition: background 0.25s;
}

.service-card:hover { background: var(--ink-soft); }

.service-num {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.services-cta {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  text-align: center;
}

/* ===== STATS ===== */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: var(--section-pad) 2rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 5vw, 3.5rem) 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-top: 0.75rem;
}

.page-hero h1 em { font-style: italic; color: var(--accent); }

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 1.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.about-text p:last-child { margin-bottom: 0; }

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  border-radius: 3px;
}

.about-photo-bg {
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  z-index: -1;
}

.ethos-block {
  background: var(--accent);
  color: var(--white);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  margin: 0;
}

.ethos-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ethos-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
}

.ethos-block cite {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1.5rem;
  font-style: normal;
}

/* ===== SERVICES PAGE ===== */
.services-list {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.service-row:first-child { border-top: 1px solid var(--border); }

.service-row-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 0.3rem;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}

.service-row p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  padding-top: 0.35rem;
}

/* ===== APPS PAGE ===== */
.apps-grid {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.app-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.app-card-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.app-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.app-icon.coffee { background: #1A0A04; }
.app-icon.metric { background: var(--accent); }

.app-card-header-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.app-card-header-text .app-platform {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.app-card-body {
  padding: 1.5rem 2rem;
}

.app-card-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(26,58,42,0.07);
  padding: 4px 10px;
  border-radius: 20px;
}

.app-card-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.app-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4CAF50;
}

.status-dot.pending { background: var(--gold); }

.app-privacy-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.app-privacy-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea {
  height: 160px;
  resize: vertical;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-initials {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.footer-brand span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 3rem);
    min-height: auto;
    padding-bottom: 4rem;
  }
  .hero-visual { order: -1; }
  .hero-photo-frame { width: min(300px, 80vw); margin: 0 auto; }

  .value-grid,
  .about-body,
  .contact-wrap { grid-template-columns: 1fr; }

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

  .service-row { grid-template-columns: 48px 1fr; }
  .service-row p { grid-column: 2; }

  .stats-strip { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { flex: 0 0 50%; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
}
.faq-inner { max-width: var(--max-w); margin: 0 auto; }
.faq-header { margin-bottom: 3rem; }
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-top: 0.5rem;
}
.faq-header h2 em { font-style: italic; color: var(--accent); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  padding-bottom: 1.25rem;
}

/* ===== ISSUE FORM ===== */
.issue-section {
  border-top: 1px solid var(--border);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3.5rem);
}
.issue-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.issue-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
}
.issue-header h2 em { font-style: italic; color: var(--accent); }
.issue-header p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.issue-form .issue-form-group { margin-bottom: 1.25rem; }
.issue-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.issue-form input,
.issue-form select,
.issue-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.issue-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.issue-form input:focus,
.issue-form select:focus,
.issue-form textarea:focus { border-color: var(--accent); }
.issue-form textarea { height: 130px; resize: vertical; }
@media (max-width: 768px) {
  .issue-inner { grid-template-columns: 1fr; }
}
