:root {
  --bg: #f7f1eb;
  --bg-strong: #f0e4d6;
  --panel: rgba(35, 18, 15, 0.7);
  --panel-2: rgba(255, 255, 255, 0.12);
  --text: #231815;
  --text-soft: #5b473e;
  --gold: #d7b177;
  --gold-deep: #9a6e3d;
  --red: #7c1f1a;
  --red-deep: #4d1715;
  --ivory: #fffaf5;
  --shadow: 0 24px 60px rgba(28, 20, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(215, 177, 119, 0.18), transparent 30%),
    linear-gradient(180deg, #f6efe9 0%, #f3eadf 100%);
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.eyebrow.dark {
  color: var(--gold-deep);
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  color: var(--white);
  max-width: 620px;
}

h2 {
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  color: var(--text);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(2rem, 2vw, 2.5rem);
}

p {
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(18, 13, 11, 0.78), rgba(18, 13, 11, 0.38));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(17, 10, 8, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  border: 3px solid rgba(215, 177, 119, 0.7);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(123,31,26,0.18));
  box-shadow: 0 12px 28px rgba(66, 39, 22, 0.18);
  overflow: hidden;
}

.footer-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e4c788, #a67a3e);
  color: #1f1714;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(201, 166, 107, 0.35);
}

.brand-name,
.brand-sub {
  color: #f8f3ee;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.92rem;
  letter-spacing: 0.26em;
  font-weight: 600;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 6px 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 55%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,0));
  transform: skewX(-22deg);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: skewX(-22deg) translateX(230%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.04);
}

.btn-primary {
  background: linear-gradient(135deg, #d5b174, #b88945 48%, #e9c98a);
  color: #1d140f;
  box-shadow: 0 18px 24px rgba(184, 137, 69, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 32px rgba(184, 137, 69, 0.42);
}

.btn-secondary {
  color: #f6ebd7;
  border: 1px solid rgba(215, 177, 119, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 10px 18px rgba(28, 18, 12, 0.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(215, 177, 119, 0.1);
  border-color: rgba(215, 177, 119, 0.9);
  color: #fffaf4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 16px 22px rgba(28, 18, 12, 0.18);
}

.hero {
  position: relative;
  min-height: 760px;
  background-image: url("poster.png");
  background-size: cover;
  background-position: center;
  background-color: #1e130f;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,177,119,0.25), rgba(215,177,119,0));
  filter: blur(20px);
  animation: glowPulse 7s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 12, 10, 0.86), rgba(17, 12, 10, 0.42)),
    linear-gradient(180deg, rgba(20, 16, 14, 0.18), rgba(20, 16, 14, 0.66));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 54px;
  min-height: 760px;
}

.hero-copy {
  padding-top: 70px;
}

.lead {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 590px;
  font-size: 1.12rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-meta {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.hero-meta li {
  position: relative;
  padding-right: 18px;
}

.hero-meta li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-card {
  background: rgba(22, 15, 13, 0.58);
  border: 1px solid rgba(215, 177, 119, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 28px 26px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(215,177,119,0.08);
  animation: floatCard 7s ease-in-out infinite;
}

.card-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 166, 107, 0.14);
  border: 1px solid rgba(201, 166, 107, 0.4);
  color: #f0dca9;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-card h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.mini-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.mini-feature strong {
  color: #f7e9c9;
  font-size: 1rem;
}

.mini-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.7);
}

.stats {
  background: #191310;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0;
}

.stats-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  text-align: center;
  color: var(--white);
}

.stats-grid strong {
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  color: #f0d39a;
  font-family: "Cormorant Garamond", serif;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.7);
}

.about-grid,
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  background: #e4d9d0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 640px;
  border-radius: 26px;
  object-fit: contain;
  object-position: center center;
  background: #e4d9d0;
  display: block;
}

.about-copy p {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.about-copy > p + p {
  margin-top: 18px;
}

.about-points {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.about-points div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.38);
  border-radius: 0 18px 18px 0;
}

.about-points strong {
  font-size: 1.08rem;
}

.about-points span {
  color: var(--text-soft);
}

.section-heading {
  margin-bottom: 44px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(29, 21, 17, 0.06);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(27, 20, 18, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 46px rgba(27, 20, 18, 0.12);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-text {
  padding: 22px 18px 24px;
}

.service-text h3 {
  font-size: 2.15rem;
  margin-bottom: 8px;
}

.service-text p {
  color: var(--text-soft);
}

.experience {
  background: linear-gradient(180deg, rgba(245, 238, 230, 0.8), rgba(228, 215, 203, 0.9));
}

.feature-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.14);
}

.experience-card {
  background: #1b1411;
  color: var(--white);
  border-radius: 28px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-row:last-child {
  border-bottom: none;
}

.card-row span {
  color: rgba(255, 255, 255, 0.8);
}

.card-row strong {
  color: #f0d39a;
  font-size: 1rem;
}

.pricing {
  background: #f5efe9;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.price-card {
  position: relative;
  padding: 30px 26px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(34, 26, 22, 0.08);
  box-shadow: 0 18px 36px rgba(31, 25, 22, 0.06);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(31, 25, 22, 0.12);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(29, 22, 18, 0.98), rgba(49, 37, 31, 0.96));
  color: var(--white);
  transform: translateY(-8px);
}

.tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(201, 166, 107, 0.18);
  color: #f2dca5;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 2.35rem;
  margin-bottom: 18px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--text-soft);
}

.featured .price {
  color: rgba(255, 255, 255, 0.74);
}

.price span {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold-deep);
}

.featured .price span {
  color: #f0d39a;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--text-soft);
}

.featured ul {
  color: rgba(255, 255, 255, 0.85);
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.price-note {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.46);
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(34, 26, 22, 0.08);
  color: var(--text-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(28, 18, 12, 0.12);
  cursor: pointer;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 42px rgba(28, 18, 12, 0.16);
  filter: saturate(1.08);
}

.location-section {
  background: linear-gradient(180deg, rgba(250, 244, 238, 0.75), rgba(240, 229, 216, 0.9));
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

@media (max-width: 720px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-copy {
    padding-right: 0;
  }

  .map-card {
    width: 100%;
    min-height: 260px;
  }

  .map-card iframe {
    min-height: 260px;
  }
}

.location-copy {
  padding-right: 20px;
}

.location-copy p {
  color: var(--text-soft);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(35, 24, 21, 0.06);
  border-radius: 16px;
}

.contact-item .label {
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-item strong,
.contact-item a {
  color: var(--text);
  font-size: 1.04rem;
}

.qr-card {
  margin-top: 26px;
}

.qr-content {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(35, 24, 21, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(41, 28, 19, 0.06);
}

.qr-content .label {
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.qr-content img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(35, 24, 21, 0.05);
}

.map-button {
  margin-top: 26px;
}

.map-card {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 24, 21, 0.08);
  background: #e9dfd4;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 9, 8, 0.8);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  max-height: 88vh;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(16, 12, 10, 0.8);
  border: 1px solid rgba(215, 177, 119, 0.38);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-content img {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  cursor: pointer;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

@keyframes glowPulse {
  0% { transform: scale(0.94); opacity: 0.6; }
  100% { transform: scale(1.12); opacity: 1; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes shimmer {
  0% { opacity: 0.38; }
  100% { opacity: 1; }
}

.footer {
  background: #120f0d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  padding: 72px 0 48px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.footer p,
.footer-link {
  color: rgba(255, 255, 255, 0.72);
}

.footer-link {
  display: inline-block;
  margin-top: 8px;
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 30px;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 980px) {
  .hero-inner,
  .about-grid,
  .experience-grid,
  .footer-grid,
  .service-grid,
  .gallery-grid,
  .price-grid { 
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .hero-card {
    max-width: 440px;
    justify-self: end;
  }
}

@media (max-width: 720px) {
  .hero-inner,
  .about-grid,
  .experience-grid,
  .footer-grid,
  .service-grid,
  .gallery-grid,
  .price-grid,
  .stats-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    min-height: 680px;
    gap: 26px;
    padding-bottom: 40px;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero-card {
    max-width: none;
    justify-self: stretch;
  }

  .nav {
    min-height: 72px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }

  .brand-name {
    letter-spacing: 0.18em;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding-bottom: 4px;
  }

  .main-nav a {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    border-color: rgba(215, 177, 119, 0.65);
    background: rgba(215, 177, 119, 0.08);
  }

  .btn {
    width: auto;
    min-width: 0;
    padding: 0 14px;
    min-height: 38px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: row;
    gap: 10px;
  }

  .topbar {
    min-height: 72px;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 420px) {
  .nav {
    min-height: 64px;
  }

  .btn {
    padding: 0 12px;
    min-height: 34px;
    font-size: 0.66rem;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }
}
