@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:       #2C3E60;
  --accent:     #4A7FA5;
  --accent-dk:  #365f7e;
  --stone:      #F8F7F4;
  --white:      #FFFFFF;
  --grey-mid:   #6B7280;
  --grey-lt:    #9CA3AF;
  --border:     #E2E6EA;
  --text:       #1E2836;
  --text-sub:   #4B5563;
  --shadow-sm:  0 1px 4px rgba(44,62,96,.08);
  --shadow-md:  0 4px 20px rgba(44,62,96,.12);
  --radius:     8px;
  --radius-lg:  16px;
  --max-w:      1140px;
  --header-h:   72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dk); }

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--stone); }
.text-center { text-align: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover  { background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; }
.btn-outline  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover  { background: var(--accent); color: #fff; }
.btn-nav      { background: var(--navy); color: #fff; padding: 10px 22px; font-size: 14px; }
.btn-nav:hover { background: var(--accent); color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 40px; height: 40px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-img img { width: 100%; height: 100%; object-fit: cover; }
.logo-placeholder {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-placeholder span {
  color: #fff; font-family: 'DM Serif Display', serif;
  font-size: 18px; font-weight: 700;
}
.logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--navy);
  letter-spacing: -.3px;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--text-sub);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--stone); color: var(--navy); }
.nav-cta { margin-left: 8px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a48 60%, #2c4a6e 100%);
  padding: 100px 0 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/img/photos/hero-sell.jpg') center/cover no-repeat;
  opacity: .10;
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-label {
  display: inline-block; background: rgba(74,127,165,.25); color: #9EC8E4;
  padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
  letter-spacing: .6px; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(36px, 5vw, 56px); color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: #9EC8E4; }
.hero p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  position: relative;
}
.hero-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.section-label {
  display: inline-block; background: rgba(74,127,165,.1); color: var(--accent);
  padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-sub   { font-size: 17px; color: var(--text-sub); max-width: 580px; }
.section-sub.center { margin: 0 auto; }

.cards-grid   { display: grid; gap: 24px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(74,127,165,.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--accent);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p  { color: var(--text-sub); font-size: 15px; }

.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: 'DM Serif Display', serif; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split-img { order: 2; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-img img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-text h2 { margin-bottom: 18px; }
.split-text p  { color: var(--text-sub); margin-bottom: 20px; }
.split-text ul li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--text-sub); font-size: 15px;
}
.split-text ul li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.stats-bar {
  background: var(--navy); padding: 56px 0;
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-val { font-family: 'DM Serif Display', serif; font-size: 44px; color: #fff; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 4px; }

.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card-img { aspect-ratio: 4/3; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body { padding: 24px; }
.product-badge {
  display: inline-block; background: rgba(74,127,165,.1); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
}
.product-card-body h3 { font-size: 18px; margin-bottom: 8px; }
.product-card-body p  { color: var(--text-sub); font-size: 14px; line-height: 1.6; }
.product-meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; color: var(--grey-mid); }

.tip-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.tip-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
}
.tip-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tip-item h4 { font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.tip-item p  { font-size: 14px; color: var(--text-sub); }

.contact-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 48px; }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--text); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,127,165,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: var(--grey-mid); margin-top: 14px; }

.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--stone); border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card h4 { font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.contact-card p, .contact-card a { font-size: 14px; color: var(--text-sub); }
.contact-card a:hover { color: var(--accent); }
.form-success {
  display: none; background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: var(--radius); padding: 16px 20px; font-size: 14px;
  color: #2e7d32; margin-top: 12px;
}

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; text-align: center;
}
.team-card-img { aspect-ratio: 1/1; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: 18px; margin-bottom: 4px; }
.team-card-body .role { font-size: 13px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }
.team-card-body p { font-size: 14px; color: var(--text-sub); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-item { text-align: center; padding: 32px 24px; }
.value-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(74,127,165,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent); }
.value-icon svg { width: 28px; height: 28px; }
.value-item h3 { font-size: 18px; margin-bottom: 10px; }
.value-item p  { font-size: 14px; color: var(--text-sub); }

.legal-hero { background: var(--navy); padding: 64px 0; text-align: center; }
.legal-hero h1 { color: #fff; margin-bottom: 12px; }
.legal-hero p  { color: rgba(255,255,255,.7); font-size: 15px; }
.legal-body { max-width: 820px; margin: 60px auto; padding: 0 24px 80px; }
.legal-body h2 { font-size: 24px; margin: 40px 0 12px; padding-top: 8px; border-top: 1px solid var(--border); }
.legal-body h2:first-child { border-top: none; margin-top: 0; }
.legal-body p  { color: var(--text-sub); margin-bottom: 16px; font-size: 15px; }
.legal-body ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-body ul li { color: var(--text-sub); font-size: 15px; margin-bottom: 8px; }
.legal-body a  { color: var(--accent); }
.last-updated { font-size: 13px; color: var(--grey-lt); display: block; margin-bottom: 36px; }

#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); color: rgba(255,255,255,.9);
  padding: 18px 0; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform .35s ease;
}
#cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text { font-size: 14px; flex: 1 1 300px; line-height: 1.6; }
.cookie-text a { color: #9EC8E4; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; transition: background .2s;
}
.cookie-btn-accept { background: var(--accent); color: #fff; }
.cookie-btn-accept:hover { background: var(--accent-dk); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); }
.cookie-btn-decline:hover { background: rgba(255,255,255,.1); }

.site-footer { background: #111827; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-name { color: #fff; font-size: 20px; }
.footer-brand p { font-size: 14px; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: rgba(255,255,255,.85); }

.breadcrumb { background: var(--stone); padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.breadcrumb ol { display: flex; gap: 6px; align-items: center; }
.breadcrumb li { color: var(--grey-mid); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border); }
.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child { color: var(--navy); font-weight: 500; }

.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1c2f50 100%); padding: 72px 0; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 48px); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 17px; max-width: 560px; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; align-items: center; }
.filter-btn {
  padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text-sub);
  cursor: pointer; transition: all .15s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: #fff; border-color: var(--navy);
}

.cta-band { background: var(--accent); padding: 72px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white { background: #fff; color: var(--accent); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,.9); color: var(--accent); }

.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy);
  text-align: left; gap: 16px;
  transition: background .15s;
}
.acc-trigger:hover { background: var(--stone); }
.acc-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform .25s; }
.acc-trigger.open .acc-icon { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.acc-body.open { max-height: 400px; padding: 0 28px 20px; }
.acc-body p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0; }
  .hero-inner   { grid-template-columns: 1fr; gap: 36px; }
  .hero-img-wrap { display: none; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-img { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .stats-inner  { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 16px 24px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .burger { display: flex; }
  .site-header { position: relative; }
  .cookie-inner { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; }
}