:root {
  --black: #0b0b0b;
  --gold: #c89211;
  --gold-dark: #a8760e;
  --white: #ffffff;
  --beige: #f8f5ef;
  --gray: #4f4f4f;
  --line: rgba(11, 11, 11, 0.1);
  --shadow: 0 24px 70px rgba(11, 11, 11, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.7;
}

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

h1,
h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.9rem, 5.25vw, 5.85rem);
  line-height: 0.98;
  margin: 0;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.08;
  margin: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  color: var(--gray);
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 11, 11, 0.07);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 86px;
}

.navbar-brand img {
  width: 210px;
  height: auto;
}

.nav-link {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--white);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline-dark {
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 11, 11, 0.35);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  color: var(--white);
  background: var(--black);
}

.section-space {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.8rem) 0 clamp(3rem, 5vw, 4.8rem);
  background:
    radial-gradient(circle at 10% 20%, rgba(200, 146, 17, 0.11), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, var(--beige) 100%);
}

.hero-watermark {
  position: absolute;
  right: -7rem;
  top: 5rem;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  background: url("assets/img/crespin-icon.svg") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-lead {
  max-width: 610px;
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.hero-image {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 146, 17, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: clamp(390px, 42vw, 560px);
  object-fit: cover;
}

.trust-section {
  margin-top: -2.4rem;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-card,
.service-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(11, 11, 11, 0.06);
}

.trust-card {
  padding: 1.6rem;
}

.trust-card i,
.service-card i {
  color: var(--gold);
  font-size: 1.85rem;
}

.trust-card h2 {
  margin: 1rem 0 0.45rem;
  font-size: 1.22rem;
}

.trust-card p {
  font-size: 0.92rem;
}

.image-card {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: min(560px, 60vw);
  min-height: 380px;
  object-fit: cover;
}

.section-copy {
  max-width: 620px;
  margin-top: 1.2rem;
}

.about-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.about-list div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray);
  font-weight: 600;
}

.about-list i {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading p {
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 250px;
  padding: 1.55rem;
}

.service-card h3 {
  margin: 1.1rem 0 0.7rem;
}

.service-card p {
  font-size: 0.93rem;
}

.cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 11, 11, 0.97), rgba(11, 11, 11, 0.9)),
    var(--black);
  border-radius: 30px;
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 22rem;
  aspect-ratio: 1;
  background: url("assets/img/crespin-icon.svg") center / contain no-repeat;
  opacity: 0.12;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.location-section {
  background: var(--beige);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.contact-list i {
  color: var(--gold);
}

.location-link {
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  color: var(--white) !important;
  background: var(--black);
  border-radius: 999px;
}

.location-link:hover,
.location-link:focus {
  background: var(--gold-dark);
}

.location-link i {
  color: var(--gold);
}

.map-frame {
  min-height: 360px;
  height: 100%;
  background: var(--black);
  border: 1px solid rgba(200, 146, 17, 0.24);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.site-footer {
  padding: 3rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.footer-logo {
  display: inline-flex;
  width: 220px;
  padding: 0.65rem 0.85rem;
  border-radius: 16px;
}

.footer-logo img {
  width: 100%;
}

.site-footer p {
  max-width: 420px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.35rem;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 76px;
  }

  .navbar-brand img {
    width: 180px;
  }

  .hero-section {
    padding-top: 3.5rem;
  }

  .trust-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 3rem;
  }

  .navbar-brand img {
    width: 158px;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .hero-image img {
    height: 340px;
  }

  .trust-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-section {
    margin-top: 0;
    padding-top: 1rem;
  }

  .image-card img {
    min-height: 300px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }
}
