:root {
  --bg: #07110d;
  --bg-soft: #0d1d16;
  --gold: #d9b96e;
  --gold-soft: #f0ddaa;
  --text: #eef5f0;
  --muted: #c4d0c8;
  --card: rgba(10, 24, 18, 0.78);
  --border: rgba(217, 185, 110, 0.28);
  --ticker-height: 2.35rem;
}

.top-ticker {
  position: sticky;
  top: 0;
  z-index: 1100;
  overflow: hidden;
  background: linear-gradient(90deg, #c9a85c, var(--gold), #c9a85c);
  color: var(--bg);
  height: var(--ticker-height);
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ticker-dot {
  opacity: 0.55;
  font-size: 0.65rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .ticker-content[aria-hidden="true"] {
    display: none;
  }
}

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

body {
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(circle at top, #123126 0%, var(--bg) 50%, #050806 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero,
.mid-banner {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mid-banner {
  min-height: 52vh;
  margin: 3rem 0;
}

.hero-bg,
.mid-banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(2, 8, 5, 0.82) 20%,
    rgba(8, 24, 18, 0.44) 58%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content,
.mid-banner-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
  max-width: 760px;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  margin-bottom: 0.6rem;
}

.hero-content p {
  max-width: 60ch;
  color: #ecf3ef;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.82rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  background: rgba(217, 185, 110, 0.12);
}

.btn:hover {
  background: rgba(217, 185, 110, 0.3);
  transform: translateY(-2px);
}

.story-blocks {
  display: grid;
  gap: 0;
}

.story-section {
  padding: 4.5rem 0;
}

.story-section-alt {
  background: rgba(13, 29, 22, 0.45);
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-row-reverse {
  direction: rtl;
}

.story-row-reverse > * {
  direction: ltr;
}

.story-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold-soft);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.story-content p {
  color: var(--muted);
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.story-list {
  list-style: none;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.story-list li {
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
}

.story-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.story-content .btn {
  margin-top: 1.5rem;
}

.story-image {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(5, 8, 6, 0.5);
}

.highlights-section h3 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold-soft);
  margin-bottom: 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.highlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.highlight-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

.highlight-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.mid-banner-content .btn {
  margin-top: 1.2rem;
}

.intro {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
}

.intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--gold-soft);
}

.intro p {
  margin: 0.8rem auto 0;
  max-width: 72ch;
  color: var(--muted);
}

.cards-section {
  padding: 1.5rem 0 2rem;
}

.cards-section h3,
.process-section h3 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.flip-card {
  perspective: 1000px;
  min-height: 300px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  backface-visibility: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-back {
  transform: rotateY(180deg);
  background: var(--card);
  padding: 1.2rem;
  display: grid;
  align-content: center;
  text-align: center;
}

.flip-back h4 {
  font-size: 1.65rem;
  color: var(--gold-soft);
}

.flip-back p {
  color: var(--muted);
  font-size: 0.96rem;
}

.mid-banner-content {
  text-align: center;
}

.mid-banner-content h3 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.mid-banner-content p {
  color: #edf4f1;
  font-size: 1.06rem;
}

.process-section {
  padding: 0.5rem 0 4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
}

.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.process-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.process-card figcaption {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
}

.process-card strong {
  font-size: 1.15rem;
  color: var(--gold-soft);
}

.process-card span {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-actions .btn {
  margin-top: 0;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(217, 185, 110, 0.35), rgba(217, 185, 110, 0.18));
  border-color: var(--gold-soft);
  box-shadow: 0 4px 20px rgba(217, 185, 110, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(217, 185, 110, 0.55), rgba(217, 185, 110, 0.3));
}

.btn-full {
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  font-family: inherit;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
}

.intro-cta {
  margin-top: 1.5rem;
}

.order-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 29, 22, 0.6) 100%);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.order-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.order-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.order-price span {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.2rem;
}

.order-benefits {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.order-benefits li {
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}

.order-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.order-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(7, 17, 13, 0.7);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(196, 208, 200, 0.45);
}

.form-checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--gold-soft);
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: rgba(196, 208, 200, 0.6);
  text-align: center;
}

.order-success {
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(217, 185, 110, 0.2);
  color: var(--gold);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.order-success h3 {
  font-size: 1.8rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.order-success p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 8, 6, 0.85);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-contact li {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.1rem 0 1.6rem;
  text-align: center;
  color: rgba(196, 208, 200, 0.55);
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem;
  background: rgba(7, 17, 13, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.cookie-banner-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 60ch;
}

.cookie-banner a {
  color: var(--gold-soft);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.page-header {
  padding: 3rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.page-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content {
  padding-bottom: 4rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin: 2rem 0 0.7rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--gold-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold-soft);
}

.site-nav {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 17, 13, 0.9);
  position: sticky;
  top: var(--ticker-height);
  z-index: 100;
  backdrop-filter: blur(8px);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav .logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

@media (max-width: 860px) {
  .hero {
    min-height: 64vh;
  }

  .story-row,
  .story-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .story-section {
    padding: 3rem 0;
  }

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

  .order-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}
