:root {
  --maroon: #800021;
  --maroon-dark: #570016;
  --gold: #c6943c;
  --gold-soft: #ffdda0;
  --paper: #fffdf8;
  --soft: #f7f1e8;
  --ink: #15110f;
  --text: #4a403b;
  --muted: #756a62;
  --line: #eadbc3;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(87, 0, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf1;
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  padding: 9px 16px;
  color: #ffe9a8;
  text-align: center;
  font-weight: 900;
  font-size: 13px;
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(87, 0, 22, 0.08);
}

.nav-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 290px 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seal {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--maroon);
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff6df;
  font-family: Cinzel, Georgia, serif;
  font-size: 27px;
  font-weight: 800;
}

.brand strong {
  display: block;
  color: var(--maroon);
  font-family: Cinzel, Georgia, serif;
  font-size: 18px;
  line-height: 1.08;
  text-transform: uppercase;
}

.brand span span {
  color: #665f59;
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #3f3430;
  font-size: 13px;
  font-weight: 900;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--maroon);
}

.phone {
  display: grid;
  gap: 1px;
  color: var(--muted);
  text-align: right;
  font-size: 12px;
  font-weight: 800;
}

.phone strong {
  color: var(--maroon);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.btn-primary {
  color: #fff;
  background: var(--maroon);
  box-shadow: 0 12px 26px rgba(128, 0, 33, 0.24);
}

.btn-gold {
  color: #392300;
  background: linear-gradient(180deg, #ffd36f, #d8a344);
}

.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: #fff;
  background: linear-gradient(90deg, rgba(7, 22, 30, 0.82), rgba(7, 22, 30, 0.38)), var(--hero-image) center / cover no-repeat;
}

.hero .wrap {
  padding: 86px 0 72px;
}

.kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 {
  max-width: 780px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
}

.hero p {
  max-width: 680px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

section {
  padding: 74px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head .kicker {
  color: var(--maroon);
}

h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

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

.card,
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-img {
  height: 250px;
  background: #eee;
}

.card-body,
.info-card {
  padding: 22px;
}

.card h3,
.info-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-weight: 750;
}

.check-list li {
  display: flex;
  gap: 10px;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.band {
  color: #fff;
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon));
}

.band .lead,
.band p {
  color: rgba(255, 255, 255, 0.82);
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field label {
  color: #6f625b;
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #e1cfae;
  border-radius: 8px;
  font: inherit;
}

.field textarea {
  min-height: 100px;
  padding-top: 12px;
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

.form-status.is-success {
  display: block;
  color: #0b5c2d;
  background: #e8f8ee;
  border: 1px solid #b9e5c7;
}

.form-status.is-error {
  display: block;
  color: #8a001e;
  background: #fff1f3;
  border: 1px solid #efbdc7;
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.gallery-grid img {
  aspect-ratio: 1.35 / 1;
}

.gallery-grid figcaption {
  padding: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

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

.social-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.social-card strong {
  display: block;
  color: var(--maroon);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.social-card a {
  color: #087df2;
  font-weight: 900;
}

.social-card .tagline {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.footer {
  padding-top: 44px;
  color: #5a4b44;
  background: #fffaf1;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--maroon);
}

.footer a {
  display: block;
  margin: 7px 0;
  font-weight: 800;
}

.copyright {
  padding: 14px 0;
  color: #fff;
  text-align: center;
  background: var(--maroon-dark);
}

.copyright a {
  display: inline;
  color: #ffe9a8;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #13bf5b;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .nav-links,
  .phone {
    display: none;
  }

  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 28px);
    max-width: calc(100vw - 28px);
  }

  .top-strip {
    font-size: 11px;
    line-height: 1.35;
    padding-inline: 12px;
    white-space: normal;
  }

  .brand strong {
    font-size: 15px;
  }

  .seal {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 360px;
  }

  .hero .wrap {
    padding: 58px 0 46px;
    overflow: hidden;
  }

  .hero p {
    font-size: 15px;
  }

  h1 {
    max-width: calc(100vw - 32px);
    font-size: 24px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: calc(100vw - 36px);
    margin-inline: auto;
    font-size: 21px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .section-head {
    max-width: 100%;
    overflow: hidden;
  }

  .hero p,
  .section-head .lead {
    max-width: calc(100vw - 36px);
  }

  .lead,
  p,
  li,
  .field input,
  .field select,
  .field textarea {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  section {
    padding: 50px 0;
  }

  .form-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card strong {
    word-break: break-all;
  }
}
