:root {
  --green: #2d5a3d;
  --green-light: #3a7a52;
  --green-dark: #1c3d29;
  --gold: #c8a96e;
  --gold-light: #d4bc8a;
  --bg: #faf8f5;
  --surface: #f2ede6;
  --logo-bg: #fef8f5;
  --footer-bg: #1c2b1f;
  --text: #1a1a1a;
  --text-light: #555;
  --white: #fff;
  --red: #c0392b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --nav-height: 88px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--gold); z-index: 10001; transition: width 0.1s linear;
}

/* Navigation */
.nav {
  position: fixed; top: 2px; left: 0; right: 0; height: var(--nav-height);
  background: var(--logo-bg);
  z-index: 1000; transition: box-shadow var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text); position: relative; letter-spacing: 0.01em; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--white) !important; padding: 10px 24px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-light); color: var(--white) !important; transform: translateY(-1px); }

/* Mobile menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Page transition overlay */
.page-transition {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--green); z-index: 10000;
  transform: translateX(100%);
  pointer-events: none;
}
.page-transition.entering { animation: slideIn 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards; }
.page-transition.exiting { transform: translateX(0); animation: slideOut 0.5s cubic-bezier(0.77, 0, 0.175, 1) forwards; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes slideOut { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px;
  position: relative; overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.hero h1 { margin-bottom: 20px; }
.hero-text p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 28px; max-width: 500px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); padding: 8px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--green);
  border: 1px solid rgba(45,90,61,0.1);
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.hero-image-wrap img { width: 100%; height: auto; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hero-image-wrap:hover img { transform: scale(1.06); }
/* Logo variant: flat brand mark, no photo crop/zoom */
.hero-image-wrap.hero-logo { overflow: visible; border-radius: 0; background: transparent; max-width: 460px; margin: 0 auto; }
.hero-image-wrap.hero-logo img { transition: none; }
.hero-image-wrap.hero-logo:hover img { transform: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all var(--transition);
  cursor: pointer; border: none; font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,61,0.3); }
.btn-secondary { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--white); transform: translateY(-2px); }

/* Trust bar */
.trust-bar { padding: 80px 0; background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.trust-item h3 { font-size: 2.5rem; color: var(--green); margin-bottom: 8px; }
.trust-item p { color: var(--text-light); font-size: 0.95rem; }

/* Section */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; margin-bottom: 12px; display: block; }
.section-header p { max-width: 600px; margin: 16px auto 0; color: var(--text-light); font-size: 1.05rem; }
.section-alt { background: var(--surface); }
.section-white { background: var(--white); }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-image { overflow: hidden; height: 240px; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.service-card-price { font-size: 1.1rem; font-weight: 700; color: var(--green); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; font-size: 1.05rem; }
.review-author { font-weight: 700; color: var(--text); }

/* CTA Section */
.cta-section { background: var(--green); color: var(--white); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }
.cta-section .btn-primary { background: var(--gold); }
.cta-section .btn-primary:hover { background: var(--gold-light); }
.cta-links { display: flex; justify-content: center; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.cta-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta-links a:hover { color: var(--white); }

/* Page Header */
.page-header {
  position: relative; min-height: 360px;
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 120%;
  object-fit: cover; z-index: 0;
}
.page-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(28,43,31,0.7), rgba(28,43,31,0.85));
  z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; }

/* About page */
.about-intro { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: start; }
.about-portrait { border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: calc(var(--nav-height) + 20px); }
.about-portrait img { width: 100%; }
.about-story h2 { margin-bottom: 20px; }
.about-story p { margin-bottom: 16px; color: var(--text-light); }
.about-story p:first-of-type { font-size: 1.15rem; color: var(--text); }

.credentials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.credential-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface); padding: 20px; border-radius: var(--radius);
}
.credential-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
}
.credential-item h4 { font-size: 0.95rem; margin-bottom: 4px; font-family: var(--font-body); }
.credential-item p { font-size: 0.85rem; color: var(--text-light); }

/* Photo gallery horizontal scroll */
.gallery-section { padding: 80px 0; overflow: hidden; }
.gallery-section h3 { text-align: center; margin-bottom: 32px; }
.gallery-scroll {
  display: flex; gap: 24px; padding: 0 24px;
  justify-content: center; flex-wrap: wrap;
}
.gallery-item {
  flex: 0 0 380px; height: 360px; border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover img { transform: scale(1.06); }

/* Services page */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { color: var(--text-light); margin-bottom: 24px; }
.service-detail-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-detail-images .img-wrap { overflow: hidden; border-radius: var(--radius); }
.service-detail-images .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-detail-images .img-wrap:hover img { transform: scale(1.06); }
.service-detail-images .img-wrap:first-child { grid-row: span 2; }

.service-list { list-style: none; }
.service-list li { padding: 10px 0; padding-left: 28px; position: relative; color: var(--text-light); }
.service-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 16px; height: 16px; background-color: var(--green); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; }

.home-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-service-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.home-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.home-service-icon { font-size: 2.5rem; margin-bottom: 16px; }
/* Tabler line icons (location pages): clean green glyph, no background shape */
.home-service-icon i { font-size: 28px; color: var(--green); display: block; margin-bottom: 16px; line-height: 1; }
.home-service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.home-service-card p { color: var(--text-light); font-size: 0.9rem; }

/* Full width image */
.full-width-image { width: 100%; height: 400px; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 48px; }
.full-width-image img { width: 100%; height: 100%; object-fit: cover; }

/* Areas page */
.europe-banner {
  background: var(--green); color: var(--white);
  text-align: center; padding: 24px; font-size: 1.3rem; font-family: var(--font-heading);
}
.areas-grid-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.area-tag {
  background: var(--white); padding: 12px 18px; border-radius: var(--radius);
  text-align: center; font-size: 0.9rem; font-weight: 500;
  color: var(--green); border: 1.5px solid var(--green);
  transition: all var(--transition); cursor: pointer;
  text-decoration: none;
}
.area-tag:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.area-tag.highlighted { font-weight: 700; }
.areas-image { border-radius: var(--radius-lg); overflow: hidden; }
.areas-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.areas-image:hover img { transform: scale(1.06); }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; box-shadow: var(--shadow);
  transition: transform var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured { border: 2px solid var(--green); transform: scale(1.05); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.pricing-featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white); padding: 6px 20px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.pricing-amount { font-size: 2.8rem; font-weight: 700; color: var(--green); font-family: var(--font-heading); }
.pricing-amount span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.pricing-desc { color: var(--text-light); margin: 8px 0 24px; font-size: 0.95rem; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li { padding: 8px 0; padding-left: 24px; position: relative; font-size: 0.92rem; color: var(--text-light); }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 10px; width: 15px; height: 15px; background-color: var(--green); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat; }
.pricing-note {
  background: var(--surface); padding: 24px; border-radius: var(--radius);
  text-align: center; margin-top: 48px;
}
.pricing-note p { color: var(--text-light); font-size: 0.95rem; }

/* Quote form */
.quote-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
/* JotForm JS embed — keep it within the column width */
.quote-embed { width: 100%; min-width: 0; }
.quote-embed iframe, .quote-embed form { max-width: 100% !important; }
.form-group { margin-bottom: 24px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--text);
  margin-bottom: 6px; transition: all var(--transition);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 2px solid #e0dbd4;
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.95rem; background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.form-group input.valid { border-color: var(--green); }
.form-group input.invalid { border-color: var(--red); }
.form-group .validation-icon {
  position: absolute; right: 14px; top: 38px; font-size: 1rem; opacity: 0;
  transition: opacity var(--transition);
}
.form-group input.valid ~ .validation-icon { opacity: 1; color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit { width: 100%; position: relative; }
.form-submit .spinner {
  display: none; width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white);
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
.form-submit.loading .spinner { display: inline-block; }
.form-submit.loading span { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }
.shake { animation: shake 0.3s ease; }

.info-card {
  background: var(--white); padding: 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); margin-bottom: 24px;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--green); }
.info-card p { color: var(--text-light); font-size: 0.92rem; }

/* Legal pages */
.legal-content { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin: 48px 0 16px; font-size: 1.5rem; }
.legal-content h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.legal-content p { margin-bottom: 16px; color: var(--text-light); }
.legal-content ul, .legal-content ol { margin-bottom: 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; color: var(--text-light); list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--text); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.legal-content th, .legal-content td { padding: 12px 16px; border: 1px solid #e0dbd4; text-align: left; font-size: 0.92rem; }
.legal-content th { background: var(--surface); font-weight: 600; }
.legal-content hr { border: none; border-top: 1px solid #e0dbd4; margin: 32px 0; }
.legal-content em { color: var(--text-light); font-size: 0.9rem; }

/* Footer */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; }
.footer p { font-size: 0.9rem; line-height: 1.8; }
.footer-links a { display: block; color: rgba(255,255,255,0.7); padding: 4px 0; font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--footer-bg); color: rgba(255,255,255,0.85);
  padding: 20px; z-index: 9998; transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-inner p { font-size: 0.9rem; flex: 1; min-width: 280px; }
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-btn {
  padding: 10px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none; font-family: var(--font-body); transition: all var(--transition);
}
.cookie-accept { background: var(--green); color: var(--white); }
.cookie-accept:hover { background: var(--green-light); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* Custom cursor */
.cursor-dot, .cursor-outline {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10002;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
}
.cursor-dot { width: 8px; height: 8px; background: var(--green); }
.cursor-outline { width: 40px; height: 40px; border: 1.5px solid var(--green); background: transparent; }
.cursor-dot.hovering { opacity: 0; }
.cursor-outline.hovering { width: 60px; height: 60px; background: rgba(45,90,61,0.1); border-color: var(--green); }

/* Split text */
.split-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-word-inner { display: inline-block; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.split-word-inner.revealed { transform: translateY(0); }

/* Focus styles */
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Reduced motion — respect user preference (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  /* Keep split-text headings fully visible when animations are disabled */
  .split-word-inner { transform: none !important; }
  .page-transition { display: none !important; }
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 400px; margin: 0 auto; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .areas-grid-container { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .quote-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 74px; }
  .nav-logo img { height: 52px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px;
    height: 100vh; background: var(--bg);
    flex-direction: column; justify-content: center;
    gap: 24px; padding: 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .home-services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-item { flex: 0 0 300px; height: 240px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .cursor-dot, .cursor-outline { display: none !important; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 24px); padding-bottom: 40px; }
  .service-detail-images { grid-template-columns: 1fr; }
  .service-detail-images .img-wrap:first-child { grid-row: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ===== Inline SVG icons (replaced former emoji / unicode symbols) ===== */
.ico { display: inline-block; width: 1em; height: 1em; fill: none; stroke: currentColor; vertical-align: -0.15em; }
.cta-links a .ico { width: 1.05em; height: 1.05em; margin-right: 7px; vertical-align: -0.18em; }
.europe-banner .ico { width: 1.1em; height: 1.1em; margin-right: 8px; vertical-align: -0.18em; }
.review-stars { display: inline-flex; gap: 4px; align-items: center; }
.review-stars .ico { width: 18px; height: 18px; }
.credential-icon .ico { width: 20px; height: 20px; }
