/* System fonts only — no remote font CDNs (cleaner for Ads / Safe Browsing surface). */
:root {
  --font-heading: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --bg-primary: #F6F1EA;
  --bg-secondary: #EDE6DB;
  --bg-surface: #FFFbf7;
  --bg-dark: #1A2330;
  --bg-dark-surface: #243041;
  --text-main: #1A2330;
  --text-muted: #5A6570;
  --text-light: #F6F1EA;
  --accent-terracotta: #B86B4A;
  --accent-terracotta-hover: #9F573A;
  --accent-sage: #5A6F63;
  --accent-gold: #C9A45C;
  --border-light: #DDD4C6;
  --border-dark: #2E3B4C;
  --shadow-sm: 0 4px 12px rgba(26, 35, 48, 0.05);
  --shadow-md: 0 10px 30px rgba(26, 35, 48, 0.08);
  --shadow-lg: 0 20px 40px rgba(26, 35, 48, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.top-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.88rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  flex-wrap: wrap;
  padding: 0.45rem 0;
}

.top-bar-inner span,
.top-bar-inner a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(246, 241, 234, 0.9);
}

.top-bar-inner a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(246, 241, 234, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 560;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-terracotta);
  transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent-terracotta);
}

.header-cta {
  display: flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 107, 74, 0.25);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--bg-dark);
  color: var(--bg-dark);
}

.btn-secondary:hover {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-outline:hover {
  background-color: var(--accent-terracotta);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--bg-dark);
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(246, 241, 234, 0.94) 0%, rgba(246, 241, 234, 0.72) 42%, rgba(26, 35, 48, 0.28) 100%),
    url('../img/hero.svg') center / cover no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(90, 111, 99, 0.18), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(184, 107, 74, 0.12), transparent 40%);
  pointer-events: none;
  animation: softPulse 10s ease-in-out infinite alternate;
}

@keyframes softPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 5rem 0;
}

.hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--bg-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: riseIn 0.8s ease both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  color: var(--accent-sage);
  margin-bottom: 1.1rem;
  animation: riseIn 0.9s ease 0.1s both;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  animation: riseIn 1s ease 0.18s both;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: riseIn 1.05s ease 0.25s both;
}

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

.section {
  padding: 5.5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 0.7rem;
  display: block;
}

.title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--bg-dark);
  line-height: 1.2;
}

.section-lead {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 107, 74, 0.35);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-tag {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background-color: rgba(26, 35, 48, 0.88);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-price-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  background-color: var(--accent-terracotta);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--bg-dark);
  margin-bottom: 0.65rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  width: 100%;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.feature-box {
  padding: 1.1rem;
  background-color: var(--bg-surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-sage);
  box-shadow: var(--shadow-sm);
}

.feature-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--bg-dark);
  margin-bottom: 0.35rem;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  padding: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.value-item i {
  color: var(--accent-terracotta);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.value-item h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-terracotta);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '\2013';
}

.faq-item p {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.faq-item a {
  color: var(--accent-terracotta);
  text-decoration: underline;
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(26, 35, 48, 0.88), rgba(90, 111, 99, 0.75)),
    url('../img/hero.svg') center / cover no-repeat;
  color: #ffffff;
  padding: 4rem 0 3.25rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}

.page-hero p {
  opacity: 0.9;
  max-width: 640px;
}

.prose,
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-muted);
}

.prose h2,
.legal-content h2 {
  font-family: var(--font-heading);
  color: var(--bg-dark);
  font-size: 1.55rem;
  margin: 2rem 0 0.85rem;
}

.prose h3,
.legal-content h3 {
  font-family: var(--font-heading);
  color: var(--bg-dark);
  font-size: 1.2rem;
  margin: 1.4rem 0 0.6rem;
}

.prose p,
.legal-content p,
.prose li,
.legal-content li {
  margin-bottom: 0.9rem;
  line-height: 1.75;
}

.prose ul,
.legal-content ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.prose a,
.legal-content a {
  color: var(--accent-terracotta);
  text-decoration: underline;
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.4rem 1.4rem 1.4rem 0;
}

.blog-card-body .meta {
  font-size: 0.82rem;
  color: var(--accent-sage);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.blog-card-body h2 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
  color: var(--bg-dark);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.price-table th {
  background: var(--bg-dark);
  color: #ffffff;
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 35, 48, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-surface);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.96);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(26, 35, 48, 0.1);
  border: none;
  font-size: 1.15rem;
  color: var(--bg-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close:hover {
  background-color: var(--accent-terracotta);
  color: #ffffff;
}

.modal-header-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-secondary);
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
}

.modal-price {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-terracotta);
  margin-bottom: 1.1rem;
}

.modal-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--bg-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-terracotta);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(184, 107, 74, 0.12);
}

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

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

.contact-info-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-top: 4rem;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand p {
  color: rgba(246, 241, 234, 0.72);
  margin-top: 1rem;
  font-size: 0.92rem;
}

.footer-brand .disclaimer-text {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(246, 241, 234, 0.55);
  text-align: left;
}

.footer-col h4,
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1.15rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(246, 241, 234, 0.75);
  font-size: 0.9rem;
}

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

.footer-company p {
  color: rgba(246, 241, 234, 0.72);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.footer-company a {
  color: rgba(246, 241, 234, 0.85);
}

.footer-company a:hover {
  color: #ffffff;
}

.footer-disclaimer-box {
  background-color: rgba(0, 0, 0, 0.18);
  padding: 1.1rem 0;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: rgba(246, 241, 234, 0.55);
  line-height: 1.5;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(246, 241, 234, 0.5);
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
}

.toast {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-terracotta);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
  }
  .about-split,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card {
    grid-template-columns: 1fr;
  }
  .blog-card-body {
    padding: 0 1.25rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 118px;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-160%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .header-cta {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
}
