:root {
  --white: #fffdf9;
  --paper: #fbf7f1;
  --cream: #f2e7da;
  --line: rgba(100, 72, 52, 0.18);
  --gold: #bf7d4a;
  --gold-soft: #dba56f;
  --black: #11100f;
  --brown: #3b2417;
  --muted: #6d6159;
  --shadow: 0 18px 48px rgba(58, 38, 24, 0.11);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
}
p { margin: 0; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-brand { text-transform: uppercase; }
.custom-logo { max-height: 58px; width: auto; }
.brand-mark {
  display: block;
  font-family: var(--serif);
  font-size: 37px;
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.brand-sub {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.26em;
}
.menu-toggle {
  width: 54px;
  height: 54px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
}
.menu-toggle span:not(.screen-reader-text) {
  width: 22px;
  height: 2px;
  background: #fff;
}
.primary-nav {
  position: fixed;
  inset: 82px 18px auto;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.2s ease;
}
.primary-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.primary-nav ul,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

body.home {
  --lx-max: 1400px;
  padding-bottom: 76px;
  background: var(--white);
}
body.home .site-header {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  grid-template-areas: "brand nav";
  gap: clamp(18px, 2vw, 32px);
  padding: 0 58px;
  background: rgba(255, 253, 249, 0.98);
}
body.home .site-brand {
  grid-area: brand;
}
body.home .brand-mark {
  font-size: 43px;
  letter-spacing: 0.16em;
}
body.home .brand-sub {
  font-size: 12px;
}
body.home .primary-nav {
  grid-area: nav;
  min-width: 0;
  width: 100%;
  position: static;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  justify-self: stretch;
}
body.home .primary-nav ul {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.35vw, 48px);
}
body.home .primary-nav a {
  position: relative;
  padding: 54px 0 48px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
body.home .primary-nav li:first-child a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  height: 2px;
  background: var(--gold);
}
body.home .menu-toggle {
  display: none;
}

.lx-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #efe2d3;
}
.lx-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.lx-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,253,249,0.99) 0%, rgba(255,253,249,0.9) 26%, rgba(255,253,249,0.35) 50%, rgba(255,253,249,0.02) 74%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.06));
}
.lx-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--lx-max), calc(100% - 104px));
  margin: 0 auto;
  padding-top: 205px;
}
.lx-hero-copy h1 {
  max-width: 550px;
  font-size: 86px;
  line-height: 1.03;
  margin-bottom: 42px;
}
.lx-hero-copy p {
  max-width: 445px;
  color: #25211e;
  font-size: 17px;
  line-height: 1.95;
  font-weight: 700;
  margin-bottom: 36px;
}
.lx-hero-copy a,
.lx-section-head > a,
.lx-about-banner a,
.lx-booking > a {
  color: #17110e;
  font-size: 15px;
  font-weight: 900;
}
.lx-hero-copy span,
.lx-section-head span,
.lx-about-banner b,
.lx-booking span {
  margin-left: 12px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

.lx-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--lx-max), calc(100% - 104px));
  margin: -38px auto 0;
  padding: 54px 64px;
  background: #fff;
  border-top: 1px solid rgba(191, 125, 74, 0.24);
  border-bottom: 1px solid rgba(100, 72, 52, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(58, 38, 24, 0.07);
}
.lx-stats div {
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.lx-stats div:nth-child(n+2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(191, 125, 74, 0.35);
}
.lx-stats div::after {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  top: 0;
  height: 1px;
  background: rgba(191, 125, 74, 0.2);
  display: none;
}
.lx-stat-icon {
  display: block;
  margin-bottom: 28px;
}
.lx-stat-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lx-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.92;
  font-weight: 600;
}
.lx-stats small {
  display: block;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
}

.lx-section {
  width: min(var(--lx-max), calc(100% - 160px));
  margin: 0 auto;
  padding-top: 70px;
}
.lx-section-head {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 520px) auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}
.lx-section-head h2 {
  font-size: 43px;
  line-height: 1;
  margin-bottom: 16px;
}
.lx-section-head i {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
}
.lx-section-head p {
  font-size: 13px;
  line-height: 1.75;
  color: #2c2621;
}
.lx-section-head > a {
  justify-self: end;
  color: var(--gold);
}
.lx-services {
  padding-top: 62px;
}
.lx-services .lx-section-head {
  display: block;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lx-services .lx-section-head::before {
  content: "KENDİNE ZAMAN AYIR";
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.lx-services .lx-section-head h2 {
  font-size: 44px;
  margin-bottom: 20px;
}
.lx-services .lx-section-head i,
.lx-services .lx-section-head > a {
  display: none;
}
.lx-services .lx-section-head p {
  max-width: 430px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.75;
}
.lx-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.lx-service-card,
.lx-specialist-card,
.lx-blog-card {
  overflow: hidden;
  border: 1px solid rgba(100, 72, 52, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.lx-service-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}
.lx-service-card div {
  min-height: 170px;
  padding: 24px;
}
.lx-service-card h3,
.lx-specialist-card h3,
.lx-blog-card h3 {
  font-size: 24px;
  line-height: 1.08;
  margin-bottom: 14px;
}
.lx-service-card p {
  min-height: 52px;
  color: #332b25;
  font-size: 13px;
  line-height: 1.65;
}
.lx-service-card a {
  color: var(--gold);
  font-size: 25px;
}
.lx-all-services {
  width: fit-content;
  min-width: 330px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 42px auto 0;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}
.lx-all-services span {
  font-size: 22px;
}

.lx-about-banner {
  position: relative;
  min-height: 340px;
  margin-top: 58px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: var(--cream);
}
.lx-about-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lx-about-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,253,249,0.98), rgba(255,253,249,0.8) 35%, rgba(255,253,249,0.08) 73%);
}
.lx-about-banner > div {
  position: relative;
  z-index: 1;
  width: min(var(--lx-max), calc(100% - 160px));
  margin: 0 auto;
  padding: 66px 0;
}
.lx-about-banner p {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.lx-about-banner h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.lx-about-banner span {
  display: block;
  max-width: 520px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.85;
}

.lx-specialists .lx-section-head {
  grid-template-columns: 1fr auto;
}
.lx-specialist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.lx-specialist-card {
  position: relative;
  min-height: 350px;
  padding: 26px 24px;
}
.lx-person-photo {
  width: 190px;
  height: 190px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 50% 50% 0 0;
  background: #f4e8da;
}
.lx-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.lx-specialist-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.lx-specialist-card p,
.lx-specialist-card small {
  font-size: 12px;
}
.lx-specialist-card small {
  color: var(--muted);
}
.lx-specialist-card > a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fbf4ec;
  color: var(--gold);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(58, 38, 24, 0.08);
}

.lx-blog { padding-top: 78px; }
.lx-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lx-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.lx-blog-card div {
  padding: 22px 24px 26px;
}
.lx-blog-card p {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.lx-blog-card h3 {
  min-height: 56px;
}
.lx-blog-card small {
  color: #a56e47;
  font-size: 12px;
}

.lx-booking {
  width: min(var(--lx-max), calc(100% - 160px));
  min-height: 175px;
  display: grid;
  grid-template-columns: 78px 1fr 250px;
  gap: 26px;
  align-items: center;
  margin: 44px auto 70px;
  padding: 34px 70px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(220, 202, 180, 0.96), rgba(235, 224, 210, 0.72)),
    url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=1200&q=80") center right / cover;
}
.lx-booking-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  font-size: 28px;
}
.lx-booking h2 {
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.lx-booking p {
  font-size: 13px;
}
.lx-booking > a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 7px;
  color: var(--gold);
  text-transform: uppercase;
}

.lx-footer {
  padding: 54px 80px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.lx-footer-grid {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  gap: 64px;
  margin: 0 auto;
}
.lx-footer-logo {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.14em;
}
.lx-footer-logo span {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.lx-footer h3 {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
}
.lx-footer p,
.lx-footer a {
  color: #2b241f;
  font-size: 12px;
  line-height: 1.85;
}
.lx-footer nav {
  padding-left: 54px;
  border-left: 1px solid var(--line);
}
.lx-footer nav a {
  display: block;
  margin-bottom: 10px;
}
.lx-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.lx-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(58, 38, 24, 0.08);
}
.lx-footer-bottom {
  width: calc(100% + 160px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 48px -80px 0;
  padding: 16px 80px;
  border-top: 1px solid var(--line);
}
.lx-footer-bottom div {
  display: flex;
  gap: 38px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 90px;
  right: 90px;
  bottom: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
}
.mobile-sticky-cta a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(17, 16, 15, 0.12);
}
.mobile-sticky-cta a:first-child {
  color: #fff;
  background: linear-gradient(135deg, #d99b62, #bc7240);
}
.mobile-sticky-cta a:last-child {
  color: #fff;
  background: #17110e;
}

.page-hero,
.section,
.detail-hero,
.content-section,
.contact-layout,
.map-section,
.booking-band,
.single-post,
.default-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.page-hero.compact,
.section,
.content-section {
  padding: 56px 0;
}
.page-hero h1,
.detail-hero h1,
.single-post h1,
.default-page-hero h1 {
  font-size: clamp(42px, 7vw, 78px);
}
.default-page {
  padding: 76px 0 86px;
}
.default-page-hero {
  max-width: 880px;
  margin: 0 auto 54px;
  text-align: center;
}
.default-page-hero h1 {
  line-height: 0.98;
}
.default-page-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
  font-weight: 600;
}
.default-page-media {
  width: min(760px, 100%);
  margin: 0 auto 46px;
}
.default-page-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.default-page-content {
  width: min(780px, 100%);
  margin: 0 auto;
  color: #2d2824;
}
.default-page-content > * + * {
  margin-top: 20px;
}
.default-page-content h2,
.default-page-content h3 {
  margin-top: 44px;
  line-height: 1.08;
}
.default-page-content h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.default-page-content h3 {
  font-size: clamp(28px, 3vw, 38px);
}
.default-page-content p,
.default-page-content li {
  font-size: 19px;
  line-height: 1.9;
}
.default-page-content ul,
.default-page-content ol {
  padding-left: 1.25em;
}
.blog-hero,
.blog-index,
.blog-single,
.blog-single-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.blog-hero {
  padding: 76px 0 46px;
  text-align: center;
}
.blog-hero h1,
.blog-single-hero h1 {
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
}
.blog-hero > p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
  font-weight: 600;
}
.blog-index {
  padding: 0 0 82px;
}
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0 38px;
}
.blog-filters a {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}
.blog-filters a.active {
  color: #fff;
  background: var(--brown);
}
.blog-list {
  display: grid;
  gap: 26px;
}
.blog-list-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.blog-list-image img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
}
.blog-list-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px 34px 0;
}
.blog-list-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}
.blog-list-content > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.blog-list-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}
.blog-single {
  padding: 76px 0 32px;
}
.blog-single-hero {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}
.blog-single-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-single-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}
.blog-single-media {
  width: min(980px, 100%);
  margin: 0 auto 54px;
}
.blog-single-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.blog-single-content {
  width: min(780px, 100%);
  margin: 0 auto;
}
.blog-single-content > * + * {
  margin-top: 22px;
}
.blog-single-content p,
.blog-single-content li {
  color: #2d2824;
  font-size: 19px;
  line-height: 1.95;
}
.blog-single-content h2,
.blog-single-content h3 {
  margin-top: 46px;
  line-height: 1.08;
}
.blog-single-content h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.blog-single-content h3 {
  font-size: clamp(28px, 3vw, 38px);
}
.blog-single-cta {
  margin-bottom: 80px;
}
.card-grid {
  display: grid;
  gap: 22px;
}
.service-card,
.specialist-card,
.post-card,
.contact-card,
.benefit-card,
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}
.service-card img,
.post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.specialist-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.card-body,
.contact-card,
.benefit-card,
.faq-item {
  padding: 24px;
}
.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
}
.btn-gold,
.btn-small {
  color: #fff;
  background: linear-gradient(135deg, #d99b62, #bc7240);
}
.btn-outline {
  border: 1px solid var(--gold);
}
.filter-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 24px;
}
.filter-pills a {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}
.filter-pills .active {
  color: #fff;
  background: var(--brown);
}
.detail-hero,
.split-section {
  display: grid;
  gap: 32px;
  align-items: center;
  padding: 54px 0;
}
.detail-hero > img,
.split-section img,
.map-section iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.detail-hero > img {
  height: 430px;
  object-fit: cover;
}
.map-section iframe {
  height: 380px;
  border: 0;
}
.benefit-grid {
  display: grid;
  gap: 16px;
}
.faq-item {
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 900;
}
.entry-content {
  font-size: 18px;
}
.contact-layout {
  display: grid;
  gap: 22px;
}

@media (min-width: 760px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; }
}

@media (min-width: 1024px) {
  body:not(.home) .site-header {
    background: var(--black);
    color: #fff;
  }
  body:not(.home) .menu-toggle { display: none; }
  body:not(.home) .primary-nav {
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  body:not(.home) .primary-nav ul {
    display: flex;
    gap: 28px;
  }
  body:not(.home) .primary-nav a {
    color: #fff;
  }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .detail-hero,
  .split-section { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 761px) {
  .lx-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  body.home .site-header {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    padding: 0 34px;
  }
  body.home .primary-nav ul { gap: 18px; }
  body.home .primary-nav a { font-size: 11px; }
  .lx-hero-copy,
  .lx-section,
  .lx-about-banner > div,
  .lx-booking {
    width: calc(100% - 56px);
  }
  .lx-stats { padding-left: 48px; padding-right: 48px; }
  .lx-service-grid,
  .lx-specialist-grid { grid-template-columns: repeat(2, 1fr); }
  .lx-section-head { grid-template-columns: 1fr; }
  .lx-section-head > a { justify-self: start; }
  .lx-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1023px) {
  body.home .site-header {
    display: flex;
    justify-content: space-between;
  }
  body.home .menu-toggle {
    width: 58px;
    height: 58px;
    display: grid;
    justify-self: end;
    background: #17110e;
  }
  body.home .primary-nav {
    position: fixed;
    inset: 82px 18px auto;
    width: auto;
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    overflow: visible;
  }
  body.home .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.home .primary-nav ul {
    display: block;
  }
  body.home .primary-nav a {
    padding: 12px 0;
    font-size: 13px;
  }
  body.home .primary-nav li:first-child a::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body.home { padding-bottom: 104px; }
  body.home .site-header,
  .site-header {
    min-height: 74px;
    display: flex;
    padding: 0 18px;
    align-items: center;
    background: #fffdf9;
  }
  body.home .brand-mark,
  .brand-mark {
    font-size: 24px;
    letter-spacing: 0.15em;
  }
  body.home .brand-sub,
  .brand-sub {
    margin-top: 4px;
    font-size: 7px;
    letter-spacing: 0.2em;
  }
  body.home .menu-toggle,
  .menu-toggle {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 0;
    gap: 4px;
  }
  body.home .menu-toggle span:not(.screen-reader-text),
  .menu-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    background: #17110e;
  }
  body.home .primary-nav,
  .primary-nav {
    position: fixed;
    inset: 74px 16px auto;
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }
  body.home .primary-nav.is-open,
  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.home .primary-nav ul { display: block; }
  body.home .primary-nav a {
    padding: 12px 0;
  }
  body.home .primary-nav li:first-child a::after { display: none; }
  .lx-hero {
    min-height: 560px;
    margin: 0 16px;
    border-radius: 0;
  }
  .lx-hero > img {
    height: 100%;
    width: 100%;
    object-position: center;
  }
  .lx-hero::after {
    background:
      linear-gradient(180deg, rgba(255,253,249,0) 0%, rgba(255,253,249,0.08) 34%, rgba(255,253,249,0.92) 61%, #fffdf9 100%),
      linear-gradient(90deg, rgba(255,253,249,0.04), rgba(255,253,249,0));
  }
  .lx-hero-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 32px;
    width: calc(100% - 36px);
    padding-top: 0;
    margin: 0;
  }
  .lx-hero-copy h1 {
    max-width: 270px;
    font-size: 39px;
    line-height: 1.02;
    margin-bottom: 18px;
  }
  .lx-hero-copy h1::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin-top: 14px;
    background: var(--gold);
  }
  .lx-hero-copy p {
    max-width: 286px;
    font-size: 12px;
    line-height: 1.72;
    font-weight: 600;
    margin-bottom: 18px;
  }
  .lx-hero-copy a {
    font-size: 12px;
  }
  .lx-stats {
    width: auto;
    grid-template-columns: repeat(2, 1fr);
    margin: 24px 18px 0;
    padding: 30px 14px;
    border-radius: 18px;
  }
  .lx-stats div {
    min-height: 170px;
  }
  .lx-stats div::before {
    display: none;
  }
  .lx-stats div:nth-child(2n)::before {
    top: 18px;
    bottom: 18px;
    display: block;
  }
  .lx-stats div:nth-child(n+3)::after {
    left: 18px;
    right: 18px;
    display: block;
  }
  .lx-stat-icon {
    margin-bottom: 28px;
  }
  .lx-stat-icon svg {
    width: 46px;
    height: 46px;
  }
  .lx-stats strong {
    font-size: 48px;
  }
  .lx-stats small {
    margin-top: 12px;
    font-size: 14px;
  }
  .lx-service-grid,
  .lx-specialist-grid,
  .lx-blog-grid,
  .lx-footer-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    padding-top: 48px;
    text-align: left;
  }
  .blog-filters {
    justify-content: flex-start;
    padding-bottom: 26px;
  }
  .blog-list-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-list-image img {
    min-height: 220px;
    height: 220px;
  }
  .blog-list-content {
    padding: 24px;
  }
  .blog-list-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-single {
    padding-top: 48px;
  }
  .blog-single-hero {
    text-align: left;
  }
  .blog-single-meta {
    justify-content: flex-start;
  }
  .lx-section,
  .lx-about-banner > div,
  .lx-booking {
    width: calc(100% - 36px);
  }
  .lx-section {
    padding-top: 44px;
  }
  .lx-section-head {
    display: block;
    margin-bottom: 22px;
  }
  .lx-section-head h2 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .lx-section-head i {
    width: 34px;
    margin-top: 10px;
  }
  .lx-section-head p {
    display: none;
  }
  .lx-services .lx-section-head {
    max-width: none;
    margin-bottom: 22px;
    text-align: left;
  }
  .lx-services .lx-section-head::before {
    display: none;
  }
  .lx-services .lx-section-head h2 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .lx-services .lx-section-head i {
    display: block;
  }
  .lx-service-grid {
    gap: 18px;
  }
  .lx-service-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0;
    min-height: 116px;
  }
  .lx-service-card img {
    width: 96px;
    height: 116px;
  }
  .lx-service-card div {
    min-height: auto;
    padding: 16px 18px;
  }
  .lx-service-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .lx-service-card p {
    min-height: 0;
    font-size: 10px;
    line-height: 1.55;
  }
  .lx-service-card a {
    font-size: 18px;
  }
  .lx-all-services {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-top: 20px;
    font-size: 11px;
  }
  .lx-about-banner::after {
    background: linear-gradient(90deg, rgba(255,253,249,0.97), rgba(255,253,249,0.75));
  }
  .lx-booking {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .lx-footer {
    padding: 36px 24px 0;
  }
  .lx-footer nav {
    padding-left: 0;
    border-left: 0;
  }
  .lx-footer-bottom {
    width: calc(100% + 48px);
    display: block;
    margin-left: -24px;
    margin-right: -24px;
    padding: 16px 24px;
  }
  .lx-footer-bottom div {
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
  }
  .mobile-sticky-cta {
    display: grid;
    left: 0;
    right: 0;
    bottom: 0;
    gap: 12px;
    padding: 24px 24px 18px;
    border-radius: 22px 22px 0 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 34px rgba(17, 16, 15, 0.12);
  }
  .mobile-sticky-cta a {
    min-height: 58px;
  }
}
