:root {
  --bg: #f4efe6;
  --surface: #fffaf2;
  --surface-strong: #7f1317;
  --surface-deep: #42090c;
  --text: #241715;
  --muted: #6c5855;
  --line: rgba(127, 19, 23, 0.14);
  --gold: #cba35e;
  --gold-soft: rgba(203, 163, 94, 0.2);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(77, 14, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(203, 163, 94, 0.2), transparent 28%),
    linear-gradient(180deg, #fbf7ef 0%, #f7efe2 52%, #f3e6d5 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 239, 226, 0.88);
  border-bottom: 1px solid rgba(127, 19, 23, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand-mark {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.84);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(127, 19, 23, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 17px;
}

.brand-text span {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(127, 19, 23, 0.18);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
}

.hero {
  padding: 88px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 36px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.service-card,
.showcase-card,
.coverage-panel,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  background: rgba(255, 250, 242, 0.82);
  border-radius: 32px;
  padding: 48px;
}

.kicker,
.section-tag,
.card-label {
  margin: 0 0 14px;
  color: #91692d;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(46px, 7vw, 78px);
  max-width: 11ch;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 12ch;
}

h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.hero-text,
.section-heading p,
.about-copy p,
.reason p,
.coverage-grid p,
.contact-grid p,
.service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #bb1b22, #7f1317);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(155deg, #8e151a, #6b1014 65%, #42090c);
  color: var(--white);
  border-radius: 32px;
  padding: 34px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-logo-wrap {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 32px;
  padding: 14px;
  margin-bottom: 10px;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.metric {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.metric:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.metric span,
.contact-item span,
.coverage-panel span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.metric strong {
  font-size: 22px;
  line-height: 1.35;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: rgba(255, 250, 242, 0.7);
  border-block: 1px solid rgba(127, 19, 23, 0.08);
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(127, 19, 23, 0.97), rgba(66, 9, 12, 0.98)),
    var(--surface-strong);
  color: var(--white);
}

.about-grid,
.coverage-grid,
.contact-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 8px;
}

.highlights-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  padding: 24px;
}

.highlight-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #91692d;
  font-weight: 700;
}

.highlight-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1.05;
}

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

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

.service-card {
  background: rgba(255, 250, 242, 0.92);
  border-radius: 24px;
  padding: 28px;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(187, 27, 34, 0.12), rgba(203, 163, 94, 0.22));
  margin-bottom: 18px;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: #8a1418;
  stroke: #8a1418;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.service-icon .icon-stroke {
  fill: none;
}

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

.showcase-card {
  background: rgba(255, 250, 242, 0.92);
  border-radius: 24px;
  padding: 28px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.showcase-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.showcase-head .service-icon {
  margin-bottom: 0;
}

.showcase-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.showcase-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
}

.showcase-link {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 8px;
  color: #8a1418;
  font-weight: 700;
}

.showcase-link::after {
  content: ">";
  font-size: 18px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.gallery-modal.is-open {
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 11, 12, 0.72);
}

.gallery-dialog {
  position: relative;
  width: min(1120px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  border-radius: 28px;
  background: #fffaf2;
  border: 1px solid rgba(127, 19, 23, 0.14);
  box-shadow: var(--shadow);
  overflow: auto;
  padding: 28px;
}

.gallery-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.gallery-close {
  border: 1px solid rgba(127, 19, 23, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}

.gallery-panel {
  display: none;
}

.gallery-panel.is-active {
  display: block;
}

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

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.reasons-list {
  display: grid;
  gap: 22px;
}

.reason {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.reason:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.reason p {
  color: rgba(255, 255, 255, 0.74);
}

.coverage-panel {
  display: grid;
  gap: 18px;
  background: rgba(255, 250, 242, 0.96);
  border-radius: 28px;
  padding: 28px;
}

.coverage-panel div {
  padding: 18px 0;
  border-top: 1px solid rgba(127, 19, 23, 0.1);
}

.coverage-panel div:first-child {
  padding-top: 0;
  border-top: 0;
}

.coverage-panel span {
  color: #91692d;
}

.coverage-panel strong {
  font-size: 26px;
  font-family: "Cormorant Garamond", serif;
}

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

.client-intro,
.client-logo-card {
  min-height: 190px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(155deg, #8e151a, #6b1014 65%, #42090c);
  color: var(--white);
}

.client-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #91692d;
  font-weight: 700;
}

.client-intro .client-label {
  color: rgba(255, 255, 255, 0.72);
}

.client-intro p {
  margin: 0;
  line-height: 1.8;
}

.client-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.client-logo-card {
  align-items: center;
  text-align: center;
  color: var(--text);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
  margin-bottom: 18px;
}

.client-logo-card span {
  color: var(--muted);
  font-weight: 700;
}

.client-logo-card-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
}

.client-logo-card-text span {
  color: #8a1418;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.address-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
  padding: 28px;
}

.address-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #91692d;
  font-weight: 700;
}

.address-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #1e9e57;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(30, 158, 87, 0.28);
  font-weight: 700;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-icon .icon-stroke {
  fill: none;
}

.contact-section {
  padding-bottom: 100px;
}

.contact-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 235, 0.92));
  border-radius: 28px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-item {
  display: block;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(127, 19, 23, 0.08);
}

.contact-item span {
  color: #91692d;
}

.contact-item strong {
  font-size: 24px;
  line-height: 1.4;
}

.inquiry-form {
  margin-top: 8px;
  display: grid;
  gap: 18px;
}

.form-hidden {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #91692d;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(127, 19, 23, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.site-footer {
  background: #4a0c0f;
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .coverage-grid,
  .contact-grid,
  .reasons-grid,
  .card-grid,
  .showcase-grid,
  .highlights-grid,
  .clients-grid,
  .address-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  h2 {
    max-width: none;
  }

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

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(127, 19, 23, 0.08);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    color: var(--text);
  }

  .hero {
    padding-top: 56px;
  }

  .hero-copy,
  .hero-card,
  .service-card,
  .showcase-card,
  .client-intro,
  .client-logo-card,
  .coverage-panel,
  .contact-card {
    border-radius: 24px;
  }

  .hero-copy {
    padding: 30px 24px;
  }

  .hero-card,
  .service-card,
  .showcase-card,
  .client-intro,
  .client-logo-card,
  .coverage-panel,
  .contact-card {
    padding: 24px;
  }

  .button {
    width: 100%;
  }

  .showcase-preview {
    grid-template-columns: 1fr;
  }

  .gallery-dialog {
    padding: 22px;
  }

  .gallery-header {
    flex-direction: column;
  }

  .client-logo-card img {
    max-height: 72px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav-wrap {
    padding: 14px 0;
  }

  .brand-text span {
    font-size: 12px;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .brand {
    gap: 10px;
  }

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

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero-logo-wrap {
    width: 150px;
    height: 150px;
  }

  .hero-actions {
    gap: 10px;
  }

  .section {
    padding: 64px 0;
  }

  .showcase-card,
  .client-intro,
  .client-logo-card,
  .service-card,
  .coverage-panel,
  .contact-card {
    padding: 20px;
  }

  .showcase-preview img {
    height: 132px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .client-logo-card {
    min-height: 154px;
  }

  .client-logo-card img {
    max-height: 58px;
    margin-bottom: 14px;
  }

  .client-logo-card span {
    font-size: 14px;
  }

  .gallery-dialog {
    width: min(100% - 16px, 1120px);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
    padding: 18px;
    border-radius: 20px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-grid img {
    height: 200px;
    border-radius: 14px;
  }

  .gallery-close {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    gap: 8px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .footer-wrap {
    flex-direction: column;
  }

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