@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "afections";
  src: url("/afections-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  background: radial-gradient(circle at 30% 20%, #2a1e18 0%, #1a1411 100%);
  box-sizing: border-box;
  font-family: "afections";
}

:root {
  --cafe-bg: rgba(20, 17, 15, .55);
  --cafe-surface: rgba(18, 16, 14, .9);
  --cafe-stroke: rgba(255, 255, 255, .08);
  --cafe-text: #f5f2ee;
  --cafe-dim: rgba(245, 242, 238, .72);
  --cafe-accent1: #A86A3D;
  --cafe-accent2: #5C3B2E;
  --cafe-grad: linear-gradient(135deg, var(--cafe-accent1), var(--cafe-accent2));
  --cafe-shadow: 0 8px 30px rgba(0, 0, 0, .25);
  --radius: 18px;
  --speed: .28s;
}

.cafe-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: var(--cafe-bg);
  border-bottom: 1px solid var(--cafe-stroke);
  color: var(--cafe-text);
}

.cafe-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: max(12px, env(safe-area-inset-top)) 20px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.cafe-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cafe-text);
}

.cafe-brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cafe-grad);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), var(--cafe-shadow);
  font-weight: 700;
  line-height: 1;
}

.cafe-brand__name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cafe-nav__list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cafe-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--cafe-dim);
  transition: color var(--speed), background var(--speed);
}

.cafe-nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--cafe-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed);
}

.cafe-nav__link:hover {
  color: var(--cafe-text);
  background: rgba(255, 255, 255, 0.03);
}

.cafe-nav__link:hover::after {
  transform: scaleX(1);
}

.cafe-nav__link.is-active {
  color: var(--cafe-text);
  background: rgba(255, 255, 255, 0.05);
}

.cafe-nav__link.is-active::after {
  transform: scaleX(1);
}

.cafe-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  padding: 4px;
  gap: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--cafe-stroke);
}

.lang-switch__btn {
  appearance: none;
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--cafe-dim);
  background: transparent;
  transition: background var(--speed), color var(--speed);
}

.lang-switch__btn:hover {
  color: var(--cafe-text);
}

.lang-switch__btn.is-active {
  background: var(--cafe-grad);
  color: #fff;
}

.cafe-burger {
  width: 46px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--cafe-stroke);
  border-radius: 12px;
  cursor: pointer;
}

.cafe-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cafe-text);
  margin: 3px 0;
  transition: transform var(--speed), opacity var(--speed);
}

.cafe-burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.cafe-burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.cafe-burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.cafe-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 90;
}

.cafe-overlay[hidden] {
  display: none;
}

.cafe-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 360px);
  background: var(--cafe-surface);
  border-left: 1px solid var(--cafe-stroke);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  z-index: 95;
  padding-bottom: env(safe-area-inset-bottom);
}

.cafe-mobile[hidden] {
  display: block;
}

.cafe-mobile.is-open {
  transform: translateX(0);
}

.cafe-mobile__nav {
  display: grid;
  padding: 20px;
  gap: 10px;
  z-index: 99999;
  background: rgb(0, 0, 0);
}

.cafe-mobile__link {
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--cafe-dim);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--speed), color var(--speed);
}

.cafe-mobile__link::after {
  content: "→";
  opacity: 0.4;
  transition: opacity var(--speed);
}

.cafe-mobile__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cafe-text);
}

.cafe-mobile__link:hover::after {
  opacity: 1;
}

.cafe-mobile__link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cafe-text);
}

@media (max-width: 1000px) {
  .cafe-nav {
    display: none;
  }
  .cafe-burger {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cafe-nav__link::after,
  .cafe-burger span,
  .cafe-mobile {
    transition: none;
  }
}
:root {
  --cafe-text: #f5f2ee;
  --cafe-dim: rgba(245, 242, 238, .78);
  --cafe-stroke: rgba(255, 255, 255, .09);
  --cafe-accent1: #A86A3D;
  --cafe-accent2: #5C3B2E;
  --cafe-grad: linear-gradient(135deg, var(--cafe-accent1), var(--cafe-accent2));
  --hero-pad: clamp(18px, 4vw, 36px);
}

.hero-split {
  position: relative;
  color: var(--cafe-text);
  padding: 72px 0 32px;
  overflow: hidden;
  background: radial-gradient(1100px 700px at 20% 0%, #2b1f19 0%, #14110f 60%);
}

.hero-split__shape {
  position: absolute;
  inset: -10% -30% auto auto;
  height: 120%;
  background: radial-gradient(60% 60% at 60% 40%, rgba(168, 106, 61, 0.25), rgba(168, 106, 61, 0));
  filter: blur(10px);
  pointer-events: none;
}

.hero-split__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: min(5vw, 56px);
  align-items: start;
}

.hero-split__ribbon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
  border-right: 1px solid var(--cafe-stroke);
  backdrop-filter: blur(8px);
}

.ribbon__city {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.2em;
  font-weight: 800;
  font-size: 14px;
}

.ribbon__dot {
  opacity: 0.35;
}

.ribbon__tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  color: var(--cafe-dim);
}

.hero-split__left {
  margin-left: 110px;
  background: rgba(20, 17, 15, 0.45);
  border: 1px solid var(--cafe-stroke);
  border-radius: 20px;
  padding: var(--hero-pad);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-title {
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--cafe-dim);
  margin: 0 0 22px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.25s ease, color 0.25s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--cafe-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 106, 61, 0.35);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--cafe-stroke);
  color: var(--cafe-text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 12px;
  border: 1px solid var(--cafe-stroke);
  border-radius: 999px;
  color: var(--cafe-dim);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.hero-split__right {
  display: grid;
  gap: 14px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: perspective(800px) rotateX(2deg) rotateY(2deg) translateY(-2px);
}

.feature-card__head {
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

.feature-card__text {
  color: var(--cafe-dim);
}

.hero-ticker {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border-top: 1px solid var(--cafe-stroke);
}

.hero-ticker__track {
  display: inline-flex;
  gap: 18px;
  padding: 12px 0;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
  color: rgba(245, 242, 238, 0.65);
}

.hero-ticker__track span {
  display: inline-block;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 1100px) {
  .hero-split__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-split__right {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .hero-split__right {
    grid-template-columns: 1fr;
  }
  .hero-split__left {
    margin-left: 0;
  }
  .hero-split__ribbon {
    position: absolute;
    inset: auto 0 auto auto;
    left: auto;
    top: 0;
    width: 100%;
    height: 56px;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--cafe-stroke);
  }
  .ribbon__city,
  .ribbon__tag {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .hero-split {
    padding-top: 56px;
  }
}
@media (max-width: 560px) {
  .btn {
    width: 100%;
  }
}
:root {
  --cafe-text: #f5f2ee;
  --cafe-dim: rgba(245, 242, 238, .78);
  --cafe-stroke: rgba(255, 255, 255, .09);
  --cafe-accent1: #A86A3D;
  --cafe-accent2: #5C3B2E;
  --cafe-grad: linear-gradient(135deg, var(--cafe-accent1), var(--cafe-accent2));
}

.blends {
  position: relative;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 20px 6px;
  color: var(--cafe-text);
}

.blends__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 12px;
}

.blends__title {
  font-size: clamp(24px, 3.2vw, 40px);
  margin: 0;
}

.blends__sub {
  margin: 0;
  color: var(--cafe-dim);
}

.blends__ctrl {
  display: flex;
  gap: 8px;
}

.blends__btn {
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--cafe-stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cafe-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease;
}

.blends__btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.blends__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cafe-stroke);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}

.blends__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 16px;
}

.blends__track::-webkit-scrollbar {
  display: none;
}

.blend {
  list-style: none;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 16px;
  display: grid;
  grid-template-rows: 160px auto;
  min-height: 360px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.blend:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.blend__media {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  position: relative;
}

.blend__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
}

.blend__body {
  padding: 14px;
}

.blend__name {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.blend__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.tag {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--cafe-stroke);
  color: var(--cafe-dim);
  background: rgba(255, 255, 255, 0.04);
}

.blend__desc {
  margin: 0 0 12px;
  color: var(--cafe-dim);
  font-size: 14px;
  line-height: 1.5;
}

.blend__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-weight: 700;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.blends__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.blends__edge--left {
  left: 0;
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.9), rgba(20, 17, 15, 0));
}

.blends__edge--right {
  right: 0;
  background: linear-gradient(270deg, rgba(20, 17, 15, 0.9), rgba(20, 17, 15, 0));
}

@media (max-width: 900px) {
  .blends__track {
    grid-auto-columns: 72%;
  }
}
@media (max-width: 560px) {
  .blends__track {
    grid-auto-columns: 86%;
  }
}
:root {
  --cafe-text: #f5f2ee;
  --cafe-dim: rgba(245, 242, 238, .78);
  --cafe-stroke: rgba(255, 255, 255, .09);
  --cafe-accent1: #A86A3D;
  --cafe-accent2: #5C3B2E;
  --cafe-grad: linear-gradient(135deg, var(--cafe-accent1), var(--cafe-accent2));
}

.about-text {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 0 20px 8px;
  color: var(--cafe-text);
}

.about-text__head {
  margin-bottom: 12px;
}

.about-text__title {
  font-size: clamp(24px, 3.2vw, 40px);
  margin: 0;
}

.about-text__lead {
  margin: 8px 0 0;
  color: var(--cafe-dim);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}

.about-text__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: min(5vw, 48px);
  margin-top: 16px;
}

.about-text__col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 20px;
  padding: clamp(16px, 3vw, 22px);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.about-text__p {
  margin: 0 0 14px;
  color: var(--cafe-dim);
  line-height: 1.75;
}

.about-text__p--drop::first-letter {
  font-size: 2.6em;
  line-height: 0.9;
  float: left;
  padding: 0.06em 0.18em 0 0.04em;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.about-text__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--cafe-dim);
}

.about-text__list li {
  margin: 6px 0;
}

.about-quote {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--cafe-stroke);
}

.about-quote p {
  margin: 0 0 6px;
  font-size: 18px;
}

.about-quote cite {
  font-style: normal;
  color: var(--cafe-dim);
  font-size: 14px;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.fact {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--cafe-stroke);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.fact__num {
  font-weight: 800;
  font-size: 20px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fact__txt {
  color: var(--cafe-dim);
  font-size: 13px;
}

@media (max-width: 980px) {
  .about-text__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .about-facts {
    grid-template-columns: 1fr 1fr;
  }
}
:root {
  --cafe-text: #f5f2ee;
  --cafe-dim: rgba(245, 242, 238, .78);
  --cafe-stroke: rgba(255, 255, 255, .09);
  --cafe-accent1: #A86A3D;
  --cafe-accent2: #5C3B2E;
  --cafe-grad: linear-gradient(135deg, var(--cafe-accent1), var(--cafe-accent2));
}

.why-us {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 0 20px 8px;
  color: var(--cafe-text);
}

.why-us__head {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.why-us__title {
  font-size: clamp(24px, 3.2vw, 40px);
  margin: 0;
}

.why-us__lead {
  margin: 0;
  color: var(--cafe-dim);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.why-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cafe-grad);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(168, 106, 61, 0.3);
  margin-bottom: 10px;
}

.ico {
  width: 26px;
  height: 26px;
  color: #fff;
  opacity: 0.95;
}

.why-name {
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.why-txt {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 980px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
}
:root {
  --cafe-text: #f5f2ee;
  --cafe-dim: rgba(245, 242, 238, .78);
  --cafe-stroke: rgba(255, 255, 255, .09);
  --cafe-grad: linear-gradient(135deg, #A86A3D, #5C3B2E);
}

.testimonials {
  max-width: 1180px;
  margin: 40px auto;
  padding: 0 20px;
  color: var(--cafe-text);
  text-align: center;
}

.testi__head {
  margin-bottom: 24px;
}

.testi__title {
  font-size: clamp(26px, 3.5vw, 44px);
  margin: 0;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testi__lead {
  margin: 8px 0 0;
  color: var(--cafe-dim);
}

.testi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.testi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease;
}

.testi:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
}

.testi__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cafe-grad);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testi__name {
  font-weight: 700;
}

.testi__sub {
  font-size: 13px;
  color: var(--cafe-dim);
}

.testi__rate {
  font-size: 16px;
  font-weight: 700;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testi__text {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.6;
}

.manifesto {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  color: var(--cafe-text);
}

.manifesto__inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  padding: clamp(20px, 5vw, 48px);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.manifesto__title {
  font-size: clamp(26px, 3.5vw, 44px);
  margin: 0 0 12px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.manifesto__lead {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--cafe-dim);
  line-height: 1.6;
  margin: 0 0 24px;
}

.manifesto__quote {
  margin: 0 auto 24px;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  border-image: var(--cafe-grad) 1;
  font-size: 18px;
  font-style: italic;
  color: var(--cafe-text);
  max-width: 600px;
}

.manifesto__text {
  font-size: 16px;
  color: var(--cafe-dim);
  line-height: 1.7;
  margin: 0 0 28px;
}

.manifesto__btn {
  display: inline-block;
}

:root {
  --cafe-text: #f5f2ee;
  --cafe-dim: rgba(245, 242, 238, .78);
  --cafe-stroke: rgba(255, 255, 255, .09);
  --cafe-accent1: #A86A3D;
  --cafe-accent2: #5C3B2E;
  --cafe-grad: linear-gradient(135deg, var(--cafe-accent1), var(--cafe-accent2));
}

.cafe-footer {
  margin-top: 48px;
  color: var(--cafe-text);
  background: radial-gradient(900px 600px at 100% 0%, rgba(168, 106, 61, 0.12), rgba(168, 106, 61, 0)), rgba(20, 17, 15, 0.55);
  border-top: 1px solid var(--cafe-stroke);
  backdrop-filter: blur(8px);
}

.cf__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.cf__brand {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.cf__logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  background: var(--cafe-grad);
  box-shadow: 0 8px 24px rgba(168, 106, 61, 0.3);
}

.cf__name {
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cf__tag {
  margin: 6px 0 12px;
  color: var(--cafe-dim);
}

.cf__socials {
  display: flex;
  gap: 10px;
}

.cf__soc {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--cafe-stroke);
}

.cf__soc:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cf__soc svg {
  width: 20px;
  height: 20px;
}

.cf__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cf__block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.cf__title {
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cf__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.cf__list a {
  color: var(--cafe-dim);
  text-decoration: none;
}

.cf__list a:hover {
  color: var(--cafe-text);
}

.cf__list--hours {
  gap: 6px;
}

.cf__list--hours li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--cafe-dim);
}

.cf__addr {
  display: grid;
  gap: 6px;
}

.cf__addr a {
  color: var(--cafe-dim);
  text-decoration: none;
  word-break: break-word;
}

.cf__addr a:hover {
  color: var(--cafe-text);
}

.cf__form {
  display: grid;
  gap: 8px;
}

.cf__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--cafe-stroke);
  color: var(--cafe-text);
  box-sizing: border-box;
}

.cf__input::placeholder {
  color: rgba(245, 242, 238, 0.55);
}

.cf__btn {
  width: 100%;
}

.cf__hint {
  margin: 4px 0 0;
  color: var(--cafe-dim);
  font-size: 13px;
}

.cf__bar {
  border-top: 1px solid var(--cafe-stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  color: var(--cafe-dim);
}

.cf__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cf__legal a {
  color: var(--cafe-dim);
  text-decoration: none;
}

.cf__legal a:hover {
  color: var(--cafe-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.25s ease, color 0.25s ease;
}

.btn--primary {
  background: var(--cafe-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 106, 61, 0.35);
}

.btn:active {
  transform: translateY(1px);
}

.cf__toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(28, 24, 22, 0.9);
  border: 1px solid var(--cafe-stroke);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 120;
}

.cf__toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
  .cf__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cf__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cf__nav {
    grid-template-columns: 1fr;
  }
}
.aboutpage {
  color: var(--cafe-text);
}

.sec-title {
  max-width: 1180px;
  margin: 28px auto 10px;
  padding: 0 20px;
  font-size: clamp(24px, 3.2vw, 40px);
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero {
  position: relative;
  padding: 64px 0 24px;
  background: radial-gradient(900px 600px at 10% 0%, rgba(168, 106, 61, 0.12), rgba(168, 106, 61, 0));
}

.about-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  padding: clamp(20px, 5vw, 44px);
}

.about-hero__title {
  font-size: clamp(28px, 4vw, 52px);
  margin: 0 0 8px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero__lead {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.7;
  font-size: clamp(16px, 1.2vw, 18px);
}

.about-hero__meta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border: 1px solid var(--cafe-stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cafe-dim);
  font-size: 13px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7a075, #794d39);
}

.about-timeline {
  padding-top: 6px;
}

.timeline {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 4px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.t-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: start;
}

.t-year {
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(245, 242, 238, 0.7);
  border-right: 1px dashed var(--cafe-stroke);
}

.t-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.t-card h3 {
  margin: 0 0 6px;
}

.t-card p {
  margin: 0;
  color: var(--cafe-dim);
}

.about-values {
  padding-top: 6px;
}

.v-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 4px;
  list-style: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.v-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.v-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.v-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cafe-grad);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  font-weight: 800;
}

.v-card h3 {
  margin: 0 0 6px;
}

.v-card p {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.6;
}

.about-team {
  padding-top: 6px;
}

.t-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 4px;
  list-style: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.p-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.p-ava {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cafe-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 8px;
}

.p-name {
  margin: 0 0 4px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.p-role {
  margin: 0 0 8px;
  color: var(--cafe-text);
  opacity: 0.9;
  font-size: 14px;
}

.p-bio {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.6;
}

.about-process {
  padding-top: 6px;
}

.proc {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 10px;
  list-style: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.proc-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  padding: 14px;
  align-items: start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.proc-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cafe-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.proc-body h3 {
  margin: 0 0 6px;
}

.proc-body p {
  margin: 0;
  color: var(--cafe-dim);
}

.about-cta {
  padding: 8px 0 40px;
}

.cta-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  padding: clamp(18px, 4vw, 28px);
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.cta-card h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-card p {
  margin: 0 0 14px;
  color: var(--cafe-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.25s ease, color 0.25s ease;
}

.btn--primary {
  background: var(--cafe-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 106, 61, 0.35);
}

.btn:active {
  transform: translateY(1px);
}

@media (max-width: 1100px) {
  .v-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .t-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proc {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .t-item {
    grid-template-columns: 70px 1fr;
  }
  .v-grid {
    grid-template-columns: 1fr;
  }
  .t-grid {
    grid-template-columns: 1fr;
  }
  .proc {
    grid-template-columns: 1fr;
  }
}
.historypage {
  color: var(--cafe-text);
}

.sec-title {
  max-width: 1180px;
  margin: 28px auto 10px;
  padding: 0 20px;
  font-size: clamp(24px, 3.2vw, 40px);
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hist-hero {
  padding: 64px 0 24px;
  background: radial-gradient(900px 600px at 15% 0%, rgba(168, 106, 61, 0.12), rgba(168, 106, 61, 0));
}

.hist-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  padding: clamp(20px, 5vw, 44px);
}

.hist-hero__title {
  font-size: clamp(28px, 4vw, 52px);
  margin: 0 0 8px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hist-hero__lead {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.7;
  font-size: clamp(16px, 1.2vw, 18px);
}

.hist-hero__chips {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border: 1px solid var(--cafe-stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cafe-dim);
  font-size: 13px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7a075, #794d39);
}

.hist-timeline {
  padding-top: 6px;
}

.tl {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 4px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.tl__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: start;
}

.tl__year {
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: rgba(245, 242, 238, 0.7);
  border-right: 1px dashed var(--cafe-stroke);
}

.tl__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.tl__card h3 {
  margin: 0 0 6px;
}

.tl__card p {
  margin: 0;
  color: var(--cafe-dim);
}

.hist-regions {
  padding-top: 6px;
}

.rg {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 4px;
  list-style: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.rg__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.rg__card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.rg__head {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cafe-grad);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  font-weight: 800;
}

.rg__card h3 {
  margin: 0 0 6px;
}

.rg__card p {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.6;
}

.hist-methods {
  padding-top: 6px;
}

.md {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 10px;
  list-style: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.md__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.md__era {
  font-weight: 800;
  margin-bottom: 6px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.md__card p {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.6;
}

.hist-faq {
  padding-top: 6px;
}

.faq {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 24px;
  display: grid;
  gap: 10px;
}

.faq__q {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--cafe-text);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease;
}

.faq__q[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.08);
}

.faq__a {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--cafe-dim);
}

.hist-cta {
  padding: 8px 0 40px;
}

.cta-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  padding: clamp(18px, 4vw, 28px);
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.cta-card h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-card p {
  margin: 0 0 14px;
  color: var(--cafe-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.25s ease, color 0.25s ease;
}

.btn--primary {
  background: var(--cafe-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 106, 61, 0.35);
}

.btn:active {
  transform: translateY(1px);
}

@media (max-width: 1100px) {
  .tl__item {
    grid-template-columns: 90px 1fr;
  }
  .rg {
    grid-template-columns: repeat(2, 1fr);
  }
  .md {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tl__item {
    grid-template-columns: 70px 1fr;
  }
  .rg {
    grid-template-columns: 1fr;
  }
  .md {
    grid-template-columns: 1fr;
  }
}
/* ====== Contact page styling ====== */
.contactpage {
  color: var(--cafe-text);
}

.cp-hero {
  padding: 64px 0 24px;
  background: radial-gradient(900px 600px at 12% 0%, rgba(168, 106, 61, 0.12), rgba(168, 106, 61, 0));
}

.cp-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  padding: clamp(20px, 5vw, 44px);
}

.cp-hero__title {
  font-size: clamp(28px, 4vw, 52px);
  margin: 0 0 8px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cp-hero__lead {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.7;
  font-size: clamp(16px, 1.2vw, 18px);
}

.cp-info {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.cp-h {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.cp-list a {
  color: var(--cafe-dim);
  text-decoration: none;
}

.cp-list a:hover {
  color: var(--cafe-text);
}

.cp-socials {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.cp-soc {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--cafe-stroke);
  color: #fff;
  text-decoration: none;
}

.cp-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--cafe-dim);
}

.cp-hours li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cp-note {
  margin: 8px 0 0;
  color: var(--cafe-dim);
  font-size: 13px;
}

.cp-map .cp-mapbox {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px dashed var(--cafe-stroke);
  padding: 12px;
  text-decoration: none;
  color: var(--cafe-text);
  background: rgba(255, 255, 255, 0.03);
}

.cp-pin {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cafe-grad);
  color: #fff;
  font-weight: 800;
}

.cp-maptxt {
  opacity: 0.9;
}

/* FORM */
.cp-formwrap {
  max-width: 960px;
  margin: 16px auto 40px;
  padding: 0 20px;
}

.cp-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  padding: clamp(18px, 4vw, 28px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.cp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cp-field {
  display: grid;
  gap: 6px;
}

.cp-field label {
  font-weight: 700;
}

.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--cafe-stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cafe-text);
  box-sizing: border-box;
}

.cp-field ::placeholder {
  color: rgba(245, 242, 238, 0.55);
}

.cp-field select {
  appearance: none;
  background-image: linear-gradient(135deg, transparent, transparent);
  cursor: pointer;
}

.cp-meta {
  margin-top: -2px;
  font-size: 12px;
  color: var(--cafe-dim);
  text-align: right;
}

.cp-err {
  display: none;
  color: #ffb3b3;
  font-size: 12px;
}

.cp-field.is-error input,
.cp-field.is-error select,
.cp-field.is-error textarea {
  border-color: rgba(255, 120, 120, 0.8);
}

.cp-field.is-error .cp-err {
  display: block;
}

.cp-consent {
  margin-top: 4px;
}

.cp-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.cp-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.cp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.25s ease, color 0.25s ease;
}

.btn--primary {
  background: var(--cafe-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 106, 61, 0.35);
}

.btn:active {
  transform: translateY(1px);
}

.cp-reset {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--cafe-stroke);
  color: var(--cafe-text);
}

.cp-hint {
  margin: 8px 0 0;
  color: var(--cafe-dim);
  font-size: 13px;
}

/* MODAL */
.cp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.cp-modal[aria-hidden=false] {
  display: flex;
}

.cp-modal__box {
  width: min(92vw, 460px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--cafe-stroke);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 20px;
  text-align: center;
  color: var(--cafe-text);
}

.cp-modal__title {
  margin: 0 0 6px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cp-modal__text {
  margin: 0 0 14px;
  color: var(--cafe-dim);
}

.cp-modal__close {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--cafe-stroke);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 980px) {
  .cp-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cp-row {
    grid-template-columns: 1fr;
  }
}
/* ===== Privacy page (glass, gradient titles) ===== */
.privacypage {
  color: var(--cafe-text);
}

.pp-hero {
  padding: 64px 0 24px;
  background: radial-gradient(900px 600px at 14% 0%, rgba(168, 106, 61, 0.12), rgba(168, 106, 61, 0));
}

.pp-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  padding: clamp(20px, 5vw, 44px);
}

.pp-title {
  font-size: clamp(28px, 4vw, 52px);
  margin: 0 0 8px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-lead {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.7;
  font-size: clamp(16px, 1.2vw, 18px);
}

.pp-meta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border: 1px solid var(--cafe-stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cafe-dim);
  font-size: 13px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7a075, #794d39);
}

/* TOC */
.pp-toc {
  max-width: 960px;
  margin: 16px auto 0;
  padding: 0 20px;
}

.pp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.pp-h {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-list {
  margin: 0;
  padding-left: 18px;
}

.pp-list a {
  color: var(--cafe-dim);
  text-decoration: none;
}

.pp-list a:hover {
  color: var(--cafe-text);
}

/* Sections */
.pp-sec {
  max-width: 960px;
  margin: 14px auto 0;
  padding: 0 20px;
}

.pp-bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--cafe-dim);
  line-height: 1.7;
}

.pp-addr {
  display: grid;
  gap: 6px;
  color: var(--cafe-dim);
}

.pp-addr a {
  color: var(--cafe-dim);
  text-decoration: none;
}

.pp-addr a:hover {
  color: var(--cafe-text);
}

@media (max-width: 560px) {
  .pp-list {
    padding-left: 16px;
  }
  .pp-bullets {
    padding-left: 16px;
  }
}
/* ===== Terms page (glass UI, gradient titles) ===== */
.termspage {
  color: var(--cafe-text);
}

.tm-hero {
  padding: 64px 0 24px;
  background: radial-gradient(900px 600px at 16% 0%, rgba(168, 106, 61, 0.12), rgba(168, 106, 61, 0));
}

.tm-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  padding: clamp(20px, 5vw, 44px);
}

.tm-title {
  font-size: clamp(28px, 4vw, 52px);
  margin: 0 0 8px;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tm-lead {
  margin: 0;
  color: var(--cafe-dim);
  line-height: 1.7;
  font-size: clamp(16px, 1.2vw, 18px);
}

.tm-meta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 12px;
  border: 1px solid var(--cafe-stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cafe-dim);
  font-size: 13px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7a075, #794d39);
}

/* TOC */
.tm-toc {
  max-width: 960px;
  margin: 16px auto 0;
  padding: 0 20px;
}

.tm-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--cafe-stroke);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.tm-h {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: var(--cafe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tm-list {
  margin: 0;
  padding-left: 18px;
}

.tm-list a {
  color: var(--cafe-dim);
  text-decoration: none;
}

.tm-list a:hover {
  color: var(--cafe-text);
}

/* Sections */
.tm-sec {
  max-width: 960px;
  margin: 14px auto 0;
  padding: 0 20px;
}

.tm-bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--cafe-dim);
  line-height: 1.7;
}

.tm-addr {
  display: grid;
  gap: 6px;
  color: var(--cafe-dim);
}

.tm-addr a {
  color: var(--cafe-dim);
  text-decoration: none;
}

.tm-addr a:hover {
  color: var(--cafe-text);
}

.tm-note {
  color: var(--cafe-dim);
  margin-top: 8px;
}

@media (max-width: 560px) {
  .tm-list {
    padding-left: 16px;
  }
  .tm-bullets {
    padding-left: 16px;
  }
}

/*# sourceMappingURL=afections.css.map */
