@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary:        #1565A0;
  --primary-dark:   #0D3B6E;
  --primary-light:  #E8F1FA;
  --accent:         #E8A020;
  --accent-dark:    #C58410;
  --green:          #27AE60;
  --green-light:    #E8F8F0;
  --dark:           #1A2332;
  --text:           #2C3E50;
  --text-muted:     #637D94;
  --bg:             #F5F9FC;
  --bg-dark:        #0D2B3E;
  --white:          #FFFFFF;
  --border:         #D1E0ED;

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --shadow-sm:      0 2px 8px rgba(21, 101, 160, 0.08);
  --shadow-md:      0 4px 20px rgba(21, 101, 160, 0.12);
  --shadow-lg:      0 8px 40px rgba(21, 101, 160, 0.16);

  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-white  { background: var(--white); }
.section-bg     { background: var(--bg); }
.section-dark   { background: var(--bg-dark); }
.section-accent { background: var(--accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1rem; }

p { line-height: 1.75; }

.label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.brand-name .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 3px;
}

.snapshot-img,
.dest-img-photo,
.product-img-photo,
.gem-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 96px 0 104px;
  text-align: center;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero .brand {
  justify-content: center;
  margin-bottom: 64px;
}

.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 24px;
}

.hero .hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  margin-top: 64px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-text .label-tag {
  display: block;
}

.intro-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 16px 0 36px;
  line-height: 1.8;
}

.stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.intro-image-wrap {
  height: 430px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.dest-img {
  height: 224px;
  flex-shrink: 0;
  overflow: hidden;
}

.dest-img img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  display: block;
}

.dest-img .photo-placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed var(--border);
}

.dest-body {
  padding: 24px;
}

.dest-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.dest-body h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.dest-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tip-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.tip-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.28;
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.tip-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}

.tip-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.exp-text .label-tag { color: var(--accent); }

.exp-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.exp-text p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1rem;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.exp-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.exp-image-wrap {
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.exp-image-wrap .photo-placeholder {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-xl);
}

.exp-image-wrap .photo-placeholder svg {
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-img {
  height: 176px;
  flex-shrink: 0;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  display: block;
}

.product-img .photo-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed var(--border);
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-body h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.product-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.product-price .price-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.gems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.gem-img {
  height: 188px;
  overflow: hidden;
}

.gem-img img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
}

.gem-img .photo-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed var(--border);
}

.gem-body {
  padding: 22px 24px;
}

.gem-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.gem-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.gem-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.stats-section {
  background: var(--accent);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-box .big-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  display: block;
}

.stat-box .stat-desc {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(26, 35, 50, 0.68);
  margin-top: 8px;
}

.stat-box .stat-divider {
  width: 32px;
  height: 2px;
  background: rgba(26, 35, 50, 0.2);
  margin: 12px auto 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-card-content h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 7px;
  font-family: var(--font-body);
}

.contact-card-content p,
.contact-card-content a {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-card-content a {
  color: var(--primary);
}

.map-placeholder-wrap {
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 52px;
}

.footer-brand .brand-name {
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 18px;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col address p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer-contact-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-image-wrap { height: 280px; }

  .destinations-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }

  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .exp-image-wrap { height: 280px; }

  .products-grid { grid-template-columns: 1fr; }
  .gems-grid { grid-template-columns: 1fr; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero { padding: 72px 0 80px; }

  .stats-row { gap: 24px; }
}

.centered-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.centered-blocks .section-header {
  margin-left: auto;
  margin-right: auto;
}

.centered-blocks .section-header p {
  margin-left: auto;
  margin-right: auto;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-overlay.hidden {
  display: none;
}

.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  display: flex;
  flex-direction: column;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-header {
  padding: 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  padding: 32px;
  flex: 1;
}

.cookie-modal-content h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.cookie-modal-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--primary);
}

.cookie-option-label {
  flex: 1;
}

.cookie-option-label strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.cookie-option-label small {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.cookie-modal-footer {
  padding: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-modal-footer .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cookie-modal {
    width: 95%;
    max-height: 90vh;
  }

  .cookie-modal-header,
  .cookie-modal-content,
  .cookie-modal-footer {
    padding: 20px;
  }

  .cookie-modal-footer {
    flex-wrap: wrap;
  }

  .cookie-modal-footer .btn {
    flex: 1;
    min-width: 100px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 20px 24px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.875rem;
  line-height: 1.6;
  z-index: 9999;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text p {
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent);
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-banner-btn-accept {
  background: var(--accent);
  color: var(--dark);
}

.cookie-banner-btn-accept:hover {
  background: var(--accent-dark);
}

.cookie-banner-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner-btn-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner-btn-customize {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner-btn-customize:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
    gap: 16px;
  }

  .cookie-banner-text {
    min-width: 100%;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
