:root {
  --bg-cream: #f6efe4;
  --bg-sand: #ead9c2;
  --bg-rose: #f4dfd0;
  --surface: rgba(255, 251, 246, 0.82);
  --surface-strong: rgba(255, 250, 244, 0.95);
  --surface-soft: rgba(255, 246, 237, 0.86);
  --text-main: #201712;
  --text-soft: #6d584b;
  --brand-deep: #4f1719;
  --brand: #8f2828;
  --brand-warm: #c56b3f;
  --brand-gold: #d9a646;
  --accent-olive: #5d6e53;
  --line-soft: rgba(116, 77, 45, 0.14);
  --line-strong: rgba(116, 77, 45, 0.24);
  --shadow-soft: 0 24px 60px rgba(89, 57, 31, 0.12);
  --shadow-card: 0 22px 44px rgba(111, 39, 30, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(197, 107, 63, 0.15), transparent 28%),
    radial-gradient(circle at 85% 14%, rgba(143, 40, 40, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-sand) 52%, #e4d1ba 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
  border-radius: 50%;
}

body::before {
  top: 90px;
  right: -90px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(197, 107, 63, 0.16), transparent 68%);
  filter: blur(16px);
}

body::after {
  left: -120px;
  bottom: 20px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(79, 23, 25, 0.08), transparent 72%);
  filter: blur(18px);
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 220, 181, 0.28), transparent 26%),
    radial-gradient(circle at 75% 18%, rgba(255, 245, 232, 0.12), transparent 22%),
    linear-gradient(135deg, #331012 0%, #671d22 34%, #982f2c 68%, #cf8450 100%);
  color: #fff8f0;
  padding: 54px 20px 54px;
  text-align: center;
  box-shadow: 0 22px 54px rgba(74, 21, 18, 0.2);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.site-header::before {
  top: -120px;
  right: 6%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 235, 208, 0.75), transparent 68%);
  opacity: 0.32;
  animation: floatGlow 8s ease-in-out infinite;
}

.site-header::after {
  left: -120px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 245, 232, 0.18), transparent 72%);
  opacity: 0.45;
  animation: floatGlow 11s ease-in-out infinite reverse;
}

.top-nav {
  position: absolute;
  top: 22px;
  right: max(22px, calc((100vw - 1160px) / 2 + 22px));
  display: flex;
  justify-content: flex-end;
  z-index: 3;
}

.top-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.1);
  border: 1px solid rgba(255, 248, 240, 0.18);
  color: #fff8f0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(42, 10, 9, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.top-nav-link:hover,
.top-nav-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 248, 240, 0.16);
  border-color: rgba(255, 248, 240, 0.3);
  box-shadow: 0 16px 28px rgba(42, 10, 9, 0.18);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 248, 240, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: riseIn 0.7s ease both;
}

.site-header h1 {
  max-width: 860px;
  margin: 0 auto 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.header-lead {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1.07rem;
  color: rgba(255, 248, 240, 0.92);
  text-wrap: balance;
  animation: riseIn 0.95s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(790px, 100%);
  margin: 30px auto 0;
  animation: riseIn 1.05s ease both;
}

.hero-stat {
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.12), rgba(255, 248, 240, 0.06));
  border: 1px solid rgba(255, 248, 240, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.24s ease, background 0.24s ease;
}

.hero-stat:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.16), rgba(255, 248, 240, 0.08));
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.74);
}

.hero-stat-value {
  display: block;
  margin-top: 8px;
  font-size: 1.58rem;
  font-weight: 800;
}

.hero-ribbon {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: min(940px, 100%);
  margin: 24px auto 0;
  animation: riseIn 1.15s ease both;
}

.hero-ribbon-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.09);
  border: 1px solid rgba(255, 248, 240, 0.14);
  color: rgba(255, 248, 240, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

main,
.admin-main {
  width: min(1160px, 92%);
  margin: 40px auto 68px;
}

.intro-box,
.review-panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 28px;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  animation: riseIn 0.8s ease both;
}

.section-heading,
.reviews-header,
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0 0 8px;
  color: #9b5f3c;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  font-weight: 800;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--brand-deep);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.section-copy,
.reviews-meta,
.detail-description {
  margin: 0;
  max-width: 540px;
  line-height: 1.75;
  color: var(--text-soft);
}

.panel-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  color: #43201d;
  letter-spacing: -0.03em;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.option-card {
  --stagger: 0ms;
  position: relative;
  width: 100%;
  border: 1px solid rgba(138, 76, 44, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 247, 238, 0.96)),
    linear-gradient(180deg, #fffdf9 0%, #fff7ee 100%);
  padding: 16px;
  text-align: left;
  color: var(--text-main);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
  animation: cardIn 0.6s ease both;
  animation-delay: var(--stagger);
}

.option-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(143, 40, 40, 0.86), rgba(197, 107, 63, 0.54), transparent);
}

.option-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 239, 217, 0.45), transparent 66%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.option-card .tag,
.option-card .card-rating-summary,
.option-card .card-review-count,
.option-card .card-arrow,
.option-card .card-action-hint {
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.option-card:hover,
.option-card:focus-visible {
  transform: translateY(-8px);
  background: linear-gradient(180deg, #fffefb 0%, #fff4e8 100%);
  border-color: rgba(155, 95, 60, 0.42);
  box-shadow: var(--shadow-card);
}

.option-card:hover::after,
.option-card:focus-visible::after {
  opacity: 1;
}

.option-card:hover .tag,
.option-card:hover .card-rating-summary,
.option-card:hover .card-review-count,
.option-card:hover .card-arrow,
.option-card:hover .card-action-hint,
.option-card:focus-visible .tag,
.option-card:focus-visible .card-rating-summary,
.option-card:focus-visible .card-review-count,
.option-card:focus-visible .card-arrow,
.option-card:focus-visible .card-action-hint {
  transform: translateY(-2px);
}

.option-card:focus-visible,
.back-btn:focus-visible,
.submit-btn:focus-visible,
.delete-btn:focus-visible,
.star-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.top-nav-link:focus-visible {
  outline: 3px solid var(--accent-olive);
  outline-offset: 3px;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(43, 43, 43, 0.08);
  background: linear-gradient(180deg, #f8ede0 0%, #f3e2cf 100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.option-card:hover .card-image,
.option-card:focus-visible .card-image {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02);
}

.card-body {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 6px 2px 2px;
}

.card-topline,
.card-meta,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-topline {
  margin-bottom: 2px;
}

.card-topline-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.card-feature-label,
.card-action-hint {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-feature-label {
  color: rgba(79, 23, 25, 0.62);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
}

.card-badge.tone-soft {
  background: rgba(93, 110, 83, 0.08);
  color: #54624a;
  border-color: rgba(93, 110, 83, 0.14);
}

.card-badge.tone-gold {
  background: rgba(217, 166, 70, 0.12);
  color: #8a5f00;
  border-color: rgba(217, 166, 70, 0.2);
}

.card-badge.tone-warm {
  background: rgba(197, 107, 63, 0.12);
  color: #a34d25;
  border-color: rgba(197, 107, 63, 0.18);
}

.card-badge.tone-olive {
  background: rgba(93, 110, 83, 0.12);
  color: #4e5f47;
  border-color: rgba(93, 110, 83, 0.18);
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(143, 40, 40, 0.09), rgba(197, 107, 63, 0.12));
  border: 1px solid rgba(143, 40, 40, 0.1);
  color: var(--brand-deep);
  font-size: 1.02rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.option-card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  color: #43201d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.78rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.option-card p {
  margin: 0;
  line-height: 1.58;
  color: #655449;
}

.card-description {
  min-height: 48px;
  max-width: 30ch;
}

.card-meta {
  align-items: stretch;
  flex-wrap: wrap;
  padding: 14px 0 12px;
  border-top: 1px solid rgba(143, 40, 40, 0.08);
  border-bottom: 1px solid rgba(143, 40, 40, 0.08);
}

.tag,
.detail-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(143, 40, 40, 0.08);
  color: var(--brand);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.card-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217, 166, 70, 0.18), rgba(217, 166, 70, 0.1));
  color: #7e5600;
  font-size: 0.84rem;
  font-weight: 700;
}

.card-rating-summary::before {
  content: "\2605";
  color: var(--brand-gold);
  font-size: 0.95rem;
}

.card-review-count {
  font-size: 0.86rem;
  color: #9b5f3c;
  font-weight: 700;
}

.card-footer {
  color: #7f6251;
}

.card-action-hint {
  color: rgba(79, 23, 25, 0.72);
}

.option-card:hover .card-arrow,
.option-card:focus-visible .card-arrow {
  transform: translate(2px, -2px);
  background: linear-gradient(180deg, rgba(143, 40, 40, 0.13), rgba(197, 107, 63, 0.18));
}

.option-card:hover .card-action-hint,
.option-card:focus-visible .card-action-hint {
  color: var(--brand-deep);
}

.review-panel[hidden] {
  display: none;
}

.back-btn,
.submit-btn,
.delete-btn {
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, opacity 0.18s ease, background-position 0.3s ease;
  background-size: 180% 180%;
}

.back-btn {
  background: linear-gradient(180deg, #f4e7d7, #ecd9c4);
  color: var(--brand-deep);
  padding: 12px 18px;
  margin-bottom: 18px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(101, 65, 36, 0.08);
}

.submit-btn {
  margin-top: 12px;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-warm));
  color: #fff7ef;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(139, 35, 35, 0.14);
}

.delete-btn {
  padding: 11px 15px;
  background: var(--brand-deep);
  color: #fff7ef;
  font-weight: 700;
}

.back-btn:hover,
.submit-btn:hover,
.delete-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.03);
  background-position: 100% 0;
}

.delete-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.detail-shell {
  display: grid;
  gap: 28px;
  animation: fadePanel 0.45s ease both;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.detail-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  color: var(--brand-deep);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.detail-highlight {
  padding: 15px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.86), rgba(255, 244, 232, 0.74));
  border: 1px solid rgba(143, 40, 40, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.detail-highlight-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(79, 23, 25, 0.58);
}

.detail-highlight-value {
  display: block;
  color: #43201d;
  font-size: 1rem;
}

.detail-image {
  width: 100%;
  min-height: 100%;
  max-height: 370px;
  object-fit: cover;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7e9d8 0%, #f2ddc7 100%);
  box-shadow: 0 18px 34px rgba(118, 70, 31, 0.12);
  animation: imageReveal 0.55s ease both;
}

.rating-summary {
  margin: 22px 0 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(197, 107, 63, 0.08), rgba(143, 40, 40, 0.03));
  border: 1px solid rgba(197, 107, 63, 0.14);
  color: #43201d;
  font-weight: 600;
}

.server-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 0;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(93, 110, 83, 0.08);
  border: 1px solid rgba(93, 110, 83, 0.12);
  font-size: 0.95rem;
  color: #5b664f;
  font-weight: 600;
}

.server-status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-olive);
  box-shadow: 0 0 0 5px rgba(93, 110, 83, 0.12);
  flex: none;
}

.server-status.error {
  background: rgba(143, 40, 40, 0.08);
  border-color: rgba(143, 40, 40, 0.14);
  color: var(--brand);
}

.server-status.error::before {
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(143, 40, 40, 0.1);
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.review-form-card,
.reviews-section {
  border-radius: 26px;
  background: var(--surface-strong);
  border: 1px solid rgba(120, 83, 49, 0.1);
  padding: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 10px 24px rgba(111, 76, 47, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.review-form-card::before,
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(143, 40, 40, 0.9), rgba(197, 107, 63, 0.45), transparent);
}

.review-form-card:hover,
.reviews-section:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 28px rgba(111, 76, 47, 0.08);
  border-color: var(--line-strong);
}

.rating-fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: none;
}

.rating-fieldset legend {
  font-weight: 700;
  margin-bottom: 10px;
}

.stars {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 8px;
}

.star-button {
  border: none;
  background: linear-gradient(180deg, #fff6e2, #ffefd0);
  padding: 6px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #c6b7a1;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.star-button:hover {
  transform: translateY(-2px);
  background: #ffefd0;
}

.star-button.selected {
  color: var(--brand-gold);
  background: #fff0c9;
}

.form-hint,
.form-error {
  margin: 6px 0 0;
  font-size: 0.95rem;
}

.form-error {
  min-height: 1.3em;
  color: var(--brand);
  font-weight: 600;
}

.input-label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid #ddcfbd;
  background: #fffefb;
  color: #2b2b2b;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus-visible,
textarea:focus-visible {
  border-color: var(--brand-warm);
  box-shadow: 0 0 0 4px rgba(197, 107, 63, 0.12);
}

textarea {
  resize: vertical;
  min-height: 132px;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(91, 33, 31, 0.03), rgba(91, 33, 31, 0.01));
  border: 1px dashed rgba(91, 33, 31, 0.16);
  color: #6b594c;
}

.review-item {
  --review-delay: 0ms;
  background: linear-gradient(180deg, #fffdfa 0%, #fff6eb 100%);
  color: #2a201a;
  padding: 18px;
  border-radius: 22px;
  margin-top: 14px;
  border: 1px solid rgba(138, 76, 44, 0.09);
  box-shadow: 0 10px 22px rgba(102, 67, 39, 0.06);
  animation: cardIn 0.45s ease both;
  animation-delay: var(--review-delay);
}

.review-item-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.review-meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(143, 40, 40, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.review-date {
  color: #7b6657;
  font-size: 0.88rem;
  font-weight: 600;
}

.review-name {
  font-weight: 700;
  color: #43201d;
}

.review-rating {
  color: #b87300;
  font-weight: 700;
}

.review-text {
  margin: 0;
  line-height: 1.7;
  white-space: pre-wrap;
  color: #5d4c40;
}

.admin-header {
  padding-bottom: 44px;
}

.admin-login-card {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.admin-form {
  margin-top: 16px;
}

.admin-panel {
  display: block;
  min-height: 340px;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-logout-btn {
  width: auto;
}

.admin-summary {
  margin-top: 20px;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.admin-metric {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.9), rgba(255, 244, 232, 0.78));
  border: 1px solid rgba(120, 83, 49, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.admin-metric-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(79, 23, 25, 0.58);
}

.admin-metric-value {
  display: block;
  color: #43201d;
  font-size: 1rem;
}

.admin-review-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-review-item {
  margin-top: 0;
}

.admin-review-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.admin-review-date {
  color: #7b6657;
  font-size: 0.92rem;
}

.admin-feature-tag {
  background: rgba(143, 40, 40, 0.09);
}

.admin-review-actions {
  margin-top: 16px;
}

.site-footer {
  padding: 20px 20px 42px;
  text-align: center;
  color: #6f5d50;
}

.site-footer-title {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: var(--brand-deep);
}

.site-footer-copy {
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.7;
}

.admin-footer {
  padding-top: 4px;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 16px, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  .detail-hero,
  .detail-columns {
    grid-template-columns: 1fr;
  }

  .detail-highlights,
  .admin-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-nav {
    position: static;
    justify-content: center;
    margin-bottom: 18px;
  }

  .intro-box,
  .review-panel {
    padding: 22px;
  }

  .site-header {
    padding: 40px 16px 34px;
  }

  .site-header h1 {
    font-size: 3rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .back-btn,
  .submit-btn,
  .delete-btn {
    width: 100%;
  }

  .admin-actions {
    width: 100%;
  }
}
