/* ===== BAYRAM SOFRASI - MAIN STYLESHEET ===== */

/* --- CSS Custom Properties --- */
:root {
  --cream: #FDF6EC;
  --cream-dark: #F5EBDA;
  --gold: #C8A04A;
  --gold-light: #E8D5A0;
  --gold-dark: #A07D2E;
  --burgundy: #7B1E3E;
  --burgundy-light: #9E3A5A;
  --iznik-blue: #1E6B8C;
  --iznik-blue-light: #2A8AB5;
  --text-primary: #3A2E1F;
  --text-secondary: #5C4A35;
  --text-muted: #8A7B6A;
  --white: #FFFFFF;
  --border: #E0D3C0;
  --shadow-soft: 0 2px 12px rgba(58, 46, 31, 0.08);
  --shadow-medium: 0 4px 24px rgba(58, 46, 31, 0.12);
  --shadow-strong: 0 8px 40px rgba(58, 46, 31, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
  --max-width: 1140px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul, ol { list-style: none; }

/* --- Ornamental SVG Border Utility --- */
.ornament-border {
  position: relative;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-md);
}

.ornament-border::before,
.ornament-border::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
}

.ornament-border::before { top: -13px; left: -13px; }
.ornament-border::after { bottom: -13px; right: -13px; }

/* --- Ornamental Divider --- */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.ornament-divider svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header / Navigation --- */
.site-header {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border-bottom: 2px solid var(--gold-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition);
}

.site-logo:hover {
  color: var(--gold-dark);
}

.site-logo:hover .site-logo-text {
  color: var(--gold-dark);
  text-shadow: 0 1px 4px rgba(200, 160, 74, 0.2);
}

.site-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.2;
  transition: color var(--transition), text-shadow var(--transition);
}

/* Desktop Navigation */
.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }

.main-nav a {
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--burgundy);
  background: rgba(123, 30, 62, 0.06);
}

.main-nav a.active {
  font-weight: 700;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--gold-light);
  margin: 0 6px;
  flex-shrink: 0;
}

.main-nav a[data-page] {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--text-primary);
}

.menu-toggle svg { width: 24px; height: 24px; fill: currentColor; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-menu { display: none; }
.menu-toggle.open .icon-close { display: block; }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-dark);
    border-bottom: 2px solid var(--gold-light);
    flex-direction: column;
    padding: 12px 24px;
    gap: 0;
    box-shadow: var(--shadow-medium);
    max-height: 80vh;
    overflow-y: auto;
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 12px 16px;
    width: 100%;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child { border-bottom: none; }

  .nav-divider {
    width: 100%;
    height: 1px;
    margin: 4px 0;
    background: var(--gold-light);
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #3A2E1F 0%, var(--burgundy) 50%, #3A2E1F 100%);
  color: var(--cream);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200, 160, 74, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(30, 107, 140, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 15L45 15L37 22L40 32L30 26L20 32L23 22L15 15L25 15Z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 70px;
}

.hero-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-ornament svg {
  width: 80px;
  height: 80px;
  fill: var(--gold);
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(253, 246, 236, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #3A2E1F;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(200, 160, 74, 0.3);
}

.hero-cta:hover {
  background: var(--gold-light);
  color: #3A2E1F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 160, 74, 0.4);
}

.hero-cta svg { width: 18px; height: 18px; fill: currentColor; }

/* --- Section Base --- */
.section {
  padding: 60px 0;
}

.section:nth-child(even) {
  background: var(--cream-dark);
}

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

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--burgundy);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Card --- */
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition);
}

.content-card:hover {
  box-shadow: var(--shadow-medium);
}

.content-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-light);
}

.content-card p {
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.content-card p:last-child { margin-bottom: 0; }

/* --- Festive Panel Card --- */
.festive-panel {
  background: linear-gradient(145deg, var(--white) 0%, #FFF9F0 100%);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.festive-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy), var(--gold));
}

/* --- Image Placeholder --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #EDE3D3 100%);
  border: 2px dashed var(--gold-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 32px;
  color: var(--text-muted);
  gap: 12px;
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--gold-light);
}

.img-placeholder span {
  font-size: 0.85rem;
  font-style: italic;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* --- Three Column Layout --- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .three-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .three-col { grid-template-columns: 1fr; }
}

/* --- Tip Box --- */
.tip-box {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E6 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.tip-box strong {
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
}

/* --- Warning Box --- */
.warning-box {
  background: linear-gradient(135deg, #FFF0F0 0%, #FFF5F0 100%);
  border-left: 4px solid var(--burgundy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.warning-box strong {
  color: var(--burgundy);
  display: block;
  margin-bottom: 6px;
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-soft); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(200, 160, 74, 0.05); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Content Image --- */
.content-img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--gold-light);
  background: linear-gradient(135deg, var(--cream-dark) 0%, #EDE3D3 100%);
  min-height: 180px;
}

.img-with-text {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: start;
}

.img-with-text--reverse {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
  .img-with-text,
  .img-with-text--reverse {
    grid-template-columns: 1fr;
  }
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group label .required {
  color: var(--burgundy);
  margin-left: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 74, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--burgundy);
}

.form-group .error-text {
  color: var(--burgundy);
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-group input.error ~ .error-text,
.form-group textarea.error ~ .error-text {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  text-decoration: underline;
}

.hn-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

.form-submit:hover {
  background: var(--burgundy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.form-message.error-msg {
  display: block;
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

/* --- Contact Info Block --- */
.contact-info-block {
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* --- Footer --- */
.site-footer {
  background: var(--text-primary);
  color: rgba(253, 246, 236, 0.7);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(253, 246, 236, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(253, 246, 236, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(253, 246, 236, 0.5);
}

.footer-bottom a:hover { color: var(--gold-light); }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 24px;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-banner p a {
  text-decoration: underline;
}

.cookie-settings {
  display: none;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.cookie-settings.visible { display: block; }

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child { border-bottom: none; }

.cookie-option-label strong { display: block; font-size: 0.95rem; }
.cookie-option-label span { font-size: 0.8rem; color: var(--text-muted); }

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--gold);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: default;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

.cookie-btn-accept {
  background: var(--gold);
  color: #3A2E1F;
}

.cookie-btn-accept:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.cookie-btn-reject {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.cookie-btn-reject:hover {
  background: var(--text-primary);
  color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}

.cookie-btn-settings:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* --- Page Header (sub-pages) --- */
.page-header {
  background: linear-gradient(160deg, #3A2E1F 0%, var(--burgundy) 100%);
  color: var(--cream);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 15L45 15L37 22L40 32L30 26L20 32L23 22L15 15L25 15Z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* --- Legal Page Content --- */
.legal-content {
  padding: 48px 0;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-light);
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.legal-content ul {
  margin: 10px 0 20px 20px;
  list-style: disc;
  color: var(--text-secondary);
}

.legal-content ul li {
  margin-bottom: 6px;
  padding-left: 4px;
}

/* --- Sitemap Page --- */
.sitemap-list {
  list-style: none;
  padding: 0;
}

.sitemap-list li {
  margin-bottom: 12px;
}

.sitemap-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition);
}

.sitemap-list a:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
  transform: translateX(4px);
}

.sitemap-list a svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition);
  z-index: 80;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--burgundy-light); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; fill: currentColor; }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb span { margin: 0 6px; }

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* --- Print --- */
@media print {
  .site-header, .site-footer, .cookie-banner, .scroll-top { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 20px 0; }
}
