@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --bg: #F1F5F9;
  --surface: #FFFFFF;
  --surface-alt: #E2E8F0;
  --text: #0A0F1D;
  --text-muted: #334155;
  --brand: #065F46;
  --brand-hover: #047857;
  --accent: #C23A1E;
  --accent-hover: #9E2B14;
  --border: #CBD5E1;
  --card-border: #CBD5E1;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  --max: 1200px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.12);
}

[data-theme="dusk"] {
  --bg: #090D16;
  --surface: #131B2E;
  --surface-alt: #1E293B;
  --text: #FFFFFF;
  --text-muted: #94A3B8;
  --brand: #10B981;
  --brand-hover: #34D399;
  --accent: #FF6B4A;
  --accent-hover: #FF856B;
  --border: #243049;
  --card-border: #1E293B;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 6vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border);
  transition: box-shadow 0.25s ease, background 0.3s ease;
}

[data-theme="dusk"] .site-header {
  background: rgba(15, 23, 42, 0.95);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
}

.nav-links a[aria-current="page"] {
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  display: none;
  z-index: 110;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--surface-alt);
  color: var(--brand);
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.theme-toggle {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-align: center;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--accent);
  color: #FFF;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #FFF;
}

.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brand);
  color: #FFF;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  display: block;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s ease;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(10, 15, 29, 0.88);
  color: #FFF;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
}

.page-hero {
  padding: 3rem 1.25rem 1.8rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2.2rem;
}

.filter-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 0.55rem 1.2rem;
  border-radius: 25px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand);
  color: #FFF;
  border-color: var(--brand);
}

.calc-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
  margin: 2rem auto;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.calc-output {
  background: var(--surface-alt);
  padding: 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1.2rem;
  border: 1.5px solid var(--border);
}

.calc-output span {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: 1.8rem 1.25rem;
  margin: 2rem auto;
}

.stat-strip div {
  text-align: center;
}

.stat-strip .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--brand);
  display: block;
}

.stat-strip .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

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

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

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.card.hide-card {
  display: none;
}

.card-media {
  margin: 0;
  height: 210px;
  overflow: hidden;
  position: relative;
  border-bottom: 1.5px solid var(--border);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.3rem;
}

.card-body .place {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
  letter-spacing: 0.05em;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  font-weight: 500;
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.8rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 540px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}

caption {
  text-align: left;
  font-weight: 800;
  padding: 0.8rem 0.2rem;
  color: var(--brand);
  font-size: 1.1rem;
}

th, td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  text-align: left;
}

thead th {
  background: var(--surface-alt);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--border);
  text-transform: uppercase;
  font-size: 0.82rem;
}

tbody tr:nth-child(even) {
  background: rgba(241, 245, 249, 0.6);
}

[data-theme="dusk"] tbody tr:nth-child(even) {
  background: rgba(30, 41, 59, 0.4);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline li {
  position: relative;
  padding: 0 0 2rem 3.5rem;
}

.timeline .day {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
}

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

.gallery-grid button {
  border: 1.5px solid var(--border);
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  color: #FFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
}

.lightbox .lb-close { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.form-wrap {
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

.field {
  margin-bottom: 1.3rem;
}

.field label,
fieldset legend {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.field .error-msg {
  display: none;
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  font-weight: 600;
}

.field.has-error .error-msg {
  display: block;
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--accent);
}

.radio-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  font-weight: 600;
}

.form-success {
  display: none;
  background: var(--brand);
  color: #FFF;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 1.25rem;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}

.modal-box h3 {
  margin-top: 0;
}

.modal-details {
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 1rem 0;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}

.testimonials-section {
  padding: 3rem 1.25rem 2.5rem;
}

.testimonials {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: center;
}

.testimonials::before {
  content: "“";
  position: absolute;
  top: 0.6rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.12;
  pointer-events: none;
}

.t-slide {
  display: none;
  animation: fadeInStory 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.t-slide.active {
  display: block;
}

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

.t-stars {
  color: #F59E0B;
  font-size: 0.92rem;
  letter-spacing: 0.18rem;
  margin-bottom: 0.7rem;
}

.t-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 1.2rem;
  position: relative;
  z-index: 1;
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: left;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand);
  box-shadow: 0 0 0 2px rgba(6, 95, 70, 0.12);
}

.t-name {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  display: block;
}

.t-origin {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.t-origin em {
  font-style: normal;
  color: var(--brand);
  font-weight: 600;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.t-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

.t-dots button.active {
  background: var(--brand);
  transform: scale(1.25);
}

.accordion-item {
  border-bottom: 1.5px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel p {
  margin: 0;
  padding-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cta-band {
  background: var(--brand);
  color: #FFF;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.cta-band h2 {
  color: #FFF;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto 1.6rem;
  font-size: 1.05rem;
}

.cta-band .btn-outline {
  border: 2px solid #FFF;
  color: #FFF;
}

.cta-band .btn-outline:hover {
  background: #FFF;
  color: var(--brand);
}

.site-footer {
  background: #060B08;
  color: #E2E8F0;
  padding: 4rem 0 2rem;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: #FFFFFF;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.brand-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #A0AEC0;
  margin-bottom: 1.4rem;
  max-width: 36ch;
}

.newsletter-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F1F5F9;
  margin-bottom: 0.6rem;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 0.25rem 0.3rem 0.25rem 1rem;
  max-width: 340px;
}

.newsletter-input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: #FFF;
  font-size: 0.9rem;
  flex: 1;
  width: 100%;
}

.newsletter-input-group input::placeholder {
  color: #8A9BA8;
}

.newsletter-input-group button {
  background: var(--accent);
  color: #FFF;
  border: none;
  border-radius: 25px;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-footer h4 {
  color: #FFF;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.footer-nav,
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.footer-nav a {
  color: #CBD5E1;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #CBD5E1;
}

.contact-details a {
  color: #E2E8F0;
}

.contact-ic {
  flex-shrink: 0;
  margin-top: 0.2rem;
  stroke: var(--accent);
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.trust-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #A0AEC0;
}

.bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: #8A9BA8;
  width: 100%;
}

.copy-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #FFF;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  z-index: 99;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.rounded-img {
  border-radius: var(--radius);
}

.cta-centered {
  justify-content: center;
}

@media (max-width: 992px) {
  .hero,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 290px;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.8rem 2rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    border-left: 1.5px solid var(--border);
    z-index: 105;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.05rem;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: block;
    background: transparent;
  }

  .dropdown-menu a {
    padding: 0.4rem 0;
    color: var(--text-muted);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stat-strip {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 2.5rem 1.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }

  .testimonials {
    padding: 1.8rem 1.2rem 1.5rem;
  }

  .t-author {
    flex-direction: column;
    text-align: center;
  }

  .form-wrap {
    padding: 1.5rem;
  }

  .newsletter-input-group {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-btn {
    flex-shrink: 0;
  }
}

.destinations-map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.destinations-map-card iframe {
  width: 100%;
  height: 480px;
  display: block;
}

@media (max-width: 768px) {
  .destinations-map-card iframe {
    height: 340px;
  }
}

.attraction-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
}

.attraction-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.loc-link {
  color: inherit;
  text-decoration: none;
}

.loc-link:hover {
  color: var(--accent);
}


.culture-festivals-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.culture-festivals-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.culture-festivals-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.9rem;
}

.culture-festivals-list strong {
  color: var(--text);
}

.etiquette-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.etiquette-title {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.etiquette-points {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.88rem;
}

.etiquette-points li {
  margin-bottom: 0.4rem;
}

.etiquette-points li:last-child {
  margin-bottom: 0;
}

/* Minimalist Icon Badge */
.minimal-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(6, 95, 70, 0.08);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(6, 95, 70, 0.15);
}

.card h4 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--text);
  font-family: var(--font-display);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}