:root {
  --cream: #fbf5ed;
  --warm-cream: #f4e8d8;
  --sand: #dfc5a8;
  --bronze: #b47b45;
  --terracotta: #9b4f3f;
  --deep-brown: #2d211b;
  --soft-brown: #6f5548;
  --white: #ffffff;
  --black: #111111;

  --shadow: 0 24px 70px rgba(45, 33, 27, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--deep-brown);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

section {
  padding: 90px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

p {
  font-size: 1rem;
  color: var(--soft-brown);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 237, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 33, 27, 0.08);
}

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

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--bronze);
  margin-top: 5px;
}

.logo-image {
  display: inline-flex;
  align-items: center;
  max-width: 190px;
}

.logo-image img {
  width: 155px;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .logo-image {
    max-width: 145px;
  }

  .logo-image img {
    width: 145px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  color: var(--soft-brown);
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--terracotta);
}

.header-call {
  background: var(--deep-brown);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(155, 79, 63, 0.25);
}

.btn-primary:hover {
  background: var(--deep-brown);
}

.btn-outline {
  border-color: rgba(45, 33, 27, 0.25);
  color: var(--deep-brown);
  background: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: var(--white);
}

/* Hero */

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 55px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(180, 123, 69, 0.22), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(155, 79, 63, 0.16), transparent 26%),
    linear-gradient(135deg, var(--cream), var(--warm-cream));
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -20%;
  width: 48vw;
  height: 48vw;
  background: rgba(180, 123, 69, 0.18);
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: center;
}

.hero-lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 660px;
  color: var(--soft-brown);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.privacy-note {
  font-size: 0.94rem;
  color: var(--terracotta);
  font-weight: 700;
}

.hero-image-card {
  position: relative;
  padding: 14px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(45, 33, 27, 0.1);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
}

/* Intro */

.intro-section {
  background: var(--white);
}

.intro-section p {
  font-size: 1.08rem;
}

/* Services */

.services-section {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(45, 33, 27, 0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 230px;
  box-shadow: 0 10px 34px rgba(45, 33, 27, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-number {
  display: inline-block;
  color: var(--bronze);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 34px;
}

/* Private */

.private-section {
  background: var(--deep-brown);
  color: var(--white);
}

.private-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 54px;
  background:
    radial-gradient(circle at 20% 10%, rgba(180, 123, 69, 0.35), transparent 34%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.private-section h2,
.private-section p {
  color: var(--white);
}

.private-section p {
  opacity: 0.82;
}

/* Inspiration */

.inspiration-section {
  background: var(--white);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.image-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--warm-cream);
}

.image-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-grid figure:hover img {
  transform: scale(1.05);
}

.image-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(251, 245, 237, 0.88);
  color: var(--deep-brown);
  font-weight: 800;
  text-align: center;
}

/* Why */

.why-section {
  background: var(--warm-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-item {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(45, 33, 27, 0.08);
  border-radius: var(--radius-md);
  padding: 26px;
}

/* FAQs */

.faq-section {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

details {
  background: var(--white);
  border: 1px solid rgba(45, 33, 27, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(45, 33, 27, 0.05);
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--deep-brown);
}

details p {
  margin: 16px 0 0;
}

/* Contact */

.contact-section {
  background: var(--deep-brown);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-section h2,
.contact-section p,
.contact-section a {
  color: var(--white);
}

.contact-section p {
  opacity: 0.84;
}

.contact-details {
  margin-top: 30px;
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-form {
  background: var(--white);
  color: var(--deep-brown);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 15px;
  border: 1px solid rgba(45, 33, 27, 0.16);
  border-radius: 12px;
  font: inherit;
  background: #fffaf5;
  color: var(--deep-brown);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  border: 0;
}

.btn-whatsapp {
  background: #ffffff;
  color: var(--deep-brown);
  border-color: rgba(45, 33, 27, 0.18);
  box-shadow: 0 12px 30px rgba(45, 33, 27, 0.08);
}

.btn-whatsapp:hover {
  background: var(--deep-brown);
  color: var(--white);
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-trust-pills span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(45, 33, 27, 0.1);
  color: var(--deep-brown);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(45, 33, 27, 0.06);
}


/* 404 Page */

.error-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(180, 123, 69, 0.18), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(155, 79, 63, 0.12), transparent 26%),
    linear-gradient(135deg, var(--cream), var(--warm-cream));
  padding: 40px 0;
}

.error-card {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(45, 33, 27, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.error-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}

.error-logo img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  display: block;
}

.error-page h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
  max-width: 720px;
  margin-bottom: 22px;
}

.error-lead {
  font-size: 1.12rem;
  color: var(--deep-brown);
  font-weight: 700;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 640px) {
  .error-page {
    align-items: flex-start;
    padding: 28px 0;
  }

  .error-card {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .error-logo img {
    width: 120px !important;
    max-width: 120px !important;
  }

  .error-actions {
    flex-direction: column;
  }
}


/* Footer */

.site-footer {
  background: #1c1511;
  color: var(--white);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}


.site-footer a {
  color: var(--sand);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-divider {
  display: inline-block;
  margin: 0 8px;
  opacity: 0.45;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-copy,
  .footer-links {
    width: 100%;
    text-align: left;
  }

  .footer-divider {
    display: none;
  }

  .footer-cookie-link {
    display: block;
    margin-top: 6px;
  }
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(155, 79, 63, 0.12);
  background: #ffffff;
}

/* Cookie Notice */

.cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
}

.cookie-notice.is-visible {
  display: block;
}

.cookie-notice-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(28, 21, 17, 0.96);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--white);
}

.cookie-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  max-width: 680px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.cookie-btn-primary:hover {
  background: var(--bronze);
}

.cookie-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(155, 79, 63, 0.35);
}

.footer-cookie-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--sand);
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.footer-cookie-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-cookie-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(223, 197, 168, 0.25);
  border-radius: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-message {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 700;
}

.form-message-success {
  background: #ecf8ef;
  color: #245c34;
  border: 1px solid rgba(36, 92, 52, 0.18);
}

.form-message-error {
  background: #fff0ed;
  color: #8a2f22;
  border: 1px solid rgba(138, 47, 34, 0.18);
}

/* Hide default reCAPTCHA v3 floating badge */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* Inline reCAPTCHA notice */
.recaptcha-disclaimer {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff6ee;
  border: 1px solid rgba(45, 33, 27, 0.1);
  color: var(--soft-brown);
  font-size: 0.78rem;
  line-height: 1.45;
}

.recaptcha-disclaimer a {
  color: var(--terracotta);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.recaptcha-disclaimer a:hover {
  color: var(--deep-brown);
}



@media (max-width: 720px) {
  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-notice-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}


/* Responsive */

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .private-card,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-image-card {
    max-width: 560px;
  }

  .service-grid,
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  section {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .logo-main {
    font-size: 1.45rem;
  }

  .logo-sub {
    font-size: 0.62rem;
  }

  .header-call {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .hero-section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .private-card,
  .contact-form {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}