:root {
  --gold: #b98318;
  --gold-bright: #d9af4f;
  --gold-soft: #fff5d8;
  --ink: #17130d;
  --muted: #71675a;
  --line: #ead8ad;
  --paper: #fffdf8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(36, 25, 5, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 175, 79, 0.18), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, var(--paper) 32%, #fff 100%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 1rem, 1180px);
  margin: 0.5rem auto 0;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(185, 131, 24, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(35, 26, 8, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(185, 131, 24, 0.22);
  border-radius: 50%;
}

.brand img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  white-space: nowrap;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  padding: 0.62rem 0.75rem;
  border-radius: 999px;
  color: #4d412e;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--gold-soft);
  outline: none;
}

.hero {
  display: grid;
  gap: 1.2rem;
  width: min(100% - 1.25rem, 1180px);
  min-height: calc(100svh - 5rem);
  margin: 1rem auto 0;
  padding-bottom: 2rem;
}

.hero-image {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(90deg, rgba(185, 131, 24, 0.2), transparent 42%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 58svh;
  object-fit: cover;
  object-position: center 32%;
}

.hero-content {
  position: relative;
  margin-top: -8.8rem;
  padding: 0 1rem 1rem;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.05;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 17vw, 7rem);
  font-weight: 700;
}

.slogan {
  margin: 1rem 0 0;
  color: #ffe5a3;
  font-size: clamp(1.1rem, 5vw, 1.55rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 39rem;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.button,
.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #171006;
  background: linear-gradient(135deg, #fff0bd, var(--gold-bright));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.intro-panel,
.split-section,
.services,
.gallery,
.contact {
  width: min(100% - 1.25rem, 1180px);
  margin: 0 auto;
}

.intro-panel {
  display: grid;
  gap: 1rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line);
}

.intro-panel h2,
.statement h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 9vw, 4.6rem);
}

.intro-panel p,
.statement p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.association {
  color: var(--gold) !important;
  font-weight: 800;
}

.split-section {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0;
}

.portrait-stack {
  position: relative;
  min-height: 31rem;
}

.portrait-main,
.portrait-small {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.portrait-main {
  inset: 0 auto auto 0;
  width: 78%;
  height: 28rem;
  border-radius: 0.5rem;
  object-position: center 28%;
}

.portrait-small {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 15rem;
  border: 0.45rem solid var(--paper);
  border-radius: 0.5rem;
  object-position: center 40%;
}

.statement {
  align-self: center;
}

.statement p {
  margin-top: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.stats-grid span {
  min-height: 6.5rem;
  padding: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.stats-grid strong {
  display: block;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.15rem;
}

.services {
  padding: 3.5rem 0;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 1.5rem;
}

.service-grid {
  display: grid;
  gap: 0.85rem;
}

.service-grid article {
  min-height: 13rem;
  padding: 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 226, 0.92)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 14px 34px rgba(47, 32, 4, 0.06);
}

.service-grid span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-grid h3,
.social-panel h3 {
  margin: 1.8rem 0 0.55rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  padding: 3.5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.gallery-grid img {
  width: 100%;
  height: 17rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 18px 42px rgba(42, 30, 4, 0.1);
}

.gallery-grid img:first-child {
  grid-column: 1 / -1;
  height: 25rem;
  object-position: center 32%;
}

.contact {
  display: grid;
  gap: 1rem;
  padding: 3.5rem 0;
}

.contact-card,
.social-panel {
  padding: 1.25rem;
  border-radius: 0.5rem;
}

.contact-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 19, 13, 0.9), rgba(55, 40, 14, 0.9)),
    url("images/picture2.jpg") center / cover;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-links a,
.contact-links span {
  width: 100%;
  justify-content: flex-start;
  overflow-wrap: anywhere;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  text-shadow: none;
}

.social-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 13rem;
  background: var(--gold-soft);
  border: 1px solid var(--line);
}

.social-panel h3 {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a,
.whatsapp-float {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  font-weight: 900;
}

.social-links a {
  color: var(--white);
  background: var(--ink);
  text-transform: uppercase;
}

footer {
  display: grid;
  place-items: center;
  gap: 0.2rem;
  padding: 2.5rem 1rem 6rem;
  color: var(--muted);
  text-align: center;
}

footer img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  border-radius: 50%;
}

footer p {
  margin: 0.7rem 0 0;
  color: var(--ink);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
}

footer span {
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  color: #ffffff;
  background: #24d366;
  box-shadow: 0 18px 42px rgba(16, 123, 63, 0.35);
}

@media (min-width: 700px) {
  .site-header {
    margin-top: 1rem;
  }

  .nav-links a {
    padding-inline: 1rem;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    min-height: calc(100svh - 6rem);
    padding-bottom: 4rem;
  }

  .hero-image {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 75svh;
  }

  .hero-image img {
    min-height: 75svh;
  }

  .hero-content {
    grid-column: 1 / 3;
    grid-row: 1;
    max-width: 48rem;
    margin: 0;
    padding: 2rem;
    align-self: end;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(4.5rem, 10vw, 8.2rem);
  }

  .intro-panel,
  .split-section,
  .contact {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-grid article:last-child {
    grid-column: 1 / -1;
  }

  .contact-card,
  .social-panel {
    padding: 2rem;
  }
}

@media (min-width: 1000px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-content {
    max-width: 56rem;
    padding: 3rem;
  }

  .intro-panel,
  .split-section,
  .services,
  .gallery,
  .contact {
    padding-block: 5rem;
  }

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

  .service-grid article:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-column: auto;
    height: 33rem;
  }

  .contact {
    grid-template-columns: 1.35fr 0.65fr;
  }
}
