:root {
  --color-primary: #2c4a2e;
  --color-primary-light: #3d6b3f;
  --color-primary-dark: #1a2e1c;
  --color-accent: #c9953c;
  --color-accent-light: #ddb065;
  --color-bg: #fafaf7;
  --color-bg-warm: #f5f0e8;
  --color-bg-dark: #1a1a18;
  --color-text: #2a2a28;
  --color-text-light: #5a5a56;
  --color-text-muted: #8a8a84;
  --color-white: #ffffff;
  --color-border: #e2dfd6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-toggle span {
  color: var(--color-text);
}
.navbar.scrolled .nav-toggle span {
  background: var(--color-text);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}
.navbar.scrolled .logo-img {
  height: 50px;
}
.navbar.scrolled .logo-text {
  color: var(--color-text);
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--color-accent);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--color-accent-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,28,0.88) 0%, rgba(44,74,46,0.72) 50%, rgba(201,149,60,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 24px 80px;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,149,60,0.25);
  border: 1px solid rgba(201,149,60,0.4);
  color: var(--color-accent-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--color-accent);
  display: block;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,149,60,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-full { width: 100%; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--color-bg-warm);
  border-bottom: 1px solid var(--color-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  border-right: 1px solid var(--color-border);
}
.trust-item:last-child { border-right: none; }
.trust-item i {
  font-size: 28px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-text);
}
.trust-item span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.section-header h2,
.about-content h2,
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 96px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}
.service-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 96px 0;
  background: var(--color-bg-warm);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 40px 20px 18px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-label {
  transform: translateY(0);
}
.gallery-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-wide {
  grid-column: 1 / 3;
}

/* ---------- PROCESS ---------- */
.process {
  padding: 96px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}
.process-step:last-child::after { display: none; }
.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 96px 0;
  background: var(--color-bg-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-content .section-tag { text-align: left; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.about-highlight i {
  color: var(--color-accent);
  font-size: 14px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--color-primary);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(201,149,60,0.1);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(201,149,60,0.08);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 96px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-detail i {
  width: 44px;
  height: 44px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}
.contact-detail span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44,74,46,0.1);
}
.form-group textarea {
  resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235a5a56'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.consent-check input {
  margin-top: 3px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}
.consent-check a {
  color: var(--color-primary);
  text-decoration: underline;
}
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  background: var(--color-bg-warm);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  line-height: 1.5;
}
.form-notice i {
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ---------- LEGAL PAGES ---------- */
.legal-page {
  padding: 160px 0 96px;
  min-height: 70vh;
}
.legal-header {
  max-width: 760px;
  margin-bottom: 48px;
}
.legal-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.legal-updated {
  color: var(--color-text-muted);
  font-size: 14px;
}
.legal-content {
  max-width: 820px;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 36px 0 12px;
  color: var(--color-primary-dark);
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 8px;
}
.legal-content p,
.legal-content li {
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.75;
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  margin: 0 0 18px 22px;
}
.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  background: var(--color-bg-dark);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 19px;
  margin-bottom: 4px;
}
.cookie-content p {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.55;
  max-width: 700px;
}
.cookie-content a {
  color: var(--color-accent-light);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 10px 16px;
  font-size: 13px;
}
.cookie-reject {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  margin-bottom: 0;
}
.footer-logo img {
  height: 50px;
}
.footer-logo .logo-text {
  color: var(--color-white);
}
.footer-brand > p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
}
.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--color-accent);
}
.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.legal-links a {
  transition: var(--transition);
}
.legal-links a:hover {
  color: var(--color-accent);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  .nav-links.active { right: 0; }
  .nav-links a {
    color: var(--color-text) !important;
    font-size: 17px;
  }
  .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); }
  .nav-toggle.active span { background: var(--color-text) !important; }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    border-bottom: 1px solid var(--color-border);
  }
  .trust-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-large { grid-column: auto; grid-row: auto; }
  .gallery-wide { grid-column: auto; }

  .process-grid { grid-template-columns: 1fr; gap: 28px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-img-wrap img { height: 320px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding: 140px 24px 60px;
  }
  
  .logo-text {
    font-size: 16px;
  }

  .cookie-content {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .about-highlights { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-content {
    padding: 18px;
  }
  .cookie-actions {
    flex-direction: column;
  }
}