:root{
  --bg: #F2E9DE;
  --panel: #ffffff;
  --text: #1F2A36;
  --muted: #55606c;
  --line: rgba(31,42,54,.14);
  --accent: #8A8F85;
  --shadow: 0 10px 30px rgba(31,42,54,.12);
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1000px 600px at 20% 10%, rgba(31,42,54,.06), transparent 50%),
              radial-gradient(800px 500px at 90% 30%, rgba(138,143,133,.12), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

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

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(242,233,222,.92);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand__mark{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 300deg, #e20000 0 300deg, var(--bg) 300deg 360deg);
  border: none;
  display: inline-block;
  position: relative;
  box-shadow: 0 4px 12px rgba(31,42,54,.08);
}
.brand__mark::after{
  content: none;
}
.brand__name{ opacity: .95; }

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__link{
  opacity: .92;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav__link:hover{
  border-color: var(--line);
  background: rgba(31,42,54,.05);
}
.nav__cta{
  border-color: rgba(138,143,133,.6);
  background: rgba(138,143,133,.16);
}
.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.05);
}
.nav__toggleLine{
  display: block;
  height: 2px;
  width: 18px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
}

/* Hero */
.hero{
  padding: 48px 0 22px;
}
.hero__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: stretch;
}
.eyebrow{
  margin: 0 0 10px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.h1{
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin: 0 0 14px;
}
.lead{
  margin: 0 0 18px;
  color: var(--text);
  max-width: 56ch;
}
.hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 12px;
}
.hero__actions--center{
  justify-content: center;
}
.hero__bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}
.chip{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.05);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .01em;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(138,143,133,.6);
  background: rgba(138,143,133,.16);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(138,143,133,.22); }
.btn--ghost{
  border: 1px solid var(--line);
  background: rgba(31,42,54,.05);
}
.btn--ghost:hover{ background: rgba(31,42,54,.09); }

/* Card / Panels */
.card, .panel{
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card__title{
  margin: 0 0 8px;
  font-size: 18px;
}
.card__text{
  margin: 0 0 14px;
  color: var(--muted);
}
.card__meta{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(31,42,54,.04);
}
.card__link{
  margin-top: 14px;
  font-weight: 800;
  color: var(--accent);
}

/* Hero profile */
.hero__profile{
  align-self: center;
}
.profile{
  padding: 0;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  cursor: pointer;
}
.profile:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.profile__inner{
  position: relative;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform .5s ease;
}
.profile:not(.is-flipped):hover .profile__inner{
  transform: rotateY(-6deg);
}
.profile.is-flipped .profile__inner{
  transform: rotateY(180deg);
}
.profile__face{
  padding: 18px;
  backface-visibility: hidden;
  border-radius: inherit;
  min-height: 180px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.profile__front{
  grid-template-columns: auto 1fr;
  gap: 14px;
}
.profile__back{
  position: absolute;
  inset: 0;
  display: grid;
  gap: 8px;
  place-items: center;
  text-align: center;
  transform: rotateY(180deg);
  background: var(--panel);
}
.profile__photo{
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(31,42,54,.12);
}
.profile__name{
  margin: 0 0 4px;
  font-size: 20px;
}
.profile__role{
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .01em;
}
.profile__bio{
  margin: 0;
  color: var(--text);
}
.profile__hint{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.profile__label{
  margin: 0;
  font-weight: 800;
  color: var(--muted);
}
.profile__contact{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}
.profile__note{
  margin: 0;
  color: var(--muted);
}

/* Sections */
.section{ padding: 44px 0; }
.section__head{
  margin-bottom: 16px;
}
.h2{ margin: 0 0 6px; font-size: 26px; }
.h3{ margin: 0 0 10px; font-size: 18px; }
.muted{ color: var(--muted); }

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

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

/* Services */
.service{
  display: grid;
  gap: 10px;
}
.service__icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(31,42,54,.05);
  border: 1px solid var(--line);
  font-size: 18px;
}

/* Offers */
.offer{
  display: grid;
  gap: 12px;
}
.offer__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.offer__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.offer__price{
  margin: 0;
  font-weight: 800;
  color: var(--text);
}
.badge{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,42,54,.05);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
}
.badge--accent{
  background: rgba(138,143,133,.2);
  border-color: rgba(138,143,133,.7);
  color: var(--text);
}
.offer--accent{
  border: 1px solid rgba(138,143,133,.7);
  box-shadow: 0 16px 40px rgba(31,42,54,.08);
}

/* Steps */
.steps{
  display: grid;
  gap: 12px;
}
.step{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.03);
}
.step__number{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(138,143,133,.2);
  border: 1px solid rgba(138,143,133,.6);
  font-weight: 900;
}

/* Highlights */
.highlights{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.highlight{
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.03);
  text-align: center;
}
.highlight__value{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}
.highlight__label{
  margin: 4px 0 0;
  color: var(--muted);
}

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.shot{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.03);
  cursor: pointer;
}
.shot img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .18s ease;
}
.shot:hover img{ transform: scale(1.02); }

/* FAQ */
.faqGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.faq{
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.03);
  padding: 12px 14px;
}
.faq summary{
  cursor: pointer;
  font-weight: 800;
}
.faq p{
  margin: 10px 0 0;
  color: var(--text);
}

/* Contact */
.contactCards{
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}
.contactCard{
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.03);
}
.contactCard:hover{ background: rgba(31,42,54,.08); }
.contactCard__label{ color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.contactCard__value{ font-weight: 800; }

.note{
  margin-top: 14px;
  border: 1px dashed rgba(31,42,54,.22);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(31,42,54,.04);
}
.note__title{ margin: 0 0 6px; font-weight: 900; }
.note__text{ margin: 0; color: var(--muted); }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

/* Form */
.form{ display: grid; gap: 12px; }
.field{ display: grid; gap: 6px; }
label{ font-weight: 800; }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.03);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(138,143,133,.7);
  box-shadow: 0 0 0 4px rgba(138,143,133,.16);
}
.error{
  color: var(--accent);
  min-height: 16px;
}
.form__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form__hint{ margin: 0; font-size: 13px; }

/* Preview modal-like */
.preview{
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(31,42,54,.18);
  background: rgba(31,42,54,.06);
  overflow: hidden;
}
.preview__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(31,42,54,.12);
}
.preview__title{ margin: 0; font-weight: 900; }
.preview__close{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.05);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
}
.preview__body{
  margin: 0;
  padding: 12px;
  white-space: pre-wrap;
  color: var(--text);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(31,42,54,.76);
  display: grid;
  place-items: center;
  padding: 22px;
}
.lightbox[hidden]{ display: none; }
.lightbox__img{
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(31,42,54,.18);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(31,42,54,.05);
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0 26px;
  background: rgba(242,233,222,.88);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

/* Responsive */
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .faqGrid{ grid-template-columns: 1fr; }
  .highlights{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px){
  .footer__inner{ flex-direction: column; text-align: center; }
  .hero{ padding-top: 38px; }
  .hero__inner{ gap: 16px; }
  .hero__content{ text-align: center; }
  .hero__actions{ justify-content: center; }
  .hero__bullets{ text-align: left; display: inline-block; }
  .chips{ justify-content: center; }

  .profile{
    text-align: center;
  }
  .profile__photo{ width: 140px; height: 140px; }

  .section__head{ text-align: center; }

  .gallery{ grid-template-columns: 1fr; }
  .shot img{ height: 240px; }
  .grid--3{ grid-template-columns: 1fr; }
  .highlights{ grid-template-columns: 1fr; }

  .nav__toggle{ display: inline-block; }
  .nav{
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    padding: 14px;
    background: rgba(11,12,16,.92);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 10px;
  }
  .nav.is-open{ display: flex; }
  .nav__link{ width: 100%; text-align: center; }
}
