@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --gold: #BC862D;
  --ink: #111820;
  --muted: #73767a;
  --line: #e9e9e7;
  --cream: #fff7ec;
  --radius: 14px;
  --wrap: 1440px;
  --container-inline: clamp(1.75rem, 2.777vw, 2.5rem);
  --section-block: clamp(3.125rem, 6.666vw, 6rem);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
  --space-6: 1.875rem;
  --space-7: 2.25rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 6rem;
  --font-body: clamp(0.9375rem, 0.9rem + 0.12vw, 1rem);
  --font-h1: clamp(2.625rem, 5vw, 5.125rem);
  --font-h2: clamp(2rem, 4vw, 2.625rem);
  --font-h3: clamp(1.25rem, 2.25vw, 2.125rem);
  --font-control: clamp(0.9375rem, 0.9rem + 0.12vw, 1rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(var(--wrap), calc(100% - var(--container-inline)));
  margin: auto;
}

.section {
  padding: var(--section-block) 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  font-size: 27px;
  line-height: 1.13;
  margin-bottom: 12px;
}

.eyebrow {
  display: block;
  width: max-content;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
}

.eyebrow:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 7px;
  margin-right: 7px;
  background: var(--gold);
  border-radius: 8px 8px 2px 8px;
}

.pill {
  gap: 9px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
}

.pill span,
.pill b {
  color: var(--gold);
  font-size: 16px;
}

.pill.white {
  background: #fff;
  color: #181818;
}

.pill.gold {
  background: var(--gold);
  color: #fff;
}

.pill.gold span {
  color: #fff;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 17px;
  left: 2%;
  right: 2%;
  height: 55px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 20px #0003;
  background: #FFFFFF;
  border-radius: 25px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 27px;
  border-left: 5px solid var(--gold);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: auto;
}

.main-nav>a,
.nav-item>button {
  padding: 9px 3px;
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #000000;
}

.header-right a img {
  width: 24px;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 155px;
  padding: 7px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px #0002;
}

.dropdown a {
  display: block;
  padding: 8px;
  border-radius: 5px;
  font-size: 16px;
}

.dropdown a:hover {
  background: #f8f3ea;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  white-space: nowrap;
}

.header-right .outline-button {

  display: flex;
  align-items: center;
  gap: 10px;
}

img.btn-icon-img {
  width: 42px;
}


img.arrow-icon-img {
  width: 24px;
}

.pill.faq-btn-cm {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 12px 10px 20px;
  background: linear-gradient(0deg, #BC862D, #BC862D), #FFE661;
  border-radius: 99px;
  color: #fff;
  width: max-content;
}

.outline-button {
  box-sizing: border-box;
  padding: 12px 10px 12px 20px;
  background: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 99px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.outline-button span {
  color: var(--gold);
  font-size: 16px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 565px;
  padding: 135px 0 85px;
  color: #fff;
  background:
    linear-gradient(90deg,
      #050607 3%,
      rgba(5, 6, 7, 0.87) 32%,
      rgba(5, 6, 7, 0.18) 68%),
    url("../img/hero-img-bg.webp") center/cover;
}

.hero-copy {
  padding-left: 0;
}

.hero h1 {
  font-size: var(--font-h1);
  font-style: normal;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0px;
}

.hero h1 em {
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.25rem, 6.944vw, 6.25rem);
  display: flex;
  align-items: center;
  color: var(--gold);

}

.hero p {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 48px;
  color: #E4E4E7;
}

.button-row {
  display: flex;
  gap: 13px;
  margin-top: 24px;
}

.logo img {
  width: 100px;
}

.hero-btn img {
  width: 30px;
  height: 30px;
}

.floating-contact {
  position: absolute;
  right: 19px;
  bottom: 42px;
  display: grid;
  gap: 7px;
}

.floating-contact a {
  display: grid;
  place-items: center;
}

.trust-strip {
  padding: 29px 0;
  background: #0A0E14;
  color: #fff;
}

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

.trust-grid article {
  display: flex;
  gap: 11px;
}

.trust-grid i {
  color: var(--gold);
  font-size: 21px;
  font-style: normal;
}

.trust-grid h2 {
  margin: 0 0 3px;
  font-size: 16px;
  color: #fff;
}

.trust-grid p {
  margin: 0;
  color: #aeb3b7;
  font-size: 16px;
  line-height: 1.45;
}

.lead-strip {
  padding: 34px 0 24px;
}

.lead-form {
  box-shadow: 0 4px 12px #00000008;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #DDDCDC;
  border-radius: 16px;
}

.lead-form h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  color: #000000;
}

.lead-form>div {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 1fr 1fr 1.1fr 1.7fr 0.9fr;
  gap: 7px;
}

.lead-form input,
.lead-form select {
  border: 1px solid #eee;
  flex-direction: row;
  justify-content: center;
  background: #F3F3F3;
  border-radius: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #6B7280;
}

.lead-form button,
.booking-form button {
  border: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  background: #BC862D;
  border-radius: 25px;
  flex-grow: 0;
}

.form-note {
  margin: 5px 0 0;
  color: var(--gold);
  font-size: 16px;
}

.intro {
  padding-top: 48px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  gap: 26px 47px;
  align-items: start;
}

.intro-copy h2 {
  font-size: 26px;
}


.phone-block {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  width: max-content;
  margin: 24px 0 55px;
}

.gold-square {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
}

.phone-block small {
  font-size: 16px;
}

.phone-block strong {
  font-size: 16px;
}

.intro-image {
  height: 395px;
  border-radius: 10px;
}

.feature {
  display: flex;
  gap: 13px;
  min-height: 84px;
  padding: 19px 22px;
  background: #fafafa;
}

.feature i {
  color: var(--gold);
  font-style: normal;
  font-size: 22px;
}


.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.services {
  padding-top: 12px;
}

.services h2 {
  margin-bottom: 25px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-grid article {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(243, 246, 255, 0.46);
  border: 1px solid #C3CFF2;
  border-radius: 16px;
  padding: 34px;
  gap: 34px;
}

.service-grid article>div {
  display: flex;
  flex-direction: column;
}

.service-grid img {
  height: 100%;
}

.service-grid h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: #000000;
}

.service-grid p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #707070;
}

.view-details-btn {
  margin-top: auto;
  padding: 12px 10px 12px 20px;
  background: #FFFFFF;
  border: 1px solid #C3CFF2;
  border-radius: 99px;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.view-details-btn img {
  width: 24px !important;
  height: 24px !important;
}

.service-grid b {
  color: var(--gold);
  font-size: 16px;
}

.pricing {
  position: relative;
  padding: 66px 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.38), rgba(7, 9, 11, 0.18)),
    url("../img/price-section.webp") center / cover no-repeat;
  color: #fff;
}

.pricing h2,
.gold-band h2 {
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 72px;
}

.pricing-grid>div>p {
  max-width: 660px;
  color: #ccc;
  font-size: 16px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 23px;
}

.price-grid p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #474747;
  box-sizing: border-box;
  padding: 12px 0px 0px;
  border-top: 1px solid #E5E7EB;
  margin-top: 15px;
  margin-bottom: 0px;
}

.price-grid article {
  position: relative;
  background: #fff;
  color: var(--ink);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.price-grid article em {
  position: absolute;
  top: -1px;
  right: 0;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  padding: 4px 16px;
  background: #C28128;
  border-radius: 0px 20px 0px 8px;
  z-index: 4;
}

.price-head {
  display: flex;
  gap: 9px;
  align-items: center;
}

.price-head>span {
  color: var(--gold);
  font-size: 20px;
}

.price-head b {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.price-head small {
  font-size: 16px;
}

.price-grid ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}

.price-grid li {
  padding: 3px 0;
}

.price-grid li:before {
  content: "◆";
  margin-right: 7px;
  color: var(--gold);
  font-size: 16px;
}

.price-benefits {
  display: flex;
  gap: 35px;
  margin-top: 18px;
  color: #ccc;
  font-size: 16px;
}

.price-benefits span:first-letter {
  color: var(--gold);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.booking-form h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 0px;
}

.booking-form label {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #000000;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  height: 34px;
  margin-top: 4px;
  padding: 7px 9px;
  border: 1px solid #e7e7e7;
  background: #fafafa;
  font-size: 16px;
}

.booking-form textarea {
  height: 48px;
  resize: none;
}

.booking-form button {
  height: 37px;
  margin-top: 3px;
}

.doors {
  position: relative;
  padding: 48px 0 63px;
  overflow: hidden;
}

.door-track {
  display: flex;
  gap: 16px;
  width: calc(100% + 120px);
  transform: translateX(18px);
  transition: transform 0.35s;
}

.door-track article {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  color: #fff;
}

.door-track img {
  height: 100%;
  opacity: 0.78;
}

.door-track article>div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 55px 18px 17px;
  background: linear-gradient(transparent, #070707e8);
}

.door-track h3 {
  margin-bottom: 5px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px !important;
  line-height: 1.2;
  color: #FFFFFF;
}

.door-track p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.slider-buttons {
  position: absolute;
  bottom: 17px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-buttons button {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.3fr;
  gap: 65px;
}

.faq-grid>div>p {
  color: var(--muted);
  font-size: 16px;
}

.faq aside {
  width: 300px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 7px;
  background: #fff;
}

.faq aside i {
  color: var(--gold);
}

.faq aside h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #010101;
  margin-top: 15px;
}

.faq aside p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #707070;
}

.faq-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 15px;
  background: rgba(255, 230, 97, 0.2);
  border-radius: 9999px;
  width: max-content;
}

.faq-tabs button,
.gallery-tabs button {
  padding: 7px 13px;
  border: 0;
  background: none;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #374151;
}

.faq-tabs button.active,
.gallery-tabs button.active {
  color: #fff;
  background: linear-gradient(0deg, #BC862D, #BC862D), rgba(255, 255, 255, 0.002);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
}

.accordion article {
  border-bottom: 1px solid #d8d3ca;
}

.accordion button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #222222;
}

.accordion p {
  display: none;
  margin: -5px 0 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #707070;
}

.accordion article.open p {
  display: block;
}

.gallery>div>p {
  color: var(--muted);
  font-size: 16px;
}

.gallery-tabs {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.gallery-tabs button {
  background: #f4f4f4;
}

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

.gallery-grid img {
  height: 100%;
  border-radius: 9px;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(2) {
  grid-column: span 2;
}

.gallery-grid img:nth-child(5) {
  grid-column: span 2;
}

.gallery-grid img.hidden {
  display: none;
}

.city-image {
  display: grid;
  place-items: center;
  height: 355px;
  background: url(../img/location-bg-img.webp) center / cover;
  border-radius: 0px 0px 40px 40px;
}

.location {
  background: var(--gold);
}

span.reveal-item {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
}

.area-list .reveal-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.city-image span {
  font-size: 82px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 3px #fff;
  text-shadow: 0 3px 9px #0006;
}

.gold-band {
  padding: 30px 0 38px;
  border-radius: 0 0 22px 22px;
  background: var(--gold);
  color: #fff;
}

.gold-band h2 {
  font-size: 20px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 17px;
  margin: 13px 0 18px;
  font-size: 16px;
}



.view-all-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  box-sizing: border-box;
  padding: 10px 12px 10px 20px;
  border: 1px solid #ffffff;
  border-radius: 99px;
  width: max-content;
}

.area-list img {
  width: 16px;
}

.view-all-btn img {
  width: 32px;
}

.outline-white {
  border: 1px solid #fff;
  color: #fff;
}

.reviews h2 {
  font-size: 25px;
}

.gold-square svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.review-grid article {
  padding: 23px;
  border-radius: 9px;
  background: #fafafa;
  box-shadow: 0 4px 18px #00000008;
}

.review-grid h3 {
  font-size: 16px;
}

.review-grid p {
  min-height: 100px;
  color: #52565b;
  font-size: 16px;
}

.review-grid footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.review-grid footer em {
  margin-left: auto;
  color: #e8aa27;
  font-style: normal;
}

.avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #222;
  color: #fff;
}

.blog {
  padding-top: 0;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.title-row>a,
.blog-grid>a {
  font-size: 16px;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.blog-grid img {
  height: 165px;
  border-radius: 8px;
}

.blog-grid h3 {
  margin: 13px 0 8px;
  font-size: 16px;
}


.blog-grid a {
  font-size: 16px;
  font-weight: 700;
}

/* Readable typography and expanded component rhythm */
:root {
  --wrap: 1440px;
  --font-body: clamp(0.9375rem, 0.9rem + 0.12vw, 1rem);
}

body,
body * {
  letter-spacing: 0 !important;
}

body {
  font-size: var(--font-body);
  line-height: 1.6;
}

p,
a,
button,
input,
textarea,
select,
label,
li,
span,
small,
em {
  font-size: var(--font-body);
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
}



h2,
.intro-copy h2,
.reviews h2 {
  font-size: var(--font-h2);
  font-style: normal;
  font-weight: 700;
  color: #0F172A;
}

h3,
.door-track h3,
.review-grid h3,
.blog-grid h3 {
  font-size: var(--font-h3);
}

.section {
  padding: var(--section-block) 0;
}

.pill {
  min-height: 48px;
  padding: 10px 22px;
  line-height: 1.3;
}

.site-header {
  height: 68px;
}

.header-inner {
  gap: 20px;
  padding: 0 18px 0 22px;
}

.logo-mark {
  width: 48px;
  height: 34px;
  font-size: 24px;
}

.main-nav {
  gap: 7px;
}

.main-nav>a,
.nav-item>button {
  padding: 10px 5px;
  white-space: normal;
}

.dropdown {
  min-width: 230px;
  padding: 10px;
}

.dropdown a {
  padding: 10px;
}

.hero {
  min-height: 90vh;
  padding: 165px 0 110px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.button-row {
  gap: 16px;
  margin-top: 30px;
}

.trust-strip {
  padding: 38px 0;
}

.trust-grid {
  gap: 30px;
}

.trust-grid h2 {
  font-size: 18px;
  line-height: 1.25;
}

.trust-grid p {
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
}

.lead-strip {
  padding: 48px 0 34px;
}

.lead-form {
  padding: 28px 30px;
}

.lead-form h2 {
  font-size: 24px;
}

.lead-form>div {
  gap: 10px;
}

.lead-form input,
.lead-form select,
.lead-form button {
  min-height: 60px;
  padding: 0 14px;
}

.intro {
  padding: 38px 0 10px;
}

.intro .wrap {
  width: min(1440px, calc(100% - 40px));
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 36px;
}

.intro-copy {
  padding: 4px 20px 0;
}

.intro-copy h2 {
  margin-bottom: 7px;
  font-size: 40px;
  line-height: 1.48;
  letter-spacing: -1.25px !important;
}

.intro-copy p {
  margin-bottom: 0;
  line-height: 1.62;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #4B5563;
}

.phone-block {
  grid-template-columns: 74px 1fr;
}

.gold-square {
  width: 64px;
  height: 64px;
  margin-right: 24px;
  border-radius: 12px;
  font-size: 25px;
}

.phone-block small {
  align-self: end;
  color: #334155;
  font-size: 13px;
  line-height: 1.25;
}

.phone-block strong {
  align-self: start;
  color: #0f172a;
  font-size: 27px;
  line-height: 1.25;
}

.intro-image {
  height: 655px;
  margin-left: 10px;
  width: calc(100% - 10px);
  border-radius: 22px;
  object-position: center;
}

.feature {
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  box-sizing: border-box;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
}

.feature i {
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-top: 8px;
  border-radius: 50%;
  background: #fff7e9;
  font-size: 25px;
}

.feature i svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0F172A;
}

.feature p {
  max-width: 520px;
  color: #303846;
  font-size: 15px;
  line-height: 1.55;
}

.services {
  padding-top: 32px;
}

.services h2 {
  margin-bottom: 34px;
}

.service-grid {
  gap: 20px;
}

.service-grid article {
  min-height: 355px;
}


.service-grid p {
  line-height: 1.6;
}

.pricing {
  padding: 92px 0;
}

.pricing-grid {
  grid-template-columns: 1.55fr 0.85fr;
  gap: 60px;
}

.pricing-grid>div>p {
  max-width: 720px;
}

.price-grid {
  gap: 18px;
  margin-top: 30px;
}

.price-grid article,
.booking-form {
  padding: 26px;
}

.price-head b {
  font-size: 32px;
}

.price-grid li {
  padding: 5px 0;
}

.price-benefits {
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 24px;
}

.booking-form {
  gap: 13px;
}

.booking-form h3 {
  font-size: 28px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  margin-top: 6px;
  align-items: flex-start;
  padding: 10px 12px;
  background: #F3F3F3;
  border-radius: 8px;
  height: 50px;
}

.booking-form textarea {
  height: 76px;
}

.booking-form button {
  height: 48px;
}

.doors {
  padding: 64px 0 80px;
}

.door-track {
  gap: 20px;
  width: calc(100% + 150px);
}

.door-track article {
  flex-basis: calc(25% - 15px);
  height: 520px;
}

.door-track article>div {
  padding: 75px 24px 24px;
}

.slider-buttons button {
  width: 42px;
  height: 42px;
  font-size: 24px;
}

.faq-grid {
  gap: 78px;
}

.faq aside {
  width: 360px;
  padding: 26px;
}

.faq-tabs button,
.gallery-tabs button {
  padding: 10px 18px;
}

.accordion button {
  padding: 22px 0;
}

.accordion p {
  margin: -7px 0 20px;
}

.gallery-tabs {
  gap: 10px;
  margin: 26px 0;
}

.gallery-grid {
  grid-template-rows: 190px 190px;
  gap: 12px;
}

.city-image {
  height: 430px;
}

.city-image span {
  font-size: clamp(3.625rem, 7vw, 6rem);
}

.gold-band {
  padding: 42px 0 48px;
}

.gold-band h2 {
  font-size: 34px;
}

.area-list {
  gap: 10px 22px;
  margin: 18px 0 24px;
}

.review-grid {
  gap: 20px;
  margin-top: 30px;
}

.review-grid article {
  padding: 30px;
}

.review-grid p {
  min-height: 155px;
}

.avatar {
  width: 42px;
  height: 42px;
}

.blog-grid {
  gap: 18px;
  margin-top: 30px;
}

.blog-grid img {
  height: 220px;
}

.gallery {
  padding: 22px 0 58px;
}

.gallery .wrap {
  width: min(1472px, calc(100% - 40px));
}



.gallery h2 {
  max-width: 1100px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.625rem);
  letter-spacing: -1.2px !important;
}

.gallery>.wrap>p {
  max-width: 1000px;
  margin-bottom: 0;
  color: #686c72;
  font-size: 16px;
  line-height: 1.55;
}

.gallery-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: min(540px, 100%);
  margin: 34px 0 30px;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  background: #fff7df;
}

.gallery-tabs button {
  min-height: 50px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111820;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.gallery-tabs button.active {
  background: var(--gold);
  color: #fff;
}

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

.gallery-grid img:nth-child(n) {
  grid-column: auto;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 22px;
  background: #ececec;
  cursor: zoom-in;
  object-fit: cover;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(4) {
  grid-row: 1;
}

.gallery-grid img:nth-child(3) {
  object-position: center 12%;
}

.gallery-grid img:nth-child(5) {
  grid-row: 2;
  grid-column: span 2;
}

.gallery-grid img:nth-child(6),
.gallery-grid img:nth-child(7) {
  grid-row: 2;
}

.gallery-grid img:nth-child(6) {
  object-position: center 83%;
}

.gallery-grid.is-filtered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 263px;
}

.gallery-grid.is-filtered img:nth-child(n) {
  grid-row: auto;
  grid-column: auto;
}

.gallery-grid img.hidden {
  display: none;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  z-index: 2147482000;
  inset: 0;
  display: grid;
  padding: 74px 82px;
  place-items: center;
  background: rgba(5, 7, 9, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-figure {
  display: grid;
  max-width: min(1180px, 100%);
  max-height: 100%;
  margin: 0;
  place-items: center;
}

.gallery-lightbox-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  border: 2px solid rgba(188, 134, 45, 0.85);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-lightbox.is-open .gallery-lightbox-image {
  transform: scale(1);
}

.gallery-lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(17, 24, 32, 0.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: var(--gold);
  transform: scale(1.06);
}

.gallery-lightbox-close {
  top: 22px;
  right: 24px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  scale: 1.06;
}

.gallery-lightbox-prev {
  left: 22px;
}

.gallery-lightbox-next {
  right: 22px;
}

.reviews {
  overflow: hidden;
  padding: 80px 0;
  background: #fff;
}


.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #c58b2b;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.testimonial-badge span {
  font-size: 11px;
}

.testimonials-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 10px 0 25px;
}

.reviews h2,
.reviews #testimonials-heading {
  margin: 0;
  color: #111827;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.testimonial-slider-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.testimonial-slider-controls button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #c58b2b;
  border-radius: 50%;
  background: #fff;
  color: #c58b2b;
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-slider-controls .testimonial-next,
.testimonial-slider-controls button:hover {
  background: #c58b2b;
  color: #fff;
}

.testimonial-slider-controls button:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px;
}

.testimonial-slider {
  padding: 13px 9px 14px;
  overflow: hidden;
  border: 1px solid #eadfce;
  border-radius: 17px;
}

.reviews .review-grid {
  display: flex;
  gap: 14px;
  margin: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.reviews .review-grid::-webkit-scrollbar {
  display: none;
}

.reviews .review-grid:focus-visible {
  outline: 2px solid #c58b2b;
  outline-offset: 4px;
}

.reviews .review-grid article {
  display: flex;
  flex: 0 0 calc((100% - 28px) / 3);
  flex-direction: column;
  min-width: 0;
  min-height: 406px;
  padding: 35px 18px 31px;
  scroll-snap-align: start;
  border-radius: 24px;
  background: #f5f3f0;
  box-shadow: none;
}

.reviews .review-grid h3 {
  margin: 0;
  color: #171717;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.35px;
}

.reviews .review-grid p {
  min-height: 0;
  margin: 24px 0 28px;
  color: #202020;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.3px;
}

.reviews .review-grid footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  font-size: 13px;
}

.review-author {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.review-author img {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author span,
.review-author strong,
.review-author small {
  display: block;
  min-width: 0;
}

.review-author strong {
  overflow: hidden;
  color: #181818;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-author small {
  margin-top: 4px;
  overflow: hidden;
  color: #262626;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  color: #222;
  font-size: 13px;
}

.review-rating b {
  color: #ffd84c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.blog {
  padding: 26px 0 44px;
  background: #fff;
}

.blog .title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.blog .title-row h2 {
  margin: 0;
  color: #111827;
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: -0.55px;
}

.blog .title-row>a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
  color: #161616;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.blog .title-row>a span {
  font-size: 13px;
  font-weight: 400;
}

.blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.blog .blog-grid article {
  min-width: 0;
}

.blog .blog-grid img {
  width: 100%;
  height: 310px;
  border-radius: 6px;
  object-fit: cover;
}

.blog .blog-grid article:first-child img {
  object-position: center 62%;
}

.blog .blog-grid h3 {
  margin: 12px 0 7px;
  color: #111;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.22px;
}

.blog .blog-grid p {
  min-height: 42px;
  margin: 0 0 7px;
  color: #242424;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.05px;
}

.blog .blog-grid time {
  display: block;
  color: #595959;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.3;
}

.site-footer {
  padding: 0 0 66px;
  border-radius: 56px 56px 0 0;
  background: #030303;
  color: #f4f4f4;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 154px;
  padding: 29px 0 19px;
  border-bottom: 1px solid #2c2c2c;
}

.footer-brand {
  display: block;
  flex: 0 0 auto;
}

.footer-logo {
  display: block;
  width: 132px;
  height: 100px;
  object-fit: contain;
}

.footer-contact {
  text-align: right;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f6f6f6;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}

.footer-phone img {
  width: 29px;
  height: 29px;
}

.footer-contact address {
  margin-top: 10px;
  color: #f5f5f5;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1.25fr 0.9fr 0.65fr;
  gap: 20px;
  padding-top: 25px;
}

.footer-about p {
  margin: 9px 0 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.footer-book-call {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  gap: 8px;
  padding: 10px 20px 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: #141414;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
}

.footer-phone span {
  font-size: 20px;
}

.footer-book-call img {
  width: 24px;
  height: 24px;
}

.footer-menu h3 {
  margin: 0 0 9px;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}

.footer-menu>a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 6px;
  color: #f1f1f1;
  transition: color 0.2s ease;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}

.footer-menu>a:hover {
  color: #bc862d;
}

.footer-social>a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-social>a span {
  display: inline-flex;
  width: 25px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

/* Layout consistency and intrinsic-size safeguards. */
main,
main>section,
.site-footer {
  max-width: 100%;
}

input,
select,
textarea,
button {
  min-width: 0;
  max-width: 100%;
}

.trust-grid>*,
.intro-grid>*,
.service-grid>*,
.pricing-grid>*,
.price-grid>*,
.faq-grid>*,
.gallery-grid>*,
.review-grid>*,
.blog-grid>* {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
label,
button {
  overflow-wrap: break-word;
}

.main-nav>a,
.nav-item>button,
.outline-button,
.lead-form input,
.lead-form select,
.lead-form button,
.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-form button {
  font-size: var(--font-control);
}

.service-grid,
.review-grid {
  column-gap: var(--space-4);
  row-gap: var(--space-4);
}