/* ============================================================
   GOLDEN EGG — Redesign Style Sheet
   Pure CSS, no build tools required
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg-base:        #0D0D0D;
  --bg-surface:     #1A1A1A;
  --bg-elevated:    #242424;
  --bg-glass:       rgba(18, 18, 18, 0.80);
  --gold:           #E8C300;
  --gold-bright:    #FFD700;
  --gold-dim:       rgba(232, 195, 0, 0.12);
  --gold-border:    rgba(232, 195, 0, 0.28);
  --text-primary:   #F5F5F0;
  --text-secondary: #A0A0A0;
  --text-muted:     rgba(245, 245, 240, 0.4);
  --glass-blur:     blur(14px);
  --glass-border:   1px solid rgba(232, 195, 0, 0.2);
  --ease-smooth:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:     0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   2. FONT FACES
   ============================================================ */
@font-face {
  font-family: 'Kurale';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/kurale-v6-latin_cyrillic-regular.eot');
  src: local(''),
    url('../fonts/kurale-v6-latin_cyrillic-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/kurale-v6-latin_cyrillic-regular.woff2') format('woff2'),
    url('../fonts/kurale-v6-latin_cyrillic-regular.woff') format('woff'),
    url('../fonts/kurale-v6-latin_cyrillic-regular.ttf') format('truetype'),
    url('../fonts/kurale-v6-latin_cyrillic-regular.svg#Kurale') format('svg');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v29-latin_cyrillic-regular.eot');
  src: local(''),
    url('../fonts/roboto-v29-latin_cyrillic-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v29-latin_cyrillic-regular.woff2') format('woff2'),
    url('../fonts/roboto-v29-latin_cyrillic-regular.woff') format('woff'),
    url('../fonts/roboto-v29-latin_cyrillic-regular.ttf') format('truetype'),
    url('../fonts/roboto-v29-latin_cyrillic-regular.svg#Roboto') format('svg');
}

@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-v29-latin_cyrillic-italic.eot');
  src: local(''),
    url('../fonts/roboto-v29-latin_cyrillic-italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v29-latin_cyrillic-italic.woff2') format('woff2'),
    url('../fonts/roboto-v29-latin_cyrillic-italic.woff') format('woff'),
    url('../fonts/roboto-v29-latin_cyrillic-italic.ttf') format('truetype'),
    url('../fonts/roboto-v29-latin_cyrillic-italic.svg#Roboto') format('svg');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v29-latin_cyrillic-700.eot');
  src: local(''),
    url('../fonts/roboto-v29-latin_cyrillic-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v29-latin_cyrillic-700.woff2') format('woff2'),
    url('../fonts/roboto-v29-latin_cyrillic-700.woff') format('woff'),
    url('../fonts/roboto-v29-latin_cyrillic-700.ttf') format('truetype'),
    url('../fonts/roboto-v29-latin_cyrillic-700.svg#Roboto') format('svg');
}

/* ============================================================
   3. NORMALIZE / RESET
   ============================================================ */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body { margin: 0; }
main { display: block; }
h1 { font-size: 2em; margin: 0.67em 0; }
hr { box-sizing: content-box; height: 0; overflow: visible; }
pre { font-family: monospace, monospace; font-size: 1em; }
a { background-color: transparent; }
abbr[title] { border-bottom: none; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, samp { font-family: monospace, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
img { border-style: none; }
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input { overflow: visible; }
button, select { text-transform: none; }
button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }
button::-moz-focus-inner, [type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none; padding: 0;
}
fieldset { padding: 0.35em 0.75em 0.625em; }
legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; }
progress { vertical-align: baseline; }
textarea { overflow: auto; }
[type="checkbox"], [type="radio"] { box-sizing: border-box; padding: 0; }
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }
[type="search"] { -webkit-appearance: textfield; outline-offset: -2px; }
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
details { display: block; }
summary { display: list-item; }
template, [hidden] { display: none; }

/* ============================================================
   4. BASE GLOBALS
   ============================================================ */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*, *::before, *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  background-color: var(--bg-base);
  color: var(--text-primary);
  position: relative;
  line-height: 1.7;
}

body.no-scroll {
  height: 100vh;
  overflow-y: hidden;
  padding-right: 6px;
}

a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }
p { margin: 0 0 16px; }
h2, h3 { margin: 0; }

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.cover_image { object-fit: cover; }

/* ============================================================
   5. LAYOUT
   ============================================================ */
.wrapper {
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Shared section title pattern */
.section-title,
.about__content-title,
.our__team-title,
.order-title,
.menu-title,
.contacts-title,
.testimonials-title,
.events-subtitle {
  font-family: 'Kurale', serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.section-title::after,
.about__content-title::after,
.our__team-title::after,
.order-title::after,
.menu-title::after,
.contacts-title::after,
.testimonials-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 50px;
  margin: 14px auto 36px;
}

/* Shared button */
.btn {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  outline: none;
  text-align: center;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 4px;
  background-color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.btn:hover, .btn:focus {
  background-color: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
}

.btn:active { transform: translateY(0); }

.btn-about {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-primary);
}

.btn-about:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

svg { width: 100%; height: auto; }

/* ============================================================
   6. SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   7. HEADER / NAVIGATION
   ============================================================ */
.head {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  z-index: 100;
}

.head::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(8,8,8,0.65) 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.head > .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  transition: background var(--transition), padding var(--transition), border-bottom var(--transition);
}

.header--scrolled {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  padding: 10px 40px;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
}

.header__menu-item {
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}

.header__menu-item:hover {
  border-top-color: var(--gold);
}

.header__menu-link {
  padding: 24px 22px;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: rgba(245, 245, 240, 0.85);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.header__menu-link::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 22px;
  right: 22px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.header__menu-link:hover,
.header__menu-link.active {
  color: var(--gold);
}

.header__menu-link:hover::after,
.header__menu-link.active::after {
  transform: scaleX(1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  width: 70px;
  transition: filter var(--transition), transform var(--transition);
  filter: drop-shadow(0 0 8px rgba(232, 195, 0, 0.3));
}

.logo__img:hover {
  filter: drop-shadow(0 0 16px rgba(232, 195, 0, 0.6)) brightness(1.1);
  transform: scale(1.05);
}

/* Hamburger toggle button */
.toggle-menu {
  background-color: rgba(232, 195, 0, 0.15);
  border: 1px solid var(--gold-border);
  position: fixed;
  top: 24px;
  right: 20px;
  width: 42px;
  height: 32px;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  padding: 6px 7px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1100;
}

.line {
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: var(--text-primary);
  transition: transform 0.22s ease-out, opacity 0.22s;
}

/* ============================================================
   8. HERO / INTRO
   ============================================================ */
.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 140px;
  flex: 1;
  padding-bottom: 60px;
}

.work-date {
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  width: 6%;
  letter-spacing: 0.15em;
}

.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.intro__subtitle {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: var(--text-secondary);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.9s var(--ease-smooth) 0.2s both;
}

.intro__title {
  font-weight: 400;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 1;
  color: var(--gold);
  font-family: 'Kurale', serif;
  position: relative;
  margin-bottom: 16px;
  text-shadow: 0 0 80px rgba(232, 195, 0, 0.35);
  animation: fadeSlideUp 0.9s var(--ease-smooth) 0s both;
}

.intro__title::after {
  content: '';
  display: block;
  width: 30%;
  height: 3px;
  background: var(--gold);
  border-radius: 50px;
  margin: 20px auto 0;
  opacity: 0.6;
}

.intro_btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 460px;
  width: 100%;
  margin-top: 44px;
  margin-bottom: 60px;
  animation: fadeSlideUp 0.9s var(--ease-smooth) 0.4s both;
}

.intro_btns .btn {
  min-width: 190px;
}

.intro_btns .btn-about {
  color: var(--text-primary);
}

/* Down arrow */
.arrow__down {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  animation: bounceDown 2.2s ease 0s infinite;
  margin-top: auto;
}

.arrow__down:hover { animation-play-state: paused; }

.arrow__down-svg {
  width: 52px;
  height: 52px;
  opacity: 0.6;
  filter: drop-shadow(0 0 6px rgba(232,195,0,0.4));
}

/* Socials */
.socials {
  display: flex;
  height: 200px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.socials svg {
  transition: background-color var(--transition), transform var(--transition);
  border-radius: 50%;
  padding: 4px;
  opacity: 0.7;
}

.socials svg:hover {
  background-color: var(--gold);
  opacity: 1;
  transform: scale(1.1);
}

/* Hero keyframes */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  40%       { transform: translateY(12px); opacity: 1; }
  70%       { transform: translateY(8px); }
}

/* ============================================================
   9. ABOUT
   ============================================================ */
.about {
  background: var(--bg-surface);
  padding: 100px 0;
}

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

.about__content-text {
  width: 50%;
  text-align: left;
}

.about__content-text .about__content-title {
  text-align: left;
}

.about__content-text .about__content-title::after {
  margin: 14px 0 36px;
}

.about__content-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.about__content-text p:first-of-type {
  margin-top: 30px;
  font-style: italic;
  color: var(--text-primary);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-size: 17px;
}

.about__content-img {
  width: 48%;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.about__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.5s var(--ease-smooth);
  box-shadow: 0 0 40px rgba(232, 195, 0, 0.12);
}

.about__content-img:hover img {
  transform: scale(1.03);
}

/* The decorative circle (original feature) */
@media screen and (min-width: 1400px) {
  .about__content-img,
  .order__content-img,
  .our__team-img-block {
    overflow: unset;
  }
  .about__content-img::after,
  .order__content-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border: 16px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
  }
  .our__team-img-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 76%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border: 16px solid var(--gold);
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
  }
}

/* ============================================================
   10. STATS COUNTER (NEW SECTION)
   ============================================================ */
.stats {
  background: var(--bg-base);
  padding: 70px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232,195,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 20px;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.stats__item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stats__item:hover {
  border-color: rgba(232,195,0,0.5);
  transform: translateY(-3px);
}

.stats__item:hover::before {
  opacity: 1;
}

.stats__number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stats__number {
  font-family: 'Kurale', serif;
  font-size: clamp(42px, 5vw, 68px);
  color: var(--gold);
  display: inline-block;
  line-height: 1;
}

.stats__suffix {
  font-family: 'Kurale', serif;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--gold-bright);
  line-height: 1;
}

.stats__label {
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================================
   11. CHEF / OUR TEAM
   ============================================================ */
.our__team {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

.our__team::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 100%);
}

.our__team-subtitle {
  font-size: 11px;
  line-height: 1;
  color: var(--gold);
  padding: 0 0 40px;
  text-align: center;
  letter-spacing: 0.6em;
  text-transform: uppercase;
}

.our__team-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 40px;
}

.our__team-img-block {
  width: 44%;
  border-radius: 10px;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.6));
  transform: matrix(-1, 0, 0, 1, 0, 0);
  flex-shrink: 0;
  overflow: hidden;
}

.our__team-img-block img,
.our-special {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 30px rgba(232, 195, 0, 0.15);
  transition: transform 0.5s var(--ease-smooth);
}

.our__team-img-block:hover img,
.our__team-img-block:hover .our-special {
  transform: scale(1.04);
}

.our__team-text {
  width: 50%;
  text-align: center;
}

.our__team-title {
  margin-bottom: 0;
}

.our__team-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-top: 20px;
}

/* ============================================================
   12. SPECIAL OFFERS
   ============================================================ */
.special {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  color: #fff;
}

.special::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.68) 100%);
}

.special-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 40px;
}

.our-special-title,
.our__special-subtitle {
  text-align: center;
}

.our__special-subtitle {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.our-special-title {
  font-family: 'Kurale', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--text-primary);
  text-transform: uppercase;
  margin-top: 0;
  position: relative;
}

.our-special-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 50px;
  margin: 14px auto 24px;
}

.special-text-block {
  width: 48%;
  text-align: center;
}

.special-text-block p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.special-img-block {
  width: 46%;
  overflow: hidden;
  border-radius: 10px;
}

.our-special {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
  box-shadow: 0 0 30px rgba(232, 195, 0, 0.12);
  display: block;
}

.special-img-block:hover .our-special {
  transform: scale(1.04);
}

/* ============================================================
   13. BOOK A TABLE (ORDER)
   ============================================================ */
.order {
  background: var(--bg-surface);
  padding: 80px 0;
}

.order__content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
}

.order__form-block {
  width: 50%;
}

.order__content-img {
  width: 44%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.order__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 40px rgba(232,195,0,0.1);
}

/* Form inputs */
.popup-form input,
.order-form input,
.contacts__form input,
.order-form select,
.contacts__form-textarea {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-radius: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: 'Roboto', sans-serif;
}

.popup-form input::placeholder,
.order-form input::placeholder,
.contacts__form input::placeholder,
.contacts__form-textarea::placeholder {
  color: var(--text-secondary);
}

.popup-form input:focus,
.order-form input:focus,
.contacts__form input:focus,
.order-form select:focus,
.contacts__form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.input-columns {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.col-1, .col-2 {
  width: 49%;
  display: flex;
  flex-direction: column;
}

/* Custom select */
.order-form select {
  appearance: none;
  -webkit-appearance: none;
  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='%23E8C300' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  color: var(--text-primary);
}

.order-form select option {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.order__form-btn {
  width: 100%;
  margin-top: 8px;
}

/* ============================================================
   14. MENU
   ============================================================ */
.menu {
  background: var(--bg-base);
  padding: 80px 0;
}

.menu-subtitle,
.contacts-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 55%;
  margin: 0 auto 40px;
}

.menu-tabs {
  margin: 24px auto 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-tab {
  margin-bottom: 0;
  text-transform: uppercase;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--text-secondary);
  background: transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.menu__item {
  min-width: 0;
  display: flex;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
  background: var(--bg-elevated);
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}

.menu__item:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.menu__item-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  color: var(--gold);
  transition: background var(--transition), border-color var(--transition);
}
.menu__item:hover .menu__item-icon {
  background: rgba(232, 195, 0, 0.22);
  border-color: var(--gold);
}
.menu__item-icon svg {
  width: 34px;
  height: 34px;
}

.menu__item-content {
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  flex: 1;
}

.menu__item-title {
  font-size: 15px;
  line-height: 1.3;
  font-family: 'Kurale', serif;
  color: var(--text-primary);
  display: block;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 400;
}

.menu__item-price {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: #000;
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 10px;
  width: fit-content;
}

.menu__item-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.menu__item-pagination {
  width: 100%;
  margin: 20px auto;
  text-align: center;
}

.tab__slide {
  display: none;
}

.tab__slide.active {
  display: block;
}

/* ============================================================
   15. TESTIMONIALS (NEW SECTION)
   ============================================================ */
.testimonials {
  background: var(--bg-surface);
  padding: 90px 0;
  overflow: hidden;
}

.testimonials-title {
  margin-bottom: 0;
}

.swiper-testimonials {
  overflow: hidden;
  margin-top: 8px;
}

.testimonials__card {
  box-sizing: border-box;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonials__card:hover {
  border-color: rgba(232, 195, 0, 0.45);
  transform: translateY(-4px);
}

.testimonials__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}

.testimonials__text {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testimonials__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gold-border);
  padding-top: 16px;
  margin-top: auto;
  gap: 10px;
}

.testimonials__name {
  font-family: 'Kurale', serif;
  color: var(--gold);
  font-size: 14px;
  font-weight: 400;
}

.testimonials__date {
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.testimonials-pagination {
  margin: 24px auto 0;
  text-align: center;
}

/* ============================================================
   16. EVENTS
   ============================================================ */
.events {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.events::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82), rgba(0,0,0,0.62));
  z-index: -1;
}

.events-subtitle {
  font-size: 11px;
  letter-spacing: 0.6em;
  color: var(--gold);
  margin-bottom: 40px;
}

.events-subtitle::after { display: none; }

.events-swiper {
  overflow: hidden;
}

.events-item {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition);
}

.events-item:hover {
  transform: translateY(-4px);
}

.events__item-link {
  display: flex;
  width: 100%;
}

.events-item__img {
  flex: 1;
  overflow: hidden;
}

.events-item__img img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
  display: block;
}

.events-item:hover .events-item__img img {
  transform: scale(1.04);
}

.events-item__title-block {
  width: 72px;
  padding: 20px 0;
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--gold-border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.events-item__title {
  font-family: 'Kurale', serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-primary);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
}

.events-item:nth-child(even) .events-item__title {
  transform: rotate(180deg);
}

.events-item:nth-child(even) .events-item__title-block {
  order: -1;
  border-left: none;
  border-right: 1px solid var(--gold-border);
}

.events-footer {
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  margin-top: 40px;
  letter-spacing: 0.05em;
}

.events-pagination {
  margin: 20px auto 0;
  text-align: center;
}

/* ============================================================
   17. CONTACTS
   ============================================================ */
.contacts {
  background: var(--bg-base);
  padding: 80px 0;
}

.contacts-title {
  margin-bottom: 0;
}

.contacts-subtitle {
  max-width: 50%;
}

.contacts__form {}

.contacts__form-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.contacts__form-header input {
  width: 32.5%;
  flex: 1;
}

.contacts__form-textarea {
  background: var(--bg-elevated);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
  width: 100%;
  height: 130px;
  resize: vertical;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-family: 'Roboto', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contacts__form-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contacts__form-footer span,
.contacts__form-footer span a {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
  position: relative;
  padding-left: 22px;
}

.contacts__form-footer a {
  color: var(--gold);
  transition: color var(--transition);
}

.contacts__form-footer a:hover { color: var(--gold-bright); }

.contacts__form-address {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.contacts__form-info {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.contacts__form-btn {
  min-width: 180px;
}

.contacts-submit {
  width: 100%;
}

/* Contact info icons */
.contacts__form-address span,
.contacts__form-phone,
.contacts__form-mail {
  position: relative;
}

.contacts__form-address::before {
  content: '';
  background-image: url('../img/map.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 14px;
  height: 14px;
}

.contacts__form-phone::before {
  content: '';
  background-image: url('../img/el_phone.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 12px;
  height: 12px;
}

.contacts__form-mail::before {
  content: '';
  background-image: url('../img/email.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 15px;
  height: 12px;
}

/* ============================================================
   18. MAP
   ============================================================ */
.map iframe {
  display: block;
  width: 100%;
  margin-top: 0;
  filter: grayscale(80%) brightness(0.6) contrast(1.2);
  transition: filter var(--transition);
}

.map iframe:hover {
  filter: grayscale(30%) brightness(0.8);
}

/* ============================================================
   19. FOOTER
   ============================================================ */
footer {
  background-color: #000;
  border-top: 1px solid var(--gold-border);
}

.copyright {
  background-color: #000;
  padding: 22px 0;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.author {
  font-family: 'Kurale', serif;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}

.author:hover { color: var(--gold-bright); }

/* ============================================================
   20. TO-TOP BUTTON
   ============================================================ */
.to-top {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 18px 30px 18px;
  border-color: transparent transparent rgba(232, 195, 0, 0.5) transparent;
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  z-index: 9999;
}

.to-top:hover {
  border-color: transparent transparent var(--gold) transparent;
  transform: translateY(-3px);
}

/* ============================================================
   21. POPUP / MODAL
   ============================================================ */
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 20px;
  transition: opacity 0.3s;
}

.popup-wrapper.active {
  opacity: 1;
  pointer-events: all;
}

.popup {
  width: min(500px, 94vw);
  padding: 36px 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold-border);
  background: var(--bg-elevated);
  border-radius: 16px;
  z-index: 9999;
  box-shadow: 0 0 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,195,0,0.08);
}

.popup-title {
  font-family: 'Kurale', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 28px;
  margin-top: 0;
}

.popup-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 50px;
  margin: 12px auto 0;
}

.popup-form {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
}

.popup-form input {
  width: 100%;
}

.popup-form__btn {
  width: 100%;
  margin-top: 8px;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  padding: 0;
  width: 36px;
  height: 36px;
  outline: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 50%;
  transition: background-color var(--transition), transform var(--transition);
}

.close-btn:hover {
  background-color: rgba(232, 195, 0, 0.12);
  transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 18px;
  background-color: var(--text-secondary);
  border-radius: 2px;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn:hover::before,
.close-btn:hover::after {
  background-color: var(--gold);
}

/* ============================================================
   22. TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  color: var(--text-primary);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  z-index: 10000;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ============================================================
   23. FLATPICKR DARK OVERRIDES
   ============================================================ */
.flatpickr-calendar {
  background: var(--bg-elevated) !important;
  border-color: var(--gold-border) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
  border-radius: 8px !important;
}

.flatpickr-month,
.flatpickr-weekdays,
.flatpickr-weekday {
  background: var(--bg-elevated) !important;
  color: var(--text-secondary) !important;
  fill: var(--text-secondary) !important;
}

.flatpickr-day {
  color: var(--text-primary) !important;
  border-radius: 4px !important;
}

.flatpickr-day:hover,
.flatpickr-day.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #000 !important;
}

.flatpickr-day.today {
  border-color: var(--gold-border) !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: var(--gold) !important;
}

.numInputWrapper input {
  color: var(--text-primary) !important;
}

/* ============================================================
   24. SWIPER OVERRIDES (DARK THEME)
   ============================================================ */
.swiper-pagination-bullet {
  background: var(--text-secondary) !important;
  opacity: 0.5;
  width: 10px !important;
  height: 10px !important;
  transition: background var(--transition), opacity var(--transition), width var(--transition) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  opacity: 1 !important;
  width: 28px !important;
  border-radius: 5px !important;
}

.events .swiper-pagination-bullet,
.events .swiper-pagination-bullet-active {
  width: 12px !important;
  height: 12px !important;
}

.events .swiper-pagination-bullet-active {
  background-color: var(--gold) !important;
  width: 12px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  background: var(--text-secondary) !important;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

/* ============================================================
   25. MEDIA QUERIES
   ============================================================ */

/* ≥1400px — decorative overflow circles */
@media screen and (min-width: 1400px) {
  .about__content-img,
  .order__content-img,
  .our__team-img-block {
    overflow: unset;
  }
}

/* ≤1024px */
@media screen and (max-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .our__team-content,
  .special-content,
  .order__content {
    gap: 32px;
  }
}

/* ≤992px — mobile menu breakpoint (must match script.js logic) */
@media screen and (max-width: 992px) {
  /* Mobile menu */
  .toggle-menu {
    display: flex;
    z-index: 1100;
  }

  .header__menu {
    display: none;
  }

  .header__nav.toggle .header__menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-base);
    padding: 16px 0;
  }

  .nav-first {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1050;
  }

  .toggle {
    left: 0;
    box-shadow: 4px 0 20px rgba(0,0,0,0.5);
  }

  .toggle .line1 {
    transform: scale(0.9) rotateZ(-45deg) translate(-6px, 4px);
    background-color: var(--gold);
  }

  .toggle .line2 {
    display: none;
  }

  .toggle .line3 {
    transform: scale(0.9) rotateZ(45deg) translate(-3px, -2px);
    background-color: var(--gold);
  }

  .toggle .toggle-menu {
    background-color: rgba(232, 195, 0, 0.12);
    border-color: var(--gold-border);
  }

  /* Header layout */
  .header {
    justify-content: space-between;
    padding: 14px 20px;
  }

  .header--scrolled {
    padding: 10px 20px;
  }

  .logo { order: -1; }

  /* Intro */
  .intro {
    margin-top: 100px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .work-date { display: none; }
  .socials { display: none; }

  .intro__subtitle { margin-bottom: 12px; }
  .intro_btns { flex-wrap: wrap; justify-content: center; }

  /* About */
  .about__content {
    flex-direction: column;
    gap: 32px;
  }
  .about__content-text { width: 100%; }
  .about__content-img { width: 100%; }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  /* Chef */
  .our__team-content {
    flex-direction: column;
    padding: 24px;
  }
  .our__team-img-block { width: 80%; transform: none; margin: 0 auto; }
  .our__team-text { width: 100%; }

  /* Special */
  .special-content { flex-direction: column; padding: 24px; }
  .special-text-block, .special-img-block { width: 100%; }

  /* Order */
  .order__content { flex-direction: column; gap: 32px; }
  .order__form-block { width: 100%; }
  .order__content-img { width: 100%; height: 260px; }

  /* Menu */
  .menu-subtitle { max-width: 90%; }
  .menu-container { grid-template-columns: 1fr; }

  /* Contacts */
  .contacts-subtitle { max-width: 90%; }
  .contacts__form-header {
    flex-direction: column;
    gap: 0;
  }
  .contacts__form-header input { width: 100%; }
  .contacts__form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .contacts__form-btn { width: 100%; }
  .contacts-submit { width: 100%; }
  .contacts__form-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ≤768px */
@media screen and (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .menu__item { padding: 12px; }
  .menu__item-icon { width: 56px; height: 56px; }
  .menu__item-icon svg { width: 26px; height: 26px; }

  .testimonials__card { padding: 24px 20px; }
  .testimonials__author { flex-direction: column; align-items: flex-start; gap: 4px; }

  .intro__title { margin-bottom: 12px; }
  .intro_btns .btn { min-width: 140px; }

  .input-columns { flex-direction: column; gap: 0; }
  .col-1, .col-2 { width: 100%; }
}

/* ≤576px */
@media screen and (max-width: 576px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats__item { padding: 20px 12px; }

  .intro_btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .intro_btns .btn { min-width: 200px; }

  .about { padding: 60px 0; }
  .order { padding: 60px 0; }
  .menu { padding: 60px 0; }
  .contacts { padding: 60px 0; }
  .our__team { padding: 60px 0; }
  .special { padding: 60px 0; }
  .events { padding: 60px 0; }
  .testimonials { padding: 60px 0; }
  .stats { padding: 50px 0; }

  .our__team-img-block { width: 100%; }

  .popup { padding: 28px 20px; }
}

/* ≤480px */
@media screen and (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__item-icon { width: 48px; height: 48px; border-radius: 8px; }
  .menu__item-icon svg { width: 22px; height: 22px; }
  .menu__item-content { margin-left: 12px; }

  .arrow__down { display: none; }

  .toast { font-size: 11px; padding: 12px 20px; white-space: normal; text-align: center; width: 80%; }
}
