﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');
:root {
  --bg: #f7f2eb;
  --bg-soft: #fdfaf6;
  --bg-accent: #efe3d1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf9;
  --surface-muted: rgba(255, 249, 241, 0.88);
  --text: #25323a;
  --text-soft: #5d6c74;
  --text-inverse: #fefbf7;
  --primary: #184c4a;
  --primary-strong: #113836;
  --secondary: #b88a4a;
  --secondary-soft: #e6c48d;
  --border: rgba(77, 58, 37, 0.12);
  --shadow-soft: 0 18px 45px rgba(37, 50, 58, 0.08);
  --shadow-medium: 0 24px 60px rgba(24, 76, 74, 0.16);
  --shadow-strong: 0 34px 80px rgba(24, 76, 74, 0.2);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: 1180px;
  --header-height: 96px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(230, 196, 141, 0.26), transparent 30%),
    radial-gradient(circle at right 20%, rgba(24, 76, 74, 0.12), transparent 24%),
    linear-gradient(180deg, #fdf9f4 0%, #f7f2eb 38%, #f5efe7 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}
.section {
  position: relative;
  padding: 88px 0;
}
.section-light {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.72), rgba(255, 255, 255, 0.9));
}
.section-muted {
  background: linear-gradient(180deg, rgba(239, 227, 209, 0.52), rgba(255, 250, 244, 0.92));
}
.section-content {
  position: relative;
  z-index: 1;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-header h2,
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.03em;
}
.section-header h2 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  color: var(--primary-strong);
}
.section-header p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-soft);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(18px);
  background: rgba(23, 42, 44, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(16, 31, 33, 0.16);
}
.site-header::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-soft), transparent);
}
.header-content {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo-area {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.16));
}
.logo-extra img {
  height: clamp(28px, 4vw, 42px);
  width: auto;
}
.main-nav ul,
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 250, 244, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
}
.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  background: rgba(255, 252, 248, 0.96);
  border-top: 1px solid rgba(24, 76, 74, 0.08);
  box-shadow: var(--shadow-soft);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav ul {
  padding: 14px 16px 18px;
}
.mobile-nav li + li {
  margin-top: 8px;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(24, 76, 74, 0.04);
  color: var(--primary-strong);
  font-weight: 600;
}
.mobile-nav a:hover {
  background: rgba(24, 76, 74, 0.08);
}
.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 112px) 0 86px;
}
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  z-index: 0;
}
.hero-section::before {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -90px;
  background: rgba(230, 196, 141, 0.28);
}
.hero-section::after {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -100px;
  background: rgba(24, 76, 74, 0.12);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: center;
}
.hero-text {
  max-width: 650px;
}
.hero-text h1 {
  margin: 0 0 18px;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.92;
  color: var(--primary-strong);
}
.hero-subtitle,
.hero-support-text,
.hero-text p {
  font-size: 1.08rem;
  color: var(--text-soft);
}
.hero-subtitle {
  margin: 0 0 28px;
  max-width: 580px;
}
.hero-support-text {
  margin: 18px 0 0;
}
.hero-cta-group {
  display: none;
}
.hero-cta-group a,
.btn,
.whatsapp-floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}
.hero-cta-group a:first-child,
.btn-primary,
.whatsapp-floating {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--text-inverse);
  box-shadow: 0 16px 32px rgba(17, 56, 54, 0.26);
}
.hero-cta-group a:first-child:hover,
.btn-primary:hover,
.whatsapp-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(17, 56, 54, 0.32);
}
.hero-cta-group a:last-child,
.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary-strong);
  border: 1px solid rgba(24, 76, 74, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}
.hero-cta-group a:last-child:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.75);
}
.hero-image {
  display: flex;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 0.9;
  border-radius: 42px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(236, 224, 207, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-strong);
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(184, 138, 74, 0.24);
  pointer-events: none;
}
.hero-photo-frame img,
.card-image img,
.map-embed iframe {
  width: 100%;
  height: 100%;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.info-box,
.card,
.contact-form,
.map-embed,
.hero-highlight,
article.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.info-box,
.card,
.contact-form,
article.card {
  padding: 28px;
}
.info-box h3,
.card h3,
.grid-2 h3,
.map-wrapper h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-strong);
}
.info-box p,
.card p,
.grid-2 p,
.card li,
.info-box li {
  color: var(--text-soft);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-soft), var(--secondary));
  opacity: 0.8;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.card-image {
  height: 220px;
  margin: -4px -4px 20px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.card-image img {
  object-fit: cover;
  transition: transform 0.45s ease;
}
.card:hover .card-image img {
  transform: scale(1.04);
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 700;
}
.link-more::after {
  content: '?';
  transition: transform 0.24s ease;
}
.link-more:hover::after {
  transform: translateX(4px);
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
}
.testimonial-author {
  color: var(--primary);
  font-weight: 700;
}
.map-wrapper {
  margin-top: 34px;
}
.map-embed {
  overflow: hidden;
  padding: 0;
  min-height: 320px;
}
.map-embed iframe {
  border: 0;
  min-height: 320px;
}
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #183634 0%, #102524 100%);
  color: rgba(255, 250, 244, 0.82);
  padding: 44px 0 30px;
}
.footer-content {
  text-align: center;
}
.footer-content p {
  margin: 0 0 10px;
}
.footer-small {
  color: rgba(255, 250, 244, 0.58);
}
.footer-agency {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.footer-agency a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 244, 0.72);
}
.footer-agency-logo {
  width: auto;
  height: 28px;
  border-radius: 8px;
}
.whatsapp-floating,
.instagram-floating {
  position: fixed;
  right: 22px;
  z-index: 130;
}
.whatsapp-floating {
  bottom: 22px;
}
.instagram-floating {
  bottom: 92px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #7f3cb9, #d94f7b, #f4b757);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(127, 60, 185, 0.28);
}
.instagram-floating:hover {
  transform: translateY(-2px);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(24, 76, 74, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form button {
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .hero-content,
  .grid-2,
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-text {
    max-width: none;
  }
  .hero-image {
    justify-content: flex-start;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  :root {
    --header-height: 82px;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .section {
    padding: 72px 0;
  }
  .grid-2,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo-frame {
    width: min(100%, 360px);
  }
  .whatsapp-floating,
  .instagram-floating {
    right: 16px;
  }
}
@media (max-width: 640px) {
  body {
    line-height: 1.6;
  }
  .container {
    width: min(100% - 22px, var(--container));
  }
  .header-content {
    min-height: 78px;
  }
  .logo {
    width: 58px;
    height: 58px;
  }
  .logo-extra img {
    max-width: 170px;
    height: auto;
  }
  .hero-section {
    padding-top: 42px;
  }
  .hero-text h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }
  .hero-cta-group,
  .hero-cta-group a,
  .btn,
  .whatsapp-floating {
    width: 100%;
  }
  .hero-photo-frame {
    aspect-ratio: 0.82;
    border-radius: 30px;
  }
  .info-box,
  .card,
  .contact-form,
  article.card {
    padding: 22px;
    border-radius: 24px;
  }
  .card-image {
    height: 200px;
    border-radius: 18px;
  }
  .whatsapp-floating {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .instagram-floating {
    width: 48px;
    height: 48px;
    bottom: 84px;
  }
}
