@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
*,*::before,*::after{box-sizing:border-box}html,body{max-width:100%;overflow-x:clip}
:root {
  --c-bg:        #f5f2ee;
  --c-bg-alt:    #eceae5;
  --c-surface:   #ffffff;
  --c-border:    #d8d3cc;
  --c-teal:      #1a6b5e;
  --c-teal-dark: #134d44;
  --c-teal-lt:   #e8f4f2;
  --c-wine:      #7a2235;
  --c-wine-lt:   #f5e8eb;
  --c-text:      #1c2b28;
  --c-text-muted:#5a6b67;
  --c-accent:    #2d9e8a;
  --c-accent2:   #9e2d45;
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --shadow-sm:   0 2px 8px rgba(26,107,94,0.08);
  --shadow-md:   0 8px 32px rgba(26,107,94,0.12);
  --shadow-lg:   0 20px 60px rgba(26,107,94,0.15);
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;
}

*, *::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(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  line-height: 1.65;
}

body.bg-mesh {
  background-color: var(--c-bg);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(45,158,138,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(122,34,53,0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L60 30 M30 0 L30 60' stroke='%231a6b5e' stroke-width='0.3' opacity='0.12'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--c-text); line-height: 1.2; }

a { text-decoration: none; color: inherit; transition: color 0.25s; }

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

section { padding: 20px 0; }

/* ─── Custom cursor ─── */
#custom-cursor {
  width: 20px; height: 20px;
  border: 2px solid var(--c-teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: multiply;
}
#custom-cursor.hover { width: 36px; height: 36px; background: rgba(26,107,94,0.12); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--c-teal); border-radius: 3px; }

/* ─── Selection ─── */
::selection { background: rgba(26,107,94,0.2); color: var(--c-teal-dark); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-teal);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--c-teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--c-teal) !important;
  padding: 13px 30px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--c-teal);
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--c-teal); color: #fff !important; transform: translateY(-2px); }

.btn-wine {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-wine);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  border: none; cursor: pointer;
}
.btn-wine:hover { background: #5e1a2a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(122,34,53,0.18); }

/* ─── Cards ─── */
.card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* ─── Section labels ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-teal);
  background: var(--c-teal-lt);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

/* ─── Section headings ─── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  color: var(--c-text);
}
.section-title span { color: var(--c-teal); }
.section-title-wine span { color: var(--c-wine); }

.section-desc {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--c-text-muted);
  max-width: 600px;
}

/* ─── Decorative blobs ─── */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.18;
  pointer-events: none; z-index: 0;
}
.blob-teal { background: var(--c-teal); }
.blob-wine { background: var(--c-wine); }

/* ─── Header ─── */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(245,242,238,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-topbar {
  background: var(--c-teal);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 0;
}

.header-topbar a { color: #fff; }

.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 500;
  color: var(--c-text);
  padding: 6px 4px;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--c-teal);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--c-teal); }
.nav-link:hover::after { width: 100%; }

.nav-logo img { height: 44px; width: auto; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 16px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 0;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.mobile-menu a:hover { color: var(--c-teal); }

/* ─── Footer ─── */
#site-footer {
  background: var(--c-teal-dark);
  color: rgba(255,255,255,0.85);
}
#site-footer h4, #site-footer h5 {
  font-family: var(--font-head);
  color: #fff; font-size: 1rem; font-weight: 700;
  margin-bottom: 16px;
}
#site-footer a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color 0.2s; }
#site-footer a:hover { color: #fff; }
#site-footer p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ─── Hero ─── */
.hero-section {
  position: relative;
  min-height: 87vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-visual {
  position: absolute; inset: 0; z-index: 0;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-bg) 35%, rgba(245,242,238,0.5) 100%);
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-wine-lt);
  color: var(--c-wine);
  border: 1px solid rgba(122,34,53,0.15);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--c-text);
}
.hero-title .accent { color: var(--c-teal); }
.hero-title .accent-wine { color: var(--c-wine); }

.hero-stat {
  text-align: center;
  padding: 20px 24px;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800;
  color: var(--c-teal);
}
.hero-stat-label { font-size: 0.8rem; color: var(--c-text-muted); font-weight: 500; margin-top: 4px; }

/* ─── Slider ─── */
.slider-container { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-slide {
  min-width: 100%; flex-shrink: 0;
  position: relative;
}
.slider-slide img {
  width: 100%; height: 520px;
  object-fit: cover;
}
.slider-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,40,36,0.85) 0%, transparent 100%);
  padding: 40px 36px 30px;
  color: #fff;
}
.slider-caption h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; }
.slider-caption p { font-size: 0.95rem; opacity: 0.85; margin-top: 6px; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-teal); font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, transform 0.2s;
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-btn-prev { left: 16px; }
.slider-btn-next { right: 16px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-border);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active { background: var(--c-teal); transform: scale(1.3); }

/* ─── Feature grid ─── */
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-icon-teal { background: var(--c-teal-lt); color: var(--c-teal); }
.feature-icon-wine { background: var(--c-wine-lt); color: var(--c-wine); }

/* ─── Timeline ─── */
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--c-teal), var(--c-wine));
  opacity: 0.25;
}
.timeline-item { position: relative; padding-left: 68px; padding-bottom: 40px; }
.timeline-dot {
  position: absolute; left: 15px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-teal);
  border: 3px solid var(--c-bg);
  box-shadow: 0 0 0 3px rgba(26,107,94,0.2);
}

/* ─── Team cards ─── */
.team-card .team-photo {
  width: 100%; aspect-ratio: 4/3;
  background: var(--c-teal-lt);
  overflow: hidden;
}
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Pricing ─── */
.price-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--c-teal);
  background: linear-gradient(135deg, #f0faf8 0%, var(--c-surface) 100%);
  box-shadow: var(--shadow-md);
}
.price-card.featured:hover { box-shadow: var(--shadow-lg); }

.price-amount {
  font-family: var(--font-head);
  font-size: 2.8rem; font-weight: 900;
  color: var(--c-teal);
}
.price-amount sup { font-size: 1.2rem; vertical-align: super; font-weight: 600; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--c-text-muted); }

.price-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.price-item:last-child { border-bottom: none; }

/* ─── FAQ Accordion ─── */
.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; padding: 20px 24px;
  background: var(--c-surface);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  color: var(--c-text); text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--c-teal-lt); }
.faq-question .faq-icon { color: var(--c-teal); font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  background: var(--c-surface);
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding: 0 24px 24px; font-size: 0.95rem; color: var(--c-text-muted); line-height: 1.75; }

/* ─── Form ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--c-text); }
.form-input, .form-textarea, .form-select {
  padding: 14px 18px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-surface);
  color: var(--c-text);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(26,107,94,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ─── Notification ─── */
.form-notification {
  display: none;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem;
  align-items: center; gap: 12px;
  border: 1.5px solid;
}
.form-notification.success { display: flex; background: #e8f8f5; border-color: var(--c-teal); color: var(--c-teal-dark); }
.form-notification.error { display: flex; background: #fdf0f2; border-color: var(--c-wine); color: var(--c-wine); }

/* ─── Cookie banner ─── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 9000;
  background: var(--c-teal-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.5s ease;
  max-width: 900px; margin: 0 auto;
}
#cookie-banner.hidden { display: none; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#cookie-banner p { font-size: 0.88rem; opacity: 0.9; margin: 0; }
#cookie-banner a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: 10px 20px; border-radius: var(--radius-xl); font-weight: 600; font-size: 0.85rem;
  border: none; cursor: pointer; transition: opacity 0.2s;
}
.cookie-accept { background: #fff; color: var(--c-teal-dark); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.75); border: 1.5px solid rgba(255,255,255,0.35); }
.cookie-accept:hover, .cookie-decline:hover { opacity: 0.85; }

/* ─── Map embed ─── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.map-container iframe { display: block; width: 100%; height: 400px; border: none; }

/* ─── Blog cards ─── */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--c-teal-lt);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--c-teal-lt); color: var(--c-teal);
}
.blog-card-body h3 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  margin: 10px 0 8px; color: var(--c-text); line-height: 1.3;
}
.blog-card-body p { font-size: 0.9rem; color: var(--c-text-muted); flex: 1; }

/* ─── Decorative dividers ─── */
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-accent2));
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* ─── Highlight strip ─── */
.highlight-strip {
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.highlight-strip::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.highlight-strip::after {
  content: '';
  position: absolute; bottom: -60px; left: -20px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

/* ─── Service template specific ─── */
.service-hero { background: var(--c-teal-lt); padding: 80px 0 60px; position: relative; overflow: hidden; }
.service-breadcrumb { font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: 12px; }
.service-breadcrumb a { color: var(--c-teal); }

/* ─── AOS overrides ─── */
[data-aos] { pointer-events: auto !important; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .slider-slide img { height: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-primary, .btn-secondary, .btn-wine { padding: 12px 22px; font-size: 0.88rem; }
  .price-card { padding: 24px 20px; }
}

/* ─── Legal / Privacy page ─── */
.legal-content h2 { font-size: 1.5rem; color: var(--c-teal-dark); margin: 36px 0 12px; font-family: var(--font-head); font-weight: 700; }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 10px; font-family: var(--font-head); font-weight: 600; }
.legal-content p, .legal-content li { font-size: 0.97rem; color: var(--c-text-muted); margin-bottom: 10px; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 24px; }
.legal-content a { color: var(--c-teal); text-decoration: underline; }

/* ─── Blog article ─── */
.article-hero { background: var(--c-teal-lt); padding: 80px 0 50px; }
.article-content { max-width: 800px; margin: 0 auto; }
.article-content h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.article-content p { margin-bottom: 18px; line-height: 1.85; color: var(--c-text-muted); }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content li { margin-bottom: 8px; color: var(--c-text-muted); }
.article-content a { color: var(--c-teal); text-decoration: underline; }
.article-content blockquote {
  border-left: 4px solid var(--c-teal);
  padding: 16px 24px;
  background: var(--c-teal-lt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-style: italic; color: var(--c-teal-dark);
}

/* ─── Thank you page ─── */
.thankyou-icon {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--c-teal-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: var(--c-teal);
  margin: 0 auto 32px;
}

/* ─── Privacy banner in legal ─── */
.gdpr-block {
  background: linear-gradient(135deg, var(--c-teal-lt), #fff);
  border: 1.5px solid var(--c-teal);
  border-radius: var(--radius-md);
  padding: 32px;
}

/* ─── Inline text links ─── */
.text-link { color: var(--c-teal); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.2s; }
.text-link:hover { text-decoration-color: var(--c-teal); }

/* ─── Utility ─── */
.text-teal { color: var(--c-teal); }
.text-wine { color: var(--c-wine); }
.bg-surface { background: var(--c-surface); }
.bg-alt { background: var(--c-bg-alt); }
.rounded-card { border-radius: var(--radius-md); }
.overflow-clip { overflow: hidden; }

/* ─── Service hero ─── */
.service-hero {
  background: linear-gradient(135deg, var(--c-teal-lt) 0%, #fff 60%, var(--c-wine-lt) 100%);
  padding: 80px 0 70px;
  overflow: hidden;
  position: relative;
}
.service-breadcrumb {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}
.service-breadcrumb a { color: var(--c-teal); }
.service-breadcrumb a:hover { text-decoration: underline; }

/* ─── Hero stats ─── */
.hero-stat {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.hero-stat-number { font-family: var(--font-head); font-weight: 800; font-size: 2rem; line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 0.82rem; color: var(--c-text-muted); }

/* ─── Highlight strip ─── */
.highlight-strip {
  background: linear-gradient(135deg, var(--c-teal-dark) 0%, var(--c-teal) 60%, var(--c-accent) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.highlight-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='38' stroke='rgba(255,255,255,0.06)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") repeat;
  opacity: 0.4;
}

/* ─── Price items and cards ─── */
.price-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.price-item:hover { box-shadow: var(--shadow-md); border-color: var(--c-teal); }

.price-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.featured { border-color: var(--c-teal); box-shadow: var(--shadow-md); }

.price-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--c-teal);
  line-height: 1;
}
.price-amount sup { font-size: 1rem; font-weight: 600; vertical-align: super; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--c-text-muted); }

/* ─── Blog cards ─── */
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--c-teal-lt), var(--c-wine-lt));
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: var(--c-teal-lt);
  color: var(--c-teal);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-head);
}

/* ─── Map container ─── */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--c-border);
  aspect-ratio: 16/9;
}
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── Form elements ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--c-text); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--c-surface);
  color: var(--c-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: auto;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(26,107,94,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-notification {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  display: none;
}
.form-notification.success { display: block; background: var(--c-teal-lt); color: var(--c-teal-dark); border: 1.5px solid var(--c-teal); }
.form-notification.error { display: block; background: var(--c-wine-lt); color: var(--c-wine); border: 1.5px solid var(--c-wine); }

/* ─── Feature icon (used in price cards) ─── */
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-icon-teal { background: var(--c-teal-lt); color: var(--c-teal); }
.feature-icon-wine { background: var(--c-wine-lt); color: var(--c-wine); }

/* ─── Section divider ─── */
.section-divider { width: 56px; height: 4px; background: linear-gradient(90deg, var(--c-teal), var(--c-accent)); border-radius: 2px; margin-bottom: 20px; }

