@font-face { font-family: "Bodoni Moda"; src: url("assets/fonts/bodoni-moda.woff2") format("woff2");
  font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url("assets/fonts/newsreader.woff2") format("woff2");
  font-weight: 300 700; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("assets/fonts/instrument-sans.woff2") format("woff2");
  font-weight: 400 700; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("assets/fonts/plex-mono.woff2") format("woff2");
  font-weight: 400; font-display: swap; }

/* ============================================================
   Abhi Terala — portfolio
   Background: dark felt table. Swap --table to go light again.
   ============================================================ */
:root {
  --table: #17140f;          /* the table */
  --table-lift: #221d16;     /* lit centre of the table */
  --card: #f7f3e8;           /* card stock */
  --ink: #1c1813;
  --ink-soft: #635b4e;
  --red: #b3241f;            /* red suits */
  --black: #1c1813;          /* black suits */
  --cream: #efe8d9;          /* text on the table */
  --cream-soft: #a99e8b;
  --line: #d6cdb8;
  --shadow: 0 2px 4px rgba(0,0,0,.4), 0 14px 32px rgba(0,0,0,.45);
  --shadow-lift: 0 6px 12px rgba(0,0,0,.45), 0 34px 64px rgba(0,0,0,.55);
  --ease: cubic-bezier(.22,.9,.24,1);
  --display: "Bodoni Moda", Georgia, serif;
  --read: "Newsreader", Georgia, serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
/* author display rules beat the UA [hidden] rule, so pin it down globally */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  background: var(--table);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
body.locked > header, body.locked > main, body.locked > footer { filter: blur(8px); }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 80% 55% at 50% 22%, var(--table-lift), var(--table) 70%);
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--cream); outline-offset: 4px; border-radius: 3px; }

/* ---------- buttons that used to live in the top bar ---------- */
.btn-resume { background: #456237; border-color: #456237; color: var(--cream); }
.btn-resume:hover { background: #354c2a; border-color: #354c2a; color: var(--cream); }

/* ---------- hero ---------- */
.hero { text-align: center; padding: clamp(64px, 12vh, 132px) 20px 4px; }
.hero-name {
  font-family: var(--display); font-weight: 700;
  /* Bodoni thins its hairlines as optical size grows, which loses the H crossbar.
     Pin a lower opsz so joins stay visible at display sizes. */
  font-variation-settings: "opsz" 14;
  font-size: clamp(3rem, 9vw, 6.4rem);
  letter-spacing: -0.01em; margin: 0 0 14px; line-height: .98;
}
.hero-tag {
  font-size: clamp(1rem, 2.2vw, 1.22rem); color: var(--cream-soft);
  max-width: 32em; margin: 0 auto;
}
.hero-cue {
  font-family: var(--display); font-style: italic; font-size: 1.02rem;
  letter-spacing: .01em; color: var(--cream-soft);
  margin: 40px 0 0; opacity: .8;
}

/* ---------- the deck ---------- */
.deck-wrap { padding: 22px 16px 60px; }
.deck {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  max-width: 1420px; margin: 0 auto;
  perspective: 1400px;
}
.card {
  --push: 0px;
  position: relative;
  width: clamp(178px, 18.5vw, 248px);
  aspect-ratio: 5 / 7.2;
  background: var(--card);
  background-image: radial-gradient(rgba(28,24,19,.045) 1px, transparent 1.1px);
  background-size: 7px 7px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex; flex-direction: column; text-align: left;
  cursor: pointer; overflow: hidden;
  font-family: inherit; color: var(--black);
  backface-visibility: hidden;
  transform:
    translateX(var(--push))
    rotate(var(--r, 0deg))
    translateY(var(--y, 0))
    rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg))
    scale(var(--s, 1));
  transition: transform .72s var(--ease), box-shadow .35s ease, opacity .5s ease;
  border: none;
}
.card::after {
  content: ""; position: absolute; inset: 5px; border-radius: 8px;
  border: 1px solid rgba(28,24,19,.18); pointer-events: none;
}
.card[data-color="red"] { color: var(--red); }
.card.is-undealt {
  opacity: 0;
  transform: translateX(-88vw) translateY(9vh) rotate(-26deg) scale(.9);
}
.card.is-hot {
  --s: 1.05; --y: -22px; --r: 0deg;
  box-shadow: var(--shadow-lift); z-index: 3;
  transition: transform .18s ease-out, box-shadow .3s ease;
}

/* corner indices, like a real card */
.rank {
  position: absolute; display: flex; flex-direction: column; align-items: center;
  gap: 2px; line-height: 1;
}
.rank-tl { top: 12px; left: 13px; }
.rank-br { bottom: 12px; right: 13px; transform: rotate(180deg); }
.rank em {
  font-family: var(--display); font-style: normal; font-weight: 700;
  font-variation-settings: "opsz" 6;
  font-size: 1.32rem; letter-spacing: -.02em;
}
.rank .pip svg { width: 13px; height: 13px; display: block; }
.rank .pip svg { display: block; }

.card-mid {
  margin: auto; opacity: .17;
  transition: transform .5s var(--ease), opacity .35s ease;
}
.card-mid svg { width: clamp(58px, 7vw, 86px); height: auto; }
.card.is-hot .card-mid { opacity: .2; transform: scale(1.1) translateY(-4px); }

.card-foot { margin-top: auto; padding: 0 4px 30px; color: var(--ink); }
.card-title {
  display: block; font-family: var(--display); font-weight: 700;
  font-variation-settings: "opsz" 6;
  font-size: clamp(1.06rem, 1.5vw, 1.3rem); line-height: 1.12; margin-bottom: 6px;
}
.card-sub {
  display: block; font-size: .78rem; line-height: 1.4; color: var(--ink-soft);
  padding-right: 32px;
}
.gloss {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  /* mix-blend-mode forces a fresh composite of everything underneath on every
     paint, which flickers while scrolling. A plain translucent wash is free. */
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.55), transparent 62%);
  transition: opacity .3s ease;
}
.card.is-hot .gloss { opacity: 1; }

/* ---------- contact ---------- */
.contact {
  max-width: 620px; margin: 20px auto 0; padding: 46px 22px 74px;
  border-top: 1px solid rgba(239,232,217,.12); text-align: center;
}
.contact h2 {
  font-family: var(--display); font-weight: 400; font-size: 1.18rem;
  font-variation-settings: "opsz" 10;
  letter-spacing: .01em; color: var(--cream-soft); margin: 0 0 24px;
}
.paper-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  display: inline-block; padding: 11px 24px; border-radius: 2px;
  font-size: .92rem; line-height: 1.6; font-family: var(--body);
  border: 1px solid rgba(239,232,217,.4); color: var(--cream);
  text-decoration: none; font-size: .92rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--cream); color: var(--table); border-color: var(--cream); }
.btn-solid { background: var(--red); border-color: var(--red); }
.btn-linkedin { background: #0A66C2; border-color: #0A66C2; color: var(--cream); }
.btn-linkedin:hover { background: #08528f; border-color: #08528f; color: var(--cream); }
.btn-solid:hover { background: #8d1a16; border-color: #8d1a16; color: var(--cream); }

.contact-menu { position: relative; }
.contact-list {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  margin: 0; padding: 6px; list-style: none; z-index: 20;
  min-width: 268px; text-align: left;
  background: #211c15; border: 1px solid rgba(239,232,217,.22); border-radius: 4px;
  box-shadow: 0 12px 34px rgba(0,0,0,.55);
}
.contact-list::after {
  content: ""; position: absolute; top: 100%; left: 50%; margin-left: -6px;
  border: 6px solid transparent; border-top-color: #211c15;
}
.contact-list li {
  display: flex; align-items: center; gap: 2px; border-radius: 3px;
}
.contact-list li:hover { background: rgba(239,232,217,.07); }
.contact-list a {
  flex: 1 1 auto; padding: 9px 4px 9px 12px; border-radius: 3px;
  color: var(--cream); text-decoration: none; font-size: .92rem; white-space: nowrap;
}
.contact-list a:hover { color: #fff; }

/* copy button: invisible until the row is hovered, so the menu still reads as
   three plain lines of text rather than a toolbar */
.copy {
  flex: 0 0 auto; width: 30px; height: 30px; margin-right: 6px; padding: 0;
  display: grid; place-items: center; position: relative;
  background: none; border: none; border-radius: 3px; cursor: pointer;
  color: var(--cream-soft); opacity: 0;
  transition: opacity .18s ease, color .18s ease, background .18s ease;
}
.contact-list li:hover .copy, .copy:focus-visible, .copy.done { opacity: 1; }
.copy:hover { color: var(--cream); background: rgba(239,232,217,.12); }
.copy svg { width: 15px; height: 15px; grid-area: 1 / 1; transition: opacity .15s ease, transform .15s ease; }
.copy .tick { opacity: 0; transform: scale(.7); }
.copy.done { color: #7ea866; opacity: 1; }
.copy.done svg:first-of-type { opacity: 0; transform: scale(.7); }
.copy.done .tick { opacity: 1; transform: none; }

/* touch devices have no hover, so keep the icons visible there */
@media (hover: none) { .copy { opacity: .65; } }
#contactBtn { cursor: pointer; }

.site-foot { text-align: center; padding: 0 16px 44px; color: var(--cream-soft); font-size: .78rem; }
.site-foot p { margin: 0; }

/* ---------- overlay + panel ---------- */
.overlay { position: fixed; inset: 0; z-index: 50; }
.backdrop {
  position: absolute; inset: 0; background: rgba(10,8,5,.72);
  opacity: 0; transition: opacity .4s ease;
}
.overlay.open .backdrop { opacity: 1; }
.panel {
  position: fixed; inset: 0; margin: auto;
  width: min(1000px, 94vw); height: min(90vh, 960px);
  background: var(--card); color: var(--ink);
  border-radius: 14px; box-shadow: 0 40px 100px rgba(0,0,0,.6);
  overflow-y: auto; overscroll-behavior: contain;
  transform-origin: center center;
}
.panel-top {
  position: sticky; top: 0; z-index: 6;
  display: flex; justify-content: flex-end; padding: 14px 16px 10px;
  background: linear-gradient(var(--card) 60%, rgba(247,243,232,0));
  pointer-events: none;
}
.panel-close {
  pointer-events: auto; font-family: var(--mono); font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: var(--card);
  border: none; border-radius: 2px; padding: 10px 18px; cursor: pointer;
}
.panel-close:hover { background: var(--red); }
.panel-body { padding: 0 clamp(20px, 5.5vw, 64px) 60px; }

.proj { --accent: var(--red); }
.proj-head { border-top: 4px solid var(--accent); padding-top: 24px; margin-bottom: 34px; }
.kicker {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 14px;
}
.proj h2 {
  font-family: var(--display); font-weight: 700;
  font-variation-settings: "opsz" 8;
  font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.04;
  margin: 0 0 16px; letter-spacing: -.01em;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.5;
  color: var(--ink-soft); margin: 0; max-width: 30em;
}

.figures {
  display: flex; flex-wrap: wrap; gap: 34px;
  padding: 22px 0 26px; margin-bottom: 30px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.figures b {
  display: block; font-family: var(--display); font-weight: 700;
  font-variation-settings: "opsz" 8;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem); line-height: 1; color: var(--accent);
}
.figures span {
  display: block; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 7px;
}

/* editorial alternating rows */
.row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 52px); align-items: center;
  margin: 46px 0;
}
.row.flip .row-text { order: 2; }
.row h3 {
  font-family: var(--display); font-weight: 700;
  font-variation-settings: "opsz" 7;
  font-size: 1.32rem; margin: 0 0 12px; line-height: 1.2;
}
.row p { margin: 0 0 14px; }
.row p:last-child { margin-bottom: 0; }
.row-media { margin: 0; }
.row-media img, .row-media video { border-radius: 6px; width: 100%; }
figcaption {
  font-family: var(--mono); font-size: .69rem; letter-spacing: .06em;
  color: var(--ink-soft); margin-top: 9px; line-height: 1.5;
}
figcaption a { color: var(--accent); }
.bleed {
  margin: 46px calc(clamp(20px, 5.5vw, 64px) * -1);
}
.bleed img, .bleed video { border-radius: 0; width: 100%; }
.bleed figcaption { padding: 0 clamp(20px, 5.5vw, 64px); }
.yt { position: relative; aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; background: #000; }
.bleed .yt { border-radius: 0; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.zoom { cursor: zoom-in; }

.glance {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px 40px; margin: 44px 0; padding: 26px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.glance dt {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.glance dd { margin: 0; font-size: .96rem; }

.reflect { border-left: 3px solid var(--accent); padding-left: 22px; margin: 40px 0; }
.reflect h3 { font-family: var(--display); font-weight: 700; font-variation-settings: "opsz" 7; font-size: 1.28rem; margin: 0 0 10px; }
.doclink { font-family: var(--mono); font-size: .78rem; letter-spacing: .05em; }
.doclink a { color: var(--accent); }


/* drag-to-compare */
.compare {
  position: relative; border-radius: 6px; overflow: hidden;
  user-select: none; touch-action: pan-y; cursor: ew-resize; background: #000;
}
.compare img { width: 100%; display: block; pointer-events: none; }
.compare .layer {
  position: absolute; inset: 0; overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.compare .layer img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.compare .handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: var(--card); transform: translateX(-1px); pointer-events: none;
}
.compare .handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 36px; height: 36px; margin: -18px 0 0 -18px; border-radius: 50%;
  background: var(--card); box-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.compare .side-b { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos, 50%)); }
.compare .layer { z-index: 1; }
.compare .handle { z-index: 2; }
.compare .tag {
  position: absolute; bottom: 10px;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .08em;
  background: rgba(10,8,5,.72); color: var(--card);
  padding: 4px 9px; border-radius: 2px; pointer-events: none;
}
.tag-a { left: 10px; } .tag-b { right: 10px; }

/* creative placeholders */
.gallery { display: flex; gap: 12px; align-items: stretch; margin: 34px 0 8px; }
.gal-col { flex: 1 1 0; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; min-width: 0; }
.gallery .shot { margin: 0; display: block; }
.gallery .shot img { width: 100%; height: auto; display: block; }
.lead-slot { min-height: 240px; }
.lead-slot img { border-radius: 6px; width: 100%; height: auto; }
.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #ece5d5, #ece5d5 9px, #e4dccb 9px, #e4dccb 18px);
  border: 1px dashed #c2b79f; border-radius: 6px; min-height: 150px; padding: 16px;
}
.placeholder span {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .09em;
  text-transform: uppercase; color: #8d8271; text-align: center;
}

/* panel text reveal */
.rv { opacity: 0; }
.overlay.open .rv {
  animation: rise .6s var(--ease) forwards;
  animation-delay: calc(.2s + var(--i, 0) * .065s);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(8,6,4,.94);
  display: flex; align-items: center; justify-content: center; padding: 5vh 4vw;
}
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lb-close {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--cream); color: var(--table);
  border: none; border-radius: 2px; padding: 10px 18px; cursor: pointer;
}

/* ---------- mobile ---------- */
@media (max-width: 860px) {
  .row, .row.flip { grid-template-columns: 1fr; }
  .row.flip .row-text { order: 0; }
  .figures { gap: 24px; }
}
@media (max-width: 720px) {
  /* three across, then two centred underneath. Flex rather than grid so the
     trailing row centres instead of hugging the left edge. */
  .deck { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; max-width: 420px; }
  /* inline --r/--y beat a stylesheet override, so kill the transform outright */
  .card { width: calc(33.333% - 6px); transform: none; padding: 9px; }
  /* at this size the cards read as actual playing cards. The one-line
     description would be unreadable, and it is repeated in the panel anyway. */
  .card-sub { display: none; }
  .card-title { font-size: .8rem; line-height: 1.1; }
  .card-foot { padding: 0 2px 16px 2px; }
  .rank-tl { top: 7px; left: 7px; }
  .rank-br { bottom: 7px; right: 7px; }
  .rank em { font-size: .92rem; }
  .rank .pip svg { width: 9px; height: 9px; }
  .card::after { inset: 3px; border-radius: 6px; }
  .card.is-undealt { transform: translateX(-100vw) rotate(-18deg) scale(.92); opacity: 0; }
  .card.is-hot { transform: none; box-shadow: var(--shadow); }
  .card-mid svg { width: 34px; }
  .card-sub { font-size: .72rem; }
  .panel { width: 100vw; height: 100dvh; border-radius: 0; }
  .bleed { margin-left: -20px; margin-right: -20px; }
  .gallery { gap: 8px; }
  .gal-col { gap: 8px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .panel, .backdrop { transition: none !important; }
  .card.is-undealt { opacity: 1; transform: rotate(var(--r)) translateY(var(--y)); }
  .overlay.open .rv { animation: none; opacity: 1; }
}

/* ---------- about ---------- */
.about {
  max-width: 660px; margin: 30px auto 0; padding: 46px 22px 10px;
  border-top: 1px solid rgba(239,232,217,.12);
}
.about h2 {
  font-family: var(--display); font-weight: 400; font-size: 1.18rem;
  font-variation-settings: "opsz" 10;
  letter-spacing: .01em; color: var(--cream-soft); margin: 0 0 20px;
}
.about p { color: var(--cream-soft); margin: 0 0 16px; }

/* ---------- photo gallery ---------- */
.shot { position: relative; margin: 0; overflow: hidden; border-radius: 6px; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  padding: 26px 14px 12px; color: var(--card);
  background: linear-gradient(transparent, rgba(8,6,4,.85));
  opacity: 0; transition: opacity .28s ease;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .04em;
}
.shot:hover figcaption, .shot:focus-within figcaption { opacity: 1; }
.lb-cap {
  position: absolute; left: 0; right: 0; bottom: 24px; text-align: center;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .05em;
  color: var(--cream); padding: 0 8vw;
}
@media (hover: none) { .shot figcaption { opacity: 1; } }


/* ---------- writing / essay excerpts ---------- */
.writing { max-width: 940px; margin: 0 auto; padding: 34px 22px 12px; }
.carousel { position: relative; padding: 0 44px; }
.car-track { position: relative; overflow: hidden; }
.slide {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateX(26px); pointer-events: none;
  transition: opacity .38s ease, transform .5s var(--ease);
}
.slide.on { opacity: 1; transform: none; pointer-events: auto; }
.car-track.measuring .slide {
  position: static; display: block; opacity: 1; transform: none; transition: none;
}
.slide blockquote {
  margin: 0 0 18px; padding-left: 24px;
  border-left: 2px solid rgba(239,232,217,.28);
  font-family: var(--read); font-weight: 300;
  font-size: 1.16rem; line-height: 1.72; color: var(--cream);
}
.slide figcaption {
  font-family: var(--read); font-style: italic; font-size: .95rem;
  color: var(--cream-soft); margin: 0; padding-left: 26px; line-height: 1.5;
}
.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: none; border: 1px solid rgba(239,232,217,.28);
  color: var(--cream-soft); font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.car-arrow:hover { border-color: var(--cream); color: var(--cream); }
.car-arrow.prev { left: 0; }
.car-arrow.next { right: 0; }
.car-dots { display: flex; gap: 7px; justify-content: center; margin-top: 26px; }
.car-dot {
  width: 6px; height: 6px; padding: 0; border-radius: 50%; cursor: pointer;
  background: rgba(239,232,217,.25); border: none; transition: background .25s ease;
}
.car-dot.on { background: var(--cream); }
@media (max-width: 720px) {
  .carousel { padding: 0; }
  .car-arrow { top: auto; bottom: -6px; transform: none; }
  .car-dots { margin-top: 56px; }
}
.essay-meta { font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; color: var(--cream-soft); }
