:root {
  --burgundy-dark: #26070f;
  --burgundy-main: #4a0d1b;
  --burgundy-accent: #6b1429;
  --gold-primary: #c5a059;
  --gold-light: #e8d5b0;
  --gold-dark: #997533;
  --bg-cream: #faf7f2;
  --bg-card: #ffffff;
  --text-dark: #1f1a18;
  --text-body: #4a423f;
  --text-muted: #80736e;
  --font-en: Cinzel, serif;
  --font-jp: Noto Serif JP, serif;
  --font-sans: Montserrat, sans-serif;
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-luxury: 0 20px 40px rgba(38, 7, 15, 0.12); }

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important; } }

.u-sp-only {
  display: none !important; }
  @media (max-width: 767px) {
    .u-sp-only {
      display: inline !important; } }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; }

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(38, 7, 15, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .header-logo img {
    height: 16px;
    width: auto; }

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  list-style: none; }
  .nav-menu a {
    color: #e0d7cf;
    font-size: 12px;
    font-family: var(--font-sans);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative; }
    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background-color: var(--gold-primary);
      -webkit-transition: width 0.3s ease;
      -o-transition: width 0.3s ease;
      transition: width 0.3s ease; }
    .nav-menu a:hover::after {
      width: 100%; }

.btn-header-cta {
  background: var(--gold-primary);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-primary); }
  .btn-header-cta:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #ffffff; }

@media (max-width: 767px) {
  header {
    padding: 8px 16px; }
  .header-logo img {
    height: 14px; }
  .nav-menu {
    display: none; }
  .btn-header-cta {
    padding: 8px 16px;
    font-size: 12px; } }

.marquee-section {
  background-color: var(--burgundy-dark);
  border-top: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  padding: 16px 0;
  overflow: hidden;
  position: relative; }

.marquee-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: infiniteMarquee 30s linear infinite;
  animation: infiniteMarquee 30s linear infinite; }

@-webkit-keyframes infiniteMarquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); } }

@keyframes infiniteMarquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); } }

.marquee-img-box {
  width: 320px;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  .marquee-img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease; }

@media (max-width: 767px) {
  .marquee-section {
    padding: 8px 0; }
  .marquee-img-box {
    width: 224px;
    height: 160px; } }

section {
  padding: 96px 24px;
  position: relative; }

.container {
  max-width: 1140px;
  margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 64px; }

.section-en-title {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  font-weight: 600; }

.section-jp-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--burgundy-dark);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px; }
  .section-jp-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: var(--gold-primary); }

.section-intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto; }

@media (max-width: 767px) {
  section {
    padding: 56px 16px; }
  .section-header {
    margin-bottom: 32px; }
  .section-jp-title {
    font-size: 22px;
    letter-spacing: 1px; }
  .section-intro {
    font-size: 13px; } }

.hero-section {
  position: relative;
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(38, 7, 15, 0.7)), to(rgba(20, 3, 8, 0.85))), url("../img/img_kv.jpg") center/cover no-repeat;
  background: -webkit-linear-gradient(top, rgba(38, 7, 15, 0.7) 0%, rgba(20, 3, 8, 0.85) 100%), url("../img/img_kv.jpg") center/cover no-repeat;
  background: -o-linear-gradient(top, rgba(38, 7, 15, 0.7) 0%, rgba(20, 3, 8, 0.85) 100%), url("../img/img_kv.jpg") center/cover no-repeat;
  background: linear-gradient(180deg, rgba(38, 7, 15, 0.7) 0%, rgba(20, 3, 8, 0.85) 100%), url("../img/img_kv.jpg") center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 136px 24px 80px;
  color: #ffffff; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto; }

.hero-crest {
  width: 320px;
  height: auto;
  margin: 0 auto 80px; }

.hero-tagline-badge {
  display: inline-block;
  border: 1px solid var(--gold-primary);
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: 32px;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 32px; }

.hero-headline {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: 3px; }

.hero-cta-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px; }

.btn-hero-primary {
  background: var(--gold-primary);
  color: #ffffff;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
  border-radius: 2px;
  border: 1px solid var(--gold-primary);
  -webkit-transition: background 0.3s ease, border-color 0.3s ease;
  -o-transition: background 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease; }
  .btn-hero-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #ffffff; }

.hero-location-notice {
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 24px;
  border-radius: 24px;
  border: 1px solid rgba(197, 160, 89, 0.2); }
  .hero-location-notice i {
    color: var(--gold-primary);
    margin-right: 8px; }

.story-section {
  background-color: #ffffff; }

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.story-image-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-luxury);
  box-shadow: var(--shadow-luxury); }
  .story-image-box img {
    width: 100%;
    height: 480px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px; }

.story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(38, 7, 15, 0.92);
  color: var(--gold-light);
  padding: 12px 24px;
  border-left: 3px solid var(--gold-primary);
  font-size: 13px;
  letter-spacing: 1px; }

.story-text-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--burgundy-main);
  line-height: 1.5;
  margin-bottom: 24px; }

.story-text-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.9; }

.story-highlight-box {
  background: #fcf9f5;
  border: 1px dashed var(--gold-primary);
  padding: 24px;
  border-radius: 4px;
  margin-top: 24px; }
  .story-highlight-box h4 {
    color: var(--burgundy-dark);
    font-size: 15px;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px; }
    .story-highlight-box h4 i {
      color: var(--gold-primary); }

.fabric-section {
  background-color: var(--bg-cream); }

.fabric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; }

.fabric-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  -webkit-box-shadow: var(--shadow-subtle);
  box-shadow: var(--shadow-subtle);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.fabric-logo-wrapper {
  background: var(--burgundy-dark);
  color: var(--gold-light);
  padding: 24px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 160, 89, 0.3); }

.fabric-brand-name {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px; }

.fabric-country {
  font-size: 11px;
  color: var(--gold-primary);
  letter-spacing: 2px;
  margin-top: 4px; }

.fabric-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left; }

.fabric-tag {
  display: inline-block;
  background: #f4eee6;
  color: var(--burgundy-main);
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 24px;
  font-weight: 600; }

.craft-section {
  background-color: var(--bg-cream); }

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.craft-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 24px;
  line-height: 1.5; }

.craft-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 24px; }
  .craft-content p:last-child {
    margin-bottom: 0; }

.craft-features-list {
  list-style: none;
  margin-top: 24px; }
  .craft-features-list li {
    font-size: 14.5px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px; }
    .craft-features-list li i {
      color: var(--gold-primary);
      font-size: 16px; }

.price-section {
  background-color: var(--bg-cream); }

.price-featured-card {
  background: -webkit-linear-gradient(315deg, var(--burgundy-dark) 0%, var(--burgundy-main) 100%);
  background: -o-linear-gradient(315deg, var(--burgundy-dark) 0%, var(--burgundy-main) 100%);
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-main) 100%);
  color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid var(--gold-primary);
  -webkit-box-shadow: var(--shadow-luxury);
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.price-featured-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--burgundy-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px; }

.price-featured-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px; }

.price-featured-desc {
  font-size: 14px;
  color: #e0d5cb;
  line-height: 1.8;
  margin-bottom: 24px; }

.price-featured-value {
  text-align: right;
  border-left: 1px solid rgba(197, 160, 89, 0.3);
  padding-left: 40px; }

.price-featured-amount {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1; }
  .price-featured-amount span {
    font-size: 18px;
    font-family: var(--font-jp);
    margin-left: 4px;
    font-weight: 400; }

.price-featured-note {
  font-size: 12px;
  color: #b8aba0;
  margin-top: 8px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-subtle);
  box-shadow: var(--shadow-subtle);
  border: 1px solid #eee; }
  .price-table th {
    background-color: var(--burgundy-main);
    color: #f7f3ed;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 24px;
    text-align: left; }
  .price-table td {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    color: var(--text-body); }
  .price-table tr:hover td {
    background-color: #fcfaf7; }

.price-item-name {
  font-weight: 700;
  color: var(--burgundy-main); }

.price-item-cost {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px; }

.flow-section {
  background-color: #ffffff; }

.flow-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative; }

.flow-card {
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 32px 16px 24px;
  text-align: center;
  position: relative; }
  .flow-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--burgundy-dark); }

.flow-num {
  width: 32px;
  height: 32px;
  background: var(--burgundy-main);
  color: var(--gold-light);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.flow-icon {
  margin: 24px auto 16px;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .flow-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain; }
  .flow-icon i {
    font-size: 40px;
    color: var(--burgundy-dark); }

.access-section {
  background-color: var(--bg-cream); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.access-info-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  -webkit-box-shadow: var(--shadow-subtle);
  box-shadow: var(--shadow-subtle); }

.access-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px; }

.access-list {
  list-style: none;
  margin-bottom: 24px; }
  .access-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    .access-list li i {
      color: var(--gold-primary);
      font-size: 16px;
      margin-top: 3px;
      width: 16px;
      text-align: center; }
    .access-list li strong {
      font-weight: 700; }

.access-map-link {
  display: inline-block;
  background: var(--gold-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 24px;
  margin-left: 8px;
  vertical-align: middle; }
  .access-map-link:hover {
    background: var(--gold-dark); }

.access-info-notice {
  background: #f8f5f0;
  border: 1px solid #eae3d8;
  border-left: 3px solid var(--burgundy-main);
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 24px; }
  .access-info-notice h4 {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
    color: var(--burgundy-dark);
    margin-bottom: 8px;
    letter-spacing: 1px; }
  .access-info-notice p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.8; }

.social-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px; }

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy-main);
  color: var(--gold-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease; }
  .social-btn:hover {
    background: var(--gold-primary);
    color: #ffffff; }

.access-event-box {
  background: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px;
  min-height: 100%; }
  .access-event-box p {
    color: var(--gold-light);
    font-size: 18px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 1px; }
  .access-event-box img {
    border-radius: 8px; }

@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 120px 16px 56px; }
  .hero-crest {
    width: 200px;
    margin-bottom: 24px; }
  .hero-headline {
    font-size: 18px;
    letter-spacing: 1.5px; }
  .hero-tagline-badge {
    font-size: 11px;
    padding: 8px 16px; }
  .btn-hero-primary {
    padding: 16px 32px;
    font-size: 14px;
    letter-spacing: 1.5px; }
  .hero-location-notice {
    font-size: 12px;
    padding: 8px 16px; }
  .story-grid,
  .craft-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 32px; }
  .story-image-box img {
    height: 256px; }
  .story-text-content h3,
  .craft-content h3 {
    font-size: 20px; }
  .story-text-content p,
  .craft-content p {
    font-size: 14px; }
  .fabric-grid {
    grid-template-columns: 1fr; }
  .fabric-card {
    padding: 24px 16px; }
  .price-featured-card {
    grid-template-columns: 1fr;
    padding: 24px 16px; }
  .price-featured-value {
    text-align: left;
    border-left: none;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    padding-left: 0;
    padding-top: 24px; }
  .price-featured-amount {
    font-size: 32px; }
  .price-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
  .price-table {
    min-width: 800px; }
  .flow-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px; }
  .flow-card {
    padding: 24px 8px 16px; }
  .access-info-box {
    padding: 24px 16px; }
  .access-event-box {
    padding: 32px 16px;
    min-height: 200px; } }

.bottom-cta-section {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--burgundy-main)), to(var(--burgundy-dark)));
  background: -webkit-linear-gradient(top, var(--burgundy-main) 0%, var(--burgundy-dark) 100%);
  background: -o-linear-gradient(top, var(--burgundy-main) 0%, var(--burgundy-dark) 100%);
  background: linear-gradient(180deg, var(--burgundy-main) 0%, var(--burgundy-dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 24px; }
  .bottom-cta-section h2 {
    font-size: 32px;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-weight: 700; }
  .bottom-cta-section p {
    font-size: 15px;
    color: #d6cbbf;
    max-width: 600px;
    margin: 0 auto 32px; }

.floating-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(38, 7, 15, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--gold-primary);
  padding: 12px 24px;
  -webkit-box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.floating-cta-inner {
  max-width: 1140px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.floating-cta-text {
  color: #ffffff;
  font-size: 14px; }
  .floating-cta-text strong {
    color: var(--gold-light);
    font-size: 16px;
    display: block; }

.btn-floating-cta {
  background: var(--gold-primary);
  color: #ffffff;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 2px;
  border: 1px solid var(--gold-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px; }
  .btn-floating-cta:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #ffffff; }

@media (max-width: 767px) {
  .bottom-cta-section {
    padding: 48px 16px; }
    .bottom-cta-section h2 {
      font-size: 22px; }
    .bottom-cta-section p {
      font-size: 14px; }
  .floating-cta-text {
    display: none; }
  .floating-cta-inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .btn-floating-cta {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 14px; } }

footer {
  background-color: #120307;
  color: #7d6e68;
  padding: 40px 20px;
  text-align: center;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05); }

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