
:root {
  --color-primary:       #1A1208;   
  --color-secondary:     #2C1F0E;   
  --color-accent:        #B8922A;   
  --color-accent-light:  #D4AF5A;   
  --color-surface:       #FAF7F2;   
  --color-surface-alt:   #F0EBE1;   
  --color-text:          #1A1208;   
  --color-text-muted:    #6B5B45;   
  --color-text-light:    #9B8B76;   
  --color-border:        #D4C4A8;   
  --color-white:         #FFFFFF;
  --color-overlay:       rgba(26,18,8,0.55);

  --font-display:        'Cinzel', serif;
  --font-serif:          'Cormorant Garamond', serif;
  --font-sans:           'Jost', sans-serif;

  --transition-smooth:   all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast:     all 0.2s ease-in-out;
  --max-width:           1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-surface);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main-content {
  flex: 1 0 auto;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.015;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 10px 20px;
  z-index: 2000;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--color-surface-alt);
}

.section-bg-dark {
  background-color: var(--color-primary);
  color: var(--color-surface);
}

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
  color: var(--color-white);
}

.divider-gold {
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--color-accent);
  margin: 1.5rem 0;
}

.section-header.centered .divider-gold {
  margin: 1.5rem auto;
}

.section-header {
  position: relative;
  margin-bottom: 4rem;
  z-index: 2;
}

.section-header.centered {
  text-align: center;
}

.section-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.05;
  position: absolute;
  top: -4rem;
  left: -1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.section-header.centered .section-number {
  left: 50%;
  transform: translateX(-50%);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.section-intro {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(212, 196, 168, 0.15);
  transition: var(--transition-smooth);
}

#site-header.scrolled {
  height: 75px;
  background-color: rgba(26, 18, 8, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(212, 196, 168, 0.1);
}

#site-header.header-opaque {
  background-color: var(--color-primary);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent-light);
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-white);
  opacity: 0.8;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  opacity: 0.85;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--color-accent-light);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-light);
  transition: var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--color-white);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--color-white);
}

#site-footer {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(212, 196, 168, 0.15);
  font-family: var(--font-sans);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--color-accent);
  margin-top: 0.5rem;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-social a:hover {
  opacity: 1;
  color: var(--color-accent-light);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-legal-list {
  list-style: none;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-legal-list em {
  font-style: normal;
  color: var(--color-accent-light);
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-policy-links a {
  font-size: 0.8rem;
  opacity: 0.6;
  text-decoration: underline;
}

.footer-policy-links a:hover {
  opacity: 0.9;
  color: var(--color-accent-light);
}

.footer-payments {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 196, 168, 0.1);
  border-bottom: 1px solid rgba(212, 196, 168, 0.1);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}

.payments-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.payment-icons {
  display: flex;
  gap: 1.2rem;
}

.payment-icon {
  width: auto;
  height: 22px;
  max-width: 55px;
  filter: brightness(0) invert(0.8);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.payment-icon:hover {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.45;
  margin-bottom: 2rem;
  text-align: justify;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(212, 196, 168, 0.05);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
