@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --brand-primary: #B08D57;
  --brand-primary-light: #C9A97A;
  --brand-primary-pale: #F5EFE6;
  --brand-dark: #1A1A1A;
  --brand-text: #2C2C2C;
  --brand-text-subtle: #7A7A7A;
  --brand-text-muted: #ADADAD;
  --brand-bg: #FFFFFF;
  --brand-page-bg: #FAF9F7;
  --brand-border: #E8E2D9;
  --brand-border-light: #F0EDE8;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Inter', sans-serif;
  --container-width: 1240px;
  --sidebar-width: 300px;
  --gap: 48px;
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--brand-text);
  background: var(--brand-page-bg);
  line-height: 1.7;
  font-weight: 300;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
.recent-posts-list { list-style: circle!important; }

::selection { background: var(--brand-primary); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-page-bg); }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 3px; }



.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: var(--gap);
  align-items: start;
}

.site-logo img{object-fit:cover; max-height:80px; width:444px}

.content-main { min-width: 0; }

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }
.section--bg { background: var(--brand-bg); }
.section--accent { background: var(--brand-primary-pale); }



h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-dark);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.display-title {
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.page-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
}

.body-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--brand-text);
  font-weight: 300;
}

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--brand-text-subtle);
  font-weight: 300;
}

.text-muted { color: var(--brand-text-muted); font-size: 13px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.italic { font-style: italic; }



.divider {
  width: 40px;
  height: 1px;
  background: var(--brand-primary);
  margin: 20px 0;
}

.divider--center { margin: 20px auto; }
.divider--wide { width: 80px; }



.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-dark);
  color: #fff;
  padding: 16px 36px;
}
.btn-primary:hover { background: var(--brand-primary); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  padding: 14px 32px;
  border: 1px solid var(--brand-dark);
}
.btn-outline:hover { background: var(--brand-dark); color: #fff; }

.btn-gold {
  background: var(--brand-primary);
  color: #fff;
  padding: 14px 32px;
}
.btn-gold:hover { background: var(--brand-dark); color: #fff; }

.btn-text {
  background: transparent;
  color: var(--brand-primary);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  border-bottom: 1px solid transparent;
}
.btn-text:hover { border-bottom-color: var(--brand-primary); color: var(--brand-dark); }

.btn-small { padding: 10px 22px; font-size: 10px; }


.btn-arrow::after {
  content: '→';
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 300;
}



.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

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

.site-logo { display: flex; align-items: center; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: block;
}

.site-nav { display: flex; align-items: center; gap: 0; }
.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-text-subtle);
  padding: 8px 18px;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--brand-dark); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 24px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 22px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--brand-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--brand-dark);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }



.hero {
  background: var(--brand-bg);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--brand-primary);
}

.hero-title {
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--brand-dark);
}

.hero-title em {
  font-style: italic;
  color: var(--brand-primary);
}

.hero-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--brand-text-subtle);
  max-width: 400px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  background: var(--brand-primary-pale);
  overflow: hidden;
}

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

.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-primary-pale) 0%, #EDE4D4 100%);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -1px;
  background: var(--brand-dark);
  color: #fff;
  padding: 22px 32px;
}
.hero-badge-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  display: block;
  line-height: 1;
}
.hero-badge-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary-light);
  display: block;
  margin-top: 4px;
}



.intro-strip {
  background: var(--brand-dark);
  padding: 32px 0;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.intro-stat {
  text-align: center;
  color: #fff;
}

.intro-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 300;
  color: var(--brand-primary);
  display: block;
  line-height: 1;
}

.intro-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 6px;
}

.intro-strip-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--brand-border-light);
}

.service-card {
  background: var(--brand-bg);
  padding: 48px 40px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,0,0,0.07); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  opacity: 0.5;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 300;
  color: var(--brand-primary-pale);
  position: absolute;
  top: 20px;
  right: 28px;
  line-height: 1;
  user-select: none;
}



.sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-box {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  padding: 28px;
}

.box-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--brand-border);
  letter-spacing: 0.02em;
}

.recent-posts-list { display: flex; flex-direction: column; gap: 0; }

.recent-post-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--brand-border-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all var(--transition);
}
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-item:hover .post-link-title { color: var(--brand-primary); }

.post-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-primary);
  margin-top: 8px;
  flex-shrink: 0;
}

.post-link-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--brand-text);
  line-height: 1.5;
  transition: color var(--transition);
}

.post-link-date {
  font-size: 11px;
  color: var(--brand-text-muted);
  display: block;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-visual-placeholder img{object-fit: cover;  max-height: 540px;}
.partner-item {
  border: 1px solid var(--brand-border);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-page-bg);
  transition: all var(--transition);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
}
.partner-item:hover { border-color: var(--brand-primary); background: var(--brand-primary-pale); }
.partner-item img { max-height: 67px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.partner-item:hover img { filter: grayscale(0); opacity: 1; }

.featured-box {
  background: var(--brand-dark);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.featured-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.12);
}

.featured-box .box-title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.1);
}

.featured-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}



.quote-section {
  background: var(--brand-primary-pale);
  padding: 80px 0;
  text-align: center;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--brand-dark);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.quote-author {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-primary);
  font-weight: 500;
}



.paragraph { margin-bottom: 24px; }
.paragraph:last-child { margin-bottom: 0; }

.content-block { margin-bottom: 48px; }
.content-block:last-child { margin-bottom: 0; }



.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--brand-text-muted); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb-sep { color: var(--brand-border); }
.breadcrumb-current { color: var(--brand-text-subtle); }



.page-hero {
  background: var(--brand-bg);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--brand-border);
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--brand-primary-pale);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(26,26,26,0.4); }



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

.blog-card {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--brand-primary-pale);
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body { padding: 28px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
  margin-bottom: 12px;
}
.blog-category { color: var(--brand-primary); }

.blog-card h3 { font-size: 20px; font-weight: 400; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--brand-text-subtle); line-height: 1.7; margin-bottom: 20px; }



.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-text-subtle);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-text);
  transition: border-color var(--transition);
  border-radius: var(--radius);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--brand-primary);
}
.form-textarea { resize: vertical; min-height: 140px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}



.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }

.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }



@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up { animation: fadeUp 0.7s ease both; }
.animate-fade-in { animation: fadeIn 0.6s ease both; }
.animate-fade-right { animation: fadeRight 0.6s ease both; }

[data-animate] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].is-visible { opacity: 1; transform: none !important; }
[data-animate="up"] { transform: translateY(32px); }
[data-animate="right"] { transform: translateX(-24px); }
[data-animate="left"] { transform: translateX(24px); }
[data-animate="scale"] { transform: scale(0.96); }



.site-footer { background: var(--brand-dark); color: rgba(255,255,255,0.7); }

.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  max-width: 280px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.1em;
}

.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: block;
  margin-top: 4px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--brand-primary); }

.footer-divider {
  width: 32px;
  height: 1px;
  background: var(--brand-primary);
  margin-bottom: 20px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-link {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.footer-bottom-link:hover { color: var(--brand-primary); }



@media (max-width: 1100px) {
  .hero-title { font-size: clamp(40px, 4.5vw, 64px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --sidebar-width: 260px; --gap: 32px; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-visual { height: 340px; }
  .hero-desc { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .intro-strip-inner { gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 56px 0; }

  .content-grid { grid-template-columns: 1fr; }
  .sidebar { margin-top: 0; }

  .site-nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--brand-bg); border-bottom: 1px solid var(--brand-border); flex-direction: column; gap: 0; padding: 16px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
  .site-nav.open { display: flex; }
  .nav-link { padding: 13px 24px; width: 100%; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 8px 24px 8px; }
  .hamburger { display: flex; }

  .header-inner { position: relative; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .form-grid { grid-template-columns: 1fr; }
  .intro-strip-inner { flex-wrap: wrap; gap: 24px; }
  .intro-strip-divider { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badge { display: none; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .site-footer, .sidebar { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  body { font-size: 12pt; color: #000; }
}





.page-banner {
  padding: 120px 0 64px;
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border-light);
}

.page-banner .hero-title {
  max-width: 700px;
  font-size: clamp(38px, 5vw, 72px);
  margin-top: 12px;
}

.page-banner .divider {
  margin-top: 32px;
}



.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--brand-dark);
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brand-dark);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: 28px; }
.carousel-next { right: 28px; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}



.not-found-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: var(--brand-bg);
  text-align: center;
}

.not-found-inner {
  max-width: 600px;
  margin: 0 auto;
}

.not-found-num {
  font-family: var(--font-heading);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 300;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 24px;
}

.not-found-divider {
  margin: 0 auto 32px;
}



@media (max-width: 768px) {
  .page-banner {
    padding: 90px 0 48px;
  }

  .carousel-slide img {
    height: 380px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
}

@media (max-width: 480px) {
  .carousel-slide img {
    height: 280px;
  }
}
