:root {
  --cream: #fbf8f2;
  --warm: #f3ede4;
  --panel: #f7f0e7;
  --white: #fffdf9;
  --ink: #2c221b;
  --soft-ink: #756a60;
  --gold: #c79f42;
  --gold-dark: #aa8130;
  --line: rgba(44, 34, 27, 0.1);
  --shadow: 0 28px 80px rgba(60, 42, 25, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.container {
  width: min(1460px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: #2a1f18;
  color: rgba(255, 250, 243, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-announcement {
  display: none;
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  min-height: 44px;
}

.topbar-inner a:last-child {
  justify-self: end;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 88px;
}

.brand {
  display: grid;
  gap: 2px;
  min-width: max-content;
}

.brand-text {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.brand-subtitle {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--soft-ink);
}

.site-nav a {
  padding: 11px 17px;
  border-radius: 999px;
  transition: background 220ms ease, color 220ms ease;
}

.site-nav a:hover,
.site-nav a:first-child {
  color: var(--ink);
  background: rgba(44, 34, 27, 0.045);
}

.nav-toggle {
  display: none;
}

.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.header-cta,
.btn-primary {
  color: white;
  background: var(--gold);
  box-shadow: 0 18px 45px rgba(199, 159, 66, 0.26);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-secondary,
.btn-map {
  color: var(--gold-dark);
  background: transparent;
  border-color: rgba(199, 159, 66, 0.45);
}

.hero {
  position: relative;
  padding: 26px 0 70px;
  background:
    radial-gradient(circle at 72% 18%, rgba(215, 185, 125, 0.18), transparent 38%),
    linear-gradient(90deg, var(--cream) 0%, #fffaf4 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  min-height: 620px;
}

.hero-visual {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(199, 159, 66, 0.28);
  border-radius: 40px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: var(--shadow);
}

.hero-card {
  height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--panel);
}

.hero-card img {
  object-position: center top;
}

.hero-note {
  position: absolute;
  right: 38px;
  bottom: -24px;
  width: min(360px, 72%);
  padding: 20px 24px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(44, 34, 27, 0.14);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.45rem;
}

.hero-note span {
  color: var(--soft-ink);
  font-size: 0.9rem;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.line::before {
  display: inline-block;
  width: 36px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(4rem, 5.1vw, 6rem);
}

h1 em {
  color: var(--gold);
  font-style: italic;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 3.6vw, 4.45rem);
}

h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.hero-content p,
.section-heading p,
.about-copy > p,
.team-copy p,
.contact-panel p {
  max-width: 680px;
  color: var(--soft-ink);
  font-size: 1.06rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 62px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-points span::before {
  margin-right: 9px;
  color: var(--gold);
  content: "✓";
}

.section {
  padding: clamp(84px, 8vw, 132px) 0;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
}

.service-list {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.service-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: var(--panel);
  border-radius: 18px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--gold);
  background: rgba(199, 159, 66, 0.1);
  border-radius: 12px;
  font-family: var(--serif);
  font-weight: 700;
}

.service-list p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.about-image {
  width: min(100%, 620px);
  height: 560px;
  margin: 0;
  margin-left: auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-image img {
  object-position: center top;
}

.specialization {
  background: #fffaf4;
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(44, 34, 27, 0.07);
}

.feature-card img {
  height: 260px;
}

.feature-card div {
  padding: 26px;
}

.feature-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.evolution {
  color: var(--white);
  background: #2a1f18;
}

.evolution h2 {
  color: var(--white);
}

.evolution-inner > p {
  color: rgba(255, 250, 243, 0.72);
}

.evolution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.evolution-cards article {
  min-height: 170px;
  padding: 28px;
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.13);
  border-radius: 20px;
}

.evolution-cards span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.evolution-cards p {
  margin: 0;
  color: rgba(255, 250, 243, 0.74);
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 205px;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img,
.feature-card img,
.about-image img,
.hero-card img,
.team-image img {
  transition: transform 650ms ease;
}

.gallery-item:hover img,
.feature-card:hover img,
.about-image:hover img,
.hero-card:hover img,
.team-image:hover img {
  transform: scale(1.035);
}

.team {
  background: #fffaf4;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.team-image {
  height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact {
  background: var(--cream);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 52px;
  padding: clamp(34px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.12;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 250, 243, 0.72);
  background: #2a1f18;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: end;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-inner > span {
  justify-self: end;
}

.whatsapp-float {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: white;
  background: #24d15d;
  border: 7px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(36, 209, 93, 0.34);
  transition: transform 220ms ease, background 220ms ease;
}

.whatsapp-float:hover {
  background: #19bd4e;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 100%;
    right: 24px;
    left: 24px;
    display: grid;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .about-grid,
  .team-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-content {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 1460px);
  }

  .mobile-announcement {
    position: sticky;
    top: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 9px 16px;
    color: rgba(255, 250, 243, 0.9);
    background: #2a1f18;
    border-bottom: 1px solid rgba(255, 250, 243, 0.12);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .mobile-announcement span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-announcement a {
    color: var(--gold);
    white-space: nowrap;
  }

  .topbar {
    display: none;
  }

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

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

  .brand-subtitle {
    font-size: 0.54rem;
  }

  .hero {
    padding: 20px 0 54px;
  }

  .hero-grid {
    min-height: auto;
    gap: 36px;
  }

  .hero-visual {
    padding: 14px;
    border-radius: 28px;
  }

  .hero-card {
    height: 390px;
    border-radius: 22px;
  }

  .hero-note {
    right: 22px;
    bottom: -18px;
    padding: 16px 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .hero-actions,
  .contact-actions {
    gap: 12px;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-points {
    margin-top: 34px;
  }

  .section {
    padding: 70px 0;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 100%;
    height: 360px;
    border-radius: 24px;
  }

  .feature-grid,
  .evolution-cards,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 220px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 10px;
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .team-image {
    height: 340px;
  }

  .contact-panel {
    gap: 34px;
    padding: 26px;
    border-radius: 22px;
  }

  .contact-details strong,
  .contact-details a {
    font-size: 1.32rem;
    overflow-wrap: anywhere;
  }

  .footer-inner > span {
    justify-self: start;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-width: 5px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 430px) {
  .hero-card {
    height: 340px;
  }

  .hero-note {
    position: static;
    width: auto;
    margin: -4px 12px 0;
  }

  .gallery {
    grid-auto-rows: 145px;
  }
}
