@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --rose-50: #fdf7f6;
  --rose-100: #f6e7e4;
  --rose-200: #ebd1cb;
  --rose-300: #d7b0a7;
  --rose-500: #b67877;
  --rose-700: #8d5959;
  --champagne: #f4efe7;
  --sand: #e7dccf;
  --gold: #b88b49;
  --gold-soft: #e6d1aa;
  --ink: #2c2525;
  --muted: #6c6060;
  --white: #ffffff;
  --border: rgba(108, 96, 96, 0.14);
  --shadow-sm: 0 12px 30px rgba(78, 55, 55, 0.08);
  --shadow-md: 0 18px 50px rgba(78, 55, 55, 0.12);
  --radius: 24px;
  --container: min(1160px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(235, 209, 203, 0.45), transparent 28%),
    radial-gradient(circle at right 12%, rgba(230, 209, 170, 0.3), transparent 22%),
    linear-gradient(180deg, #fffdfa 0%, var(--rose-50) 45%, #fffaf7 100%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 247, 0.82);
  border-bottom: 1px solid rgba(182, 120, 119, 0.12);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(246, 231, 228, 0.7)),
    linear-gradient(135deg, var(--rose-300), var(--gold-soft));
  border: 1px solid rgba(184, 139, 73, 0.35);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), var(--shadow-sm);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 14px 14px 6px 6px;
  border: 1px solid rgba(184, 139, 73, 0.5);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
}

.brand-text small {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(182, 120, 119, 0.1);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
}

.hero,
.page-hero,
.section {
  padding: 4.8rem 0;
}

.page-hero {
  padding-top: 3.6rem;
}

.hero-grid,
.page-hero-grid,
.split-feature,
.editorial-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-copy {
  padding-right: 1rem;
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  color: var(--rose-700);
  background: rgba(246, 231, 228, 0.9);
  border: 1px solid rgba(182, 120, 119, 0.18);
  padding: 0.55rem 0.9rem;
  margin-bottom: 1.3rem;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.card-label {
  color: var(--gold);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}

.actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary,
.btn-nav {
  background: linear-gradient(135deg, var(--rose-500), var(--gold));
  color: var(--white) !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(182, 120, 119, 0.16);
}

.btn-primary-light {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-notes,
.check-list,
.detail-list {
  list-style: none;
}

.hero-notes {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.hero-notes li,
.check-list li,
.detail-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.hero-notes li::before,
.check-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), var(--gold));
  box-shadow: 0 0 0 5px rgba(182, 120, 119, 0.12);
}

.hero-image-frame,
.editorial-photo,
.service-card,
.mini-card,
.info-card,
.stat-card,
.step-card,
.page-hero-card,
.hero-card,
.cta-box,
.note-box,
.contact-panel,
.form-panel {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-image-frame {
  overflow: hidden;
  min-height: 620px;
}

.hero-image-frame img,
.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  max-width: 360px;
  padding: 1.5rem;
  position: absolute;
  right: -1rem;
  bottom: 1.5rem;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(246, 231, 228, 0.35), rgba(255, 255, 255, 0.5)),
    var(--white);
}

.section-band {
  background:
    radial-gradient(circle at left center, rgba(230, 209, 170, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(244, 239, 231, 0.7), rgba(255, 255, 255, 0.9));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-heading p {
  color: var(--muted);
}

.split-feature {
  align-items: start;
}

.stats-panel,
.stacked-cards,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.stat-card,
.mini-card,
.info-card,
.step-card,
.page-hero-card,
.contact-panel,
.form-panel,
.note-box,
.hero-card,
.cta-box {
  padding: 1.5rem;
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.stat-card span,
.mini-card span,
.info-card p,
.step-card p,
.page-hero-card p {
  color: var(--muted);
}

.services-grid,
.feature-grid,
.steps-grid,
.gallery-grid {
  display: grid;
  gap: 1.2rem;
}

.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.services-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.steps-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-content {
  padding: 1.35rem;
}

.service-content p {
  color: var(--muted);
}

.gallery-grid img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.editorial-photo {
  overflow: hidden;
  min-height: 560px;
}

.editorial-copy {
  padding: 0 0.5rem;
}

.quote-card {
  margin: 1.8rem 0 0;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(244, 239, 231, 0.7);
  border-radius: 0 20px 20px 0;
  color: var(--rose-700);
  font-size: 1.1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--rose-700);
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #5f4040, #8d5959 48%, #b88b49);
  color: var(--white);
}

.cta-box-soft {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 28%),
    linear-gradient(135deg, rgba(246, 231, 228, 0.9), rgba(255, 255, 255, 0.95));
  color: var(--ink);
}

.contact-layout {
  align-items: start;
}

.form-panel form {
  display: grid;
}

.form-intro {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

label {
  margin-bottom: 0.4rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(108, 96, 96, 0.18);
  background: rgba(255, 250, 247, 0.92);
  font: inherit;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(182, 120, 119, 0.55);
  box-shadow: 0 0 0 4px rgba(182, 120, 119, 0.12);
  background: var(--white);
}

.detail-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(182, 120, 119, 0.12), rgba(184, 139, 73, 0.18));
  color: var(--rose-700);
  font-weight: 800;
}

.site-footer {
  padding: 2.5rem 0 1.2rem;
  border-top: 1px solid rgba(182, 120, 119, 0.12);
  background: rgba(255, 253, 250, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.8rem;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.site-footer a {
  text-decoration: none;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(182, 120, 119, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f9d61, #25d366);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero-grid,
  .page-hero-grid,
  .split-feature,
  .editorial-grid,
  .contact-layout,
  .footer-grid,
  .feature-grid,
  .steps-grid,
  .gallery-grid,
  .services-grid,
  .services-grid-full {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .editorial-copy {
    padding-right: 0;
  }

  .hero-image-frame,
  .editorial-photo {
    min-height: 420px;
  }

  .hero-card {
    position: static;
    margin-top: -3.5rem;
    margin-left: auto;
    max-width: 90%;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .header-shell {
    min-height: 78px;
  }

  .brand-text strong {
    font-size: 1.55rem;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-card {
    max-width: 100%;
    margin-top: 1rem;
  }

  .hero-image-frame,
  .editorial-photo {
    min-height: 340px;
  }

  .contact-panel,
  .form-panel,
  .cta-box {
    padding: 1.5rem;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
    text-align: center;
  }
}
