@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
  --bg:        #F6F5F1;
  --bg-alt:    #EDEAE3;
  --bg-dark:   #1B1B1B;
  --dark:      #1B1B1B;
  --mid:       #6B7280;
  --light:     #B0ADA6;
  --accent:    #2A5C59;
  --accent-lt: #3A7D79;
  --accent-xlt:#D4E8E7;
  --white:     #FFFFFF;
  --border:    #D8D4CC;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(27,27,27,.08);
  --shadow-md: 0 4px 20px rgba(27,27,27,.10);
  --shadow-lg: 0 12px 48px rgba(27,27,27,.14);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); }

h1,h2,h3,h4,h5 { font-family: var(--ff-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--mid); }

.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-dark   { color: var(--dark); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.container { width: 92%; max-width: 1200px; margin-inline: auto; }
.section    { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2     { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem; }
.grid-3     { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4     { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media (max-width:900px) { .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,245,241,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex; align-items: center; gap: .75rem;
}
.brand-logo {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.brand-logo-placeholder {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-logo-placeholder svg { width: 22px; height: 22px; fill: var(--white); }

.brand-name {
  font-family: var(--ff-head);
  font-size: 1.35rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.01em;
}
.brand-name span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: var(--mid); letter-spacing: .01em;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: .5rem 1.25rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .85rem; line-height: 1.4;
  
  position: static !important;
  padding-bottom: .5rem !important;
  transition: background var(--transition), box-shadow var(--transition);
  display: inline-block;
}
.nav-cta:hover {
  background: var(--accent-lt); color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(42,92,89,.35);
}
.nav-cta::after,
.nav-cta:hover::after,
.nav-cta.active::after { display: none !important; width: 0 !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem 1.5rem; font-size: .95rem; font-weight: 500;
  color: var(--mid); border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

@media (max-width:768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,27,27,.9) 45%, rgba(42,92,89,.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 6rem 0;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-xlt);
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); max-width: 680px; margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: #8FC9C7; }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: var(--white);
}
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(42,92,89,.4); color: var(--white); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }

.btn-outline-dark {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 3rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2.5rem; margin-top: 2.5rem;
}
.hero-stat-num {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .25rem; }

@media (max-width:600px) {
  .hero-stats { gap: 2rem; }
  .hero-stat-num { font-size: 1.6rem; }
}

.intro-strip {
  background: var(--accent); padding: 2rem 0;
}
.intro-strip .container {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.intro-strip-item {
  display: flex; align-items: center; gap: .75rem;
  color: var(--white);
}
.intro-strip-item .ph { font-size: 1.4rem; opacity: .85; }
.intro-strip-item span { font-size: .9rem; font-weight: 500; }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header p { max-width: 560px; margin-top: .75rem; }
.section-header.center p { margin-inline: auto; }
.underline-accent {
  display: inline-block; position: relative;
}
.underline-accent::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 60%; height: 3px; background: var(--accent); border-radius: 2px;
}

.card {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-body { padding: 1.75rem; }
.card-icon {
  width: 52px; height: 52px;
  background: var(--accent-xlt); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent); font-size: 1.5rem;
}
.card h4 { margin-bottom: .5rem; }
.card p  { font-size: .9rem; }

.process-steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  counter-increment: step;
}
.process-step:last-child { border-right: none; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--ff-head);
  font-size: 3.5rem; font-weight: 700;
  color: var(--accent-xlt);
  line-height: 1;
  display: block; margin-bottom: 1rem;
}
.process-step h4 { margin-bottom: .5rem; }
.process-step p { font-size: .875rem; }

@media (max-width:900px) {
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}
@media (max-width:500px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .process-step:nth-child(odd) { border-right: none; }
}

.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-items: stretch;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-img {
  width: 100%; height: 100%;
  min-height: 420px;
  object-fit: cover; display: block;
}
.feature-content {
  background: var(--dark); padding: 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.feature-content .section-label { color: var(--accent-xlt); }
.feature-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.feature-content p  { color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

.check-list { display: flex; flex-direction: column; gap: .75rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.check-list li .ph { color: #8FC9C7; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.check-list-light li { color: var(--mid) !important; }
.check-list-light li .ph { color: var(--accent) !important; }

@media (max-width:768px) {
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-img { height: 260px; }
  .feature-content { padding: 2.5rem; }
}

.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-quote {
  font-family: var(--ff-head); font-size: 1.1rem;
  color: var(--dark); line-height: 1.6;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-xlt); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.2rem;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--mid); }
.star-row { display: flex; gap: 2px; margin-bottom: 1rem; color: #D4A843; font-size: .9rem; }

.cta-band {
  background: var(--dark);
  padding: 6rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 110%, rgba(42,92,89,.45) 0%, transparent 65%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.65); max-width: 520px; margin-inline: auto; margin-bottom: 2.5rem; }

.about-hero-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.value-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.75rem; background: var(--white);
  border-radius: var(--r-lg); border: 1px solid var(--border);
}
.value-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--accent-xlt); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.4rem;
}
.value-item h4 { margin-bottom: .25rem; }
.value-item p  { font-size: .875rem; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r-lg); margin-bottom: 1rem;
}
.team-photo-placeholder {
  width: 100%; aspect-ratio: 1;
  background: var(--bg-alt); border-radius: var(--r-lg);
  margin-bottom: 1rem; display: flex; align-items: center; justify-content: center;
  color: var(--light); font-size: 3rem;
}
.team-name { font-weight: 600; }
.team-role { font-size: .85rem; color: var(--mid); }
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; } }

.mqc-hero {
  background: var(--dark); padding: 6rem 0;
  position: relative; overflow: hidden;
}
.mqc-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1400&q=70');
  background-size: cover; background-position: center;
  opacity: .2;
}
.mqc-hero .container { position: relative; z-index: 1; }
.mqc-hero h1 { color: var(--white); }
.mqc-hero p  { color: rgba(255,255,255,.65); max-width: 560px; margin-top: 1rem; }

.mqc-tab-nav {
  display: flex; border-bottom: 2px solid var(--border);
  margin-bottom: 3rem; gap: 0;
}
.mqc-tab-btn {
  padding: 1rem 2rem; background: none; border: none;
  font-size: .95rem; font-weight: 500; color: var(--mid);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.mqc-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }
.mqc-tab-btn:hover { color: var(--dark); }
.mqc-tab-content { display: none; }
.mqc-tab-content.active { display: block; animation: fadeIn .3s ease; }

@keyframes fadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }

.material-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
  align-items: start; padding: 1.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); margin-bottom: 1rem;
  transition: box-shadow var(--transition);
}
.material-card:hover { box-shadow: var(--shadow-md); }
.material-icon {
  width: 56px; height: 56px;
  background: var(--accent-xlt); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.6rem;
}
.material-card h4 { margin-bottom: .3rem; }
.material-card p  { font-size: .875rem; }
.material-tag {
  display: inline-block; margin-top: .5rem;
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: .2rem .6rem; border-radius: 20px;
  background: var(--accent-xlt); color: var(--accent);
}

.quality-metric {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem; text-align: center;
}
.quality-metric-num {
  font-family: var(--ff-head); font-size: 2.8rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.quality-metric-label { font-size: .85rem; color: var(--mid); margin-top: .35rem; }

.cost-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 1rem; align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cost-row:last-child { border-bottom: none; }
.cost-row-label { font-weight: 500; }
.cost-row-market { font-size: .875rem; color: var(--mid); text-decoration: line-through; }
.cost-row-ours   { font-weight: 600; color: var(--accent); }
.cost-table {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.cost-table-head {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 1rem; padding: 1rem 1.5rem;
  background: var(--bg-alt);
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--mid);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
@media (max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.75rem; border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-xlt); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.2rem;
}
.contact-info-label { font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--light); margin-bottom: .25rem; }
.contact-info-value { font-weight: 500; color: var(--dark); }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; color: var(--dark); }
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--white); font-family: var(--ff-body); font-size: .95rem;
  color: var(--dark); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,92,89,.12);
}
.form-control::placeholder { color: var(--light); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width:480px) { .form-row { grid-template-columns: 1fr; } }
.form-notice { font-size: .8rem; color: var(--light); margin-top: .5rem; }
.form-success {
  background: #E8F5E9; border: 1px solid #A5D6A7;
  padding: 1rem 1.25rem; border-radius: var(--r-sm);
  color: #2E7D32; font-size: .9rem; display: none;
}
.form-success.visible { display: block; animation: fadeIn .3s ease; }

.legal-hero {
  background: var(--bg-alt); padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(1.8rem,4vw,2.6rem); }
.legal-hero p  { color: var(--mid); margin-top: .5rem; }

.legal-body {
  max-width: 780px;
}
.legal-body h2 {
  font-size: 1.4rem; margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 1.1rem; margin: 1.5rem 0 .4rem; }
.legal-body p  { margin-bottom: 1rem; }
.legal-body ul { margin: .5rem 0 1rem 1.5rem; list-style: disc; }
.legal-body ul li { margin-bottom: .35rem; color: var(--mid); font-size: .95rem; }
.legal-body a  { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-meta { font-size: .85rem; color: var(--light); margin-top: .35rem; }

.page-hero {
  background: var(--dark); padding: 5rem 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,.08);
}
.page-hero-inner {
  position: relative; z-index: 1;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; font-size: clamp(2rem,5vw,3.2rem); }
.page-hero p  { color: rgba(255,255,255,.6); max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .4; }

.site-footer {
  background: var(--dark); color: rgba(255,255,255,.65);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width:900px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:500px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.site-footer .brand-name { color: var(--white) !important; font-size: 1.2rem; }
.site-footer .brand-name span { color: #8FC9C7 !important; }

.footer-about { font-size: .875rem; line-height: 1.7; margin-top: .75rem; max-width: 300px; }
.footer-heading {
  font-family: var(--ff-head); font-size: .9rem; font-weight: 600;
  color: var(--white); letter-spacing: .04em; margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; margin-bottom: .75rem;
}
.footer-contact-item .ph { font-size: 1rem; flex-shrink: 0; color: var(--accent-lt); margin-top: 3px; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: 1.5rem; }

.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  max-width: 780px; margin-inline: auto;
  background: var(--dark); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 1.5rem 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  z-index: 9999;
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem; align-items: center;
  transform: translateY(20px); opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie-banner.visible { transform: none; opacity: 1; }
.cookie-banner.hidden  { transform: translateY(30px); opacity: 0; pointer-events: none; }
.cookie-text { font-size: .875rem; color: rgba(255,255,255,.7); }
.cookie-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: .25rem; }
.cookie-text a { color: #8FC9C7; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--accent); color: var(--white);
  border: none; padding: .6rem 1.25rem;
  border-radius: var(--r-sm); font-size: .85rem; font-weight: 600;
  transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--accent-lt); }
.cookie-btn-decline {
  background: transparent; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2); padding: .6rem 1.25rem;
  border-radius: var(--r-sm); font-size: .85rem; font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.8); }

@media (max-width:600px) {
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-end; }
}

.img-placeholder {
  background: var(--bg-alt); display: flex;
  align-items: center; justify-content: center;
  color: var(--light); font-size: 2.5rem;
}

.gallery-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
}
.gallery-strip img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--r-md);
  transition: opacity var(--transition);
}
.gallery-strip img:hover { opacity: .85; }
@media (max-width: 768px) { .gallery-strip { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .gallery-strip { grid-template-columns: repeat(2,1fr); } }

.back-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 900;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-md);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

.bg-alt   { background: var(--bg-alt); }
.bg-dark  { background: var(--dark); }
.bg-white { background: var(--white); }
.border-top    { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }
.mt-auto { margin-top: auto; }
.rounded { border-radius: var(--r-lg); }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.relative { position: relative; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.pb-2 { padding-bottom: 1rem; }
