:root {
  --brown: #7a5a43;
  --brown-2: #a88974;
  --brown-3: #b59886;
  --text: #3e3e3e;
  --muted: #7c7c7c;
  --card: #f4f4f4;
  --line: #e7e7e7;
  --max: 1100px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 60px 0
}

.section-tight {
  padding: 40px 0
}

.topbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  padding: 18px 0;
}

.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brandMark {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .65);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
}

.nav a {
  opacity: .85
}

.nav a:hover {
  opacity: 1
}

.nav a.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px
}

.hero {
  position: relative;
  min-height: 260px;
  background: #000;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(122, 90, 67, .72);
  z-index: 1;
}

/* Hero Carousel */
.heroCarousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.heroSlide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.heroSlide.active {
  opacity: 1;
}

.heroInner {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 90px 0 42px;
}

.heroTitle {
  color: #fff;
  font-weight: 300;
  font-size: 44px;
  letter-spacing: .02em;
}

.heroHome {
  min-height: 700px;
}

.heroHome .heroInner {
  min-height: 520px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 90px;
}

.logoWord {
  color: #fff;
  font-weight: 300;
  font-size: 64px;
  letter-spacing: .18em;
}

.logoWord .a {
  display: inline-block;
  transform: translateY(-2px)
}

.subLogo {
  margin-top: 10px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.btnGhost {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.btnGhost:hover {
  background: rgba(255, 255, 255, .12)
}

.homeIntro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding-top: 0;
}

.circleWrap {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -60px;
  background: #ddd;
}

.circleWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.homeCopy h2 {
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 16px;
  color: #6c6c6c;
}

.homeCopy p {
  margin: 0 0 16px;
  color: #8a8a8a;
  line-height: 1.65;
  font-size: 13px;
  max-width: 520px;
}

.iconGrid {
  background: var(--brown-3);
  padding: 0;
}

.iconGrid .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255, 255, 255, .25);
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.iconCell {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .92);
  border-right: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  gap: 10px;
  text-align: center;
  padding: 18px;
}

.iconCell span {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: none;
  opacity: .95;
}

.icon {
  width: 34px;
  height: 34px;
  opacity: .9;
}

.mission {
  text-align: center;
}

.mission h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 26px;
}

.mission .small {
  margin-top: 10px;
  color: #666;
  font-size: 12px;
  letter-spacing: .08em;
}

.mission .big {
  margin-top: 14px;
  font-weight: 300;
  font-size: 34px;
  color: #6c6c6c;
}

.mission .btn {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 26px;
  border: 1px solid #d6d6d6;
  color: #8a8a8a;
  font-size: 12px;
  border-radius: 2px;
  background: #fff;
}

.mission .btn:hover {
  background: #fafafa
}

.contactBand {
  background: var(--brown-2);
  padding: 42px 0;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}

.contactLeft {
  color: rgba(255, 255, 255, .95);
  padding-top: 34px;
}

.contactLeft h4 {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 14px;
}

.contactItem {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 13px;
  opacity: .95;
}

.hrLine {
  height: 1px;
  background: rgba(255, 255, 255, .25);
  margin: 22px 0 18px;
}

.socialRow {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 12px;
}

.socialBox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  color: #fff;
}

.pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  color: #8a8a8a;
  font-size: 11px;
  letter-spacing: .06em;
}

.socialName {
  font-weight: 600;
  letter-spacing: .02em;
}

.formCard {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.formGrid label {
  display: block;
  font-size: 12px;
  color: #777;
  margin: 10px 0 6px;
  font-weight: 600;
}

.formGrid input,
.formGrid textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  font-size: 13px;
  outline: none;
}

.formGrid textarea {
  min-height: 120px;
  resize: vertical
}

.req {
  color: #d04b4b
}

.submitBtn {
  margin-top: 14px;
  padding: 10px 18px;
  border: 2px solid var(--brown);
  background: transparent;
  color: var(--brown);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
}

.submitBtn:hover {
  background: rgba(122, 90, 67, .08)
}

.footer {
  background: var(--brown);
  padding: 34px 0 42px;
  text-align: center;
  color: #fff;
}

.footerLogo {
  font-weight: 300;
  font-size: 40px;
  letter-spacing: .20em;
  margin: 0;
}

.footerLinks {
  margin-top: 18px;
  font-size: 11px;
  opacity: .85;
}

.footerLinks a {
  text-decoration: underline;
  text-underline-offset: 3px
}

.footerLinks a:hover {
  opacity: 1
}

.pageTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(90, 90, 90, .4);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  z-index: 50;
}

.pageTop:hover {
  background: #fff
}

.servicesTitle {
  text-align: center;
  padding-top: 36px;
}

.servicesTitle h2 {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6c6c6c;
}

.servicesTitle p {
  margin: 10px 0 0;
  color: #8a8a8a;
  font-size: 12px;
}

.serviceList {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.serviceRow {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: 10px;
}

.serviceImg {
  border-radius: 10px;
  overflow: hidden;
  height: 150px;
}

.serviceImg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.serviceBody {
  padding-right: 10px;
}

.serviceBody h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .10em;
  color: #4a4a4a;
  text-transform: uppercase;
}

.serviceBody p {
  margin: 0;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.65;
  max-width: 640px;
}

.bigBlocks {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bigBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  background: #f6f6f6;
  border-radius: 8px;
  overflow: hidden;
}

.bigText {
  padding: 38px
}

.bigText h3 {
  margin: 0 0 14px;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6c6c6c;
}

.bigText p {
  margin: 0;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.7;
}

.bigImg {
  height: 220px;
}

.bigImg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.aboutWrap {
  padding-top: 40px;
}

.aboutCard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border-radius: 10px;
}

.aboutImg {
  border-radius: 10px;
  overflow: hidden;
  height: 340px;
}

.aboutImg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.aboutText p {
  margin: 0 0 16px;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.7;
}

.pricingWrap {
  text-align: center;
  padding-top: 30px;
}

.pricingWrap .cap {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin: 0;
}

.pricingWrap h2 {
  margin: 14px 0 10px;
  font-weight: 300;
  letter-spacing: .12em;
  color: #6c6c6c;
}

.pricingWrap p {
  margin: 0 auto;
  max-width: 640px;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1.7;
}

.pricingCards {
  margin-top: 26px;
  background: #f3f3f3;
  padding: 24px;
}

.cardsRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pCard {
  background: #efefef;
  border-radius: 8px;
  padding: 18px 16px;
  text-align: left;
  min-height: 92px;
}

.pCard .t {
  font-size: 12px;
  color: #6f6f6f;
  margin-top: 10px;
}

.pCard .s {
  font-size: 11px;
  color: #9a9a9a;
  margin-top: 6px;
}

.additional {
  text-align: left;
  margin-top: 30px;
}

.additional h3 {
  font-weight: 300;
  color: #7c7c7c;
  margin: 0 0 14px;
}

.addGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}

.addBoxTitle {
  background: #eaeaea;
  padding: 14px 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6c6c6c;
}

.addPrice {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: #6c6c6c;
}

.bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #8a8a8a;
  font-size: 12px;
  line-height: 1.7;
}

.bullets li {
  margin: 10px 0
}

.addImg {
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
}

.addImg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.stackList {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 22px;
  align-items: start;
}

.stackLeft .stackItem {
  background: #eaeaea;
  padding: 14px 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6c6c6c;
  margin-bottom: 14px;
}

.stackLeft .stackSub {
  margin: -6px 0 14px 0;
  color: #9a9a9a;
  font-size: 12px;
}

.note {
  margin-top: 16px;
  color: #9a9a9a;
  font-size: 12px;
}

.optionalBar {
  margin-top: 30px;
  background: var(--brown);
  color: #fff;
  padding: 12px 16px;
  width: 240px;
  font-weight: 600;
}

.optionalItem {
  margin-top: 14px;
}

.optionalItem .title {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .06em;
  color: #6c6c6c;
}

.optionalItem .desc {
  margin-top: 8px;
  color: #9a9a9a;
  font-size: 12px;
}

/* ========== FAQs Styles ========== */
.faqsWrap {
  max-width: 800px;
  margin: 0 auto;
}

.faqItem {
  border-bottom: 1px solid #e5e5e5;
  padding: 24px 0;
}

.faqItem:first-child {
  padding-top: 0
}

.faqItem:last-child {
  border-bottom: none
}

.faqQuestion {
  font-weight: 600;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 12px;
  cursor: pointer;
}

.faqAnswer {
  color: #8a8a8a;
  font-size: 13px;
  line-height: 1.7;
}

/* ========== Menu Toggle (hamburger) ========== */
.menuToggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .65);
  color: #fff;
  font-size: 18px;
  padding: 6px 10px;
  cursor: pointer;
  z-index: 100;
}

.menuToggle:hover {
  background: rgba(255, 255, 255, .1)
}

/* ========== Responsive: Tablet ========== */
@media (max-width: 980px) {
  .homeIntro {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .circleWrap {
    margin: 0 auto;
    width: 360px;
    height: 360px
  }

  .iconGrid .grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .bigBlock,
  .aboutCard {
    grid-template-columns: 1fr
  }

  .bigBlock {
    flex-direction: column
  }

  .bigImg {
    height: 200px;
    order: -1
  }

  .cardsRow {
    grid-template-columns: 1fr 1fr
  }

  .addGrid,
  .stackList {
    grid-template-columns: 1fr
  }

  .addImg {
    height: 200px;
    margin-top: 20px
  }

  .serviceRow {
    grid-template-columns: 1fr
  }

  .serviceImg {
    height: 190px
  }

  .contactGrid {
    grid-template-columns: 1fr
  }

  .contactLeft {
    padding-top: 0
  }

  .aboutCard {
    gap: 30px
  }

  .aboutImg {
    height: 280px
  }

  .homeCopy {
    text-align: center
  }

  .homeCopy p {
    margin-left: auto;
    margin-right: auto
  }
}

/* ========== Responsive: Mobile ========== */
@media (max-width:768px) {
  .menuToggle {
    display: block
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(122, 90, 67, .98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 90;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    opacity: 1;
    padding: 8px 16px
  }

  .navwrap {
    position: relative;
    z-index: 100
  }

  .heroHome {
    min-height: 420px
  }

  .heroHome .heroInner {
    min-height: 420px;
    padding: 100px 0 60px
  }

  .logoWord {
    font-size: 38px;
    letter-spacing: .12em
  }

  .subLogo {
    font-size: 10px;
    letter-spacing: .18em
  }

  .heroInner {
    padding: 80px 0 32px
  }

  .heroTitle {
    font-size: 28px
  }

  .section {
    padding: 40px 0
  }

  .section-tight {
    padding: 28px 0
  }

  .circleWrap {
    width: 280px;
    height: 280px
  }

  .iconGrid .grid {
    grid-template-columns: 1fr 1fr
  }

  .iconCell {
    min-height: 120px;
    padding: 14px
  }

  .iconCell span {
    font-size: 10px
  }

  .icon {
    width: 28px;
    height: 28px
  }

  .mission h3 {
    font-size: 20px
  }

  .mission .big {
    font-size: 24px
  }

  .contactBand {
    padding: 32px 0
  }

  .formCard {
    padding: 18px
  }

  .formGrid textarea {
    min-height: 100px
  }

  .pricingCards {
    padding: 16px
  }

  .cardsRow {
    grid-template-columns: 1fr
  }

  .pCard {
    min-height: auto;
    padding: 14px
  }

  .additional h3 {
    font-size: 18px
  }

  .addBoxTitle {
    font-size: 13px;
    padding: 12px
  }

  .bullets {
    font-size: 11px
  }

  .optionalBar {
    width: 100%
  }

  .footer {
    padding: 28px 0 34px
  }

  .footerLogo {
    font-size: 32px
  }

  .faqQuestion {
    font-size: 13px
  }

  .faqAnswer {
    font-size: 12px
  }

  .faqItem {
    padding: 18px 0
  }
}

/* ========== Responsive: Small Mobile ========== */
@media (max-width:480px) {
  .container {
    padding: 0 16px
  }

  .logoWord {
    font-size: 32px
  }

  .subLogo {
    font-size: 9px
  }

  .btnGhost {
    padding: 8px 18px;
    font-size: 11px
  }

  .heroTitle {
    font-size: 24px
  }

  .homeCopy h2 {
    font-size: 14px
  }

  .homeCopy p {
    font-size: 12px
  }

  .circleWrap {
    width: 240px;
    height: 240px
  }

  .iconGrid .grid {
    grid-template-columns: 1fr
  }

  .iconCell {
    min-height: 100px
  }

  .mission .big {
    font-size: 20px
  }

  .socialRow {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start
  }

  .serviceBody h3 {
    font-size: 11px
  }

  .serviceBody p {
    font-size: 11px
  }

  .bigText {
    padding: 24px
  }

  .bigText h3 {
    font-size: 14px
  }

  .bigText p {
    font-size: 11px
  }

  .aboutText p {
    font-size: 11px
  }

  .aboutImg {
    height: 220px
  }

  .footerLogo {
    font-size: 28px
  }

  .footerLinks {
    font-size: 10px
  }

  .pageTop {
    width: 30px;
    height: 30px;
    font-size: 14px;
    right: 12px;
    bottom: 12px
  }
}