:root {
  --cream: #fbf4ec;
  --cream-2: #f3e6dc;
  --white: #fffdfb;
  --ink: #2e2430;
  --muted: #766a74;
  --plum: #8f6fa0;
  --soft-plum: #d8c2e5;
  --gold: #c8a45d;
  --gold-dark: #9d7630;
  --line: rgba(80, 52, 82, 0.14);
  --shadow: 0 24px 70px rgba(80, 52, 82, 0.13);
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream), #fffaf6 42%, #f7edf6);
  font-family: var(--font-body);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(200, 164, 93, 0.12) 34.2%, transparent 34.8% 68%, rgba(216, 194, 229, 0.22) 68.2%, transparent 68.8%),
    radial-gradient(circle at 88% 8%, rgba(216, 194, 229, 0.34), transparent 24%);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: 14px auto 0;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 18px 46px rgba(80, 52, 82, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  color: var(--plum);
  letter-spacing: 0;
}

.brand span:last-child {
  color: var(--gold-dark);
  font-family: var(--font-script);
  font-size: 1.18em;
  font-weight: 400;
  line-height: 0.78;
}

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

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #5e5160;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  color: var(--plum);
  background: rgba(216, 194, 229, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 106px);
  margin-top: 14px;
  overflow: hidden;
  border-radius: 8px;
  background: #2e2430;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(46, 36, 48, 0.88), rgba(46, 36, 48, 0.54) 44%, rgba(46, 36, 48, 0.08) 78%),
    linear-gradient(0deg, rgba(46, 36, 48, 0.28), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(680px, 100%);
  padding: clamp(42px, 8vw, 96px);
  color: #fffaf6;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(58px, 10vw, 124px);
  line-height: 0.88;
}

.script-accent {
  color: var(--gold);
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
}

.hero-signature {
  display: block;
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 250, 246, 0.9);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.5;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(242, 214, 149, 0.38);
  border-radius: 999px;
  color: #fffaf6;
  background: rgba(255, 253, 251, 0.1);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.cta-actions,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.mini-button:hover {
  transform: translateY(-2px);
}

.button-primary,
.mini-button {
  color: #2f2430;
  background: linear-gradient(135deg, #f2d695, var(--gold));
  box-shadow: 0 16px 36px rgba(200, 164, 93, 0.24);
}

.button-soft {
  color: #fffaf6;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading h2,
.why-content h2,
.cta-section h2,
.service-group-head h2 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

.section-heading span,
.service-group-head p,
.why-content article span,
.cta-section p,
.site-footer p {
  color: var(--muted);
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-tile {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(46, 36, 48, 0.72));
}

.category-tile span {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 1;
  color: #fffaf6;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.category-tile:hover img {
  transform: scale(1.06);
}

.service-groups {
  display: grid;
  gap: 44px;
  margin-top: 58px;
}

.service-group {
  padding-top: 8px;
}

.service-group-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

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

.service-card {
  display: grid;
  gap: 12px;
  min-height: 258px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.76);
  box-shadow: 0 16px 52px rgba(80, 52, 82, 0.08);
  backdrop-filter: blur(12px);
}

.service-category {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(200, 164, 93, 0.11);
  font-size: 11px;
  font-weight: 800;
}

.service-card h3 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-actions {
  align-self: end;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.text-link {
  padding: 0;
  border: 0;
  color: var(--plum);
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.mini-button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 12px;
}

.why-section {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.why-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-image img {
  width: 100%;
  height: min(680px, 72vw);
  object-fit: cover;
}

.why-content {
  display: grid;
  gap: 24px;
}

.reason-list {
  display: grid;
  gap: 12px;
}

.reason-list article {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.reason-list strong {
  color: var(--plum);
  font-size: 15px;
}

.interior-section {
  padding-top: 42px;
}

.interior-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
}

.interior-hero {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: inherit;
  cursor: zoom-in;
}

.interior-hero img {
  width: 100%;
  height: min(680px, 72vw);
  object-fit: cover;
}

.interior-content {
  display: grid;
  gap: 18px;
}

.interior-content h2 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.92;
}

.interior-content > p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.interior-highlights {
  display: grid;
  gap: 12px;
}

.interior-highlights article {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.interior-highlights strong {
  color: var(--plum);
  font-size: 15px;
}

.interior-highlights span {
  color: var(--muted);
}

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

.interior-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream-2);
}

.interior-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-gallery figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fffaf6;
  background: rgba(46, 36, 48, 0.48);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.exterior-showcase {
  display: grid;
  margin-top: clamp(34px, 6vw, 72px);
  padding-top: clamp(28px, 5vw, 52px);
  border-top: 1px solid var(--line);
}

.exterior-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
}

.exterior-gallery figure {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.exterior-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.exterior-gallery figure:hover img {
  transform: scale(1.04);
}

.expert-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.82fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.expert-content {
  display: grid;
  gap: 16px;
}

.expert-content h2 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.92;
}

.expert-signature {
  display: block;
  margin-top: -8px;
  color: var(--gold-dark);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
}

.expert-content > strong {
  color: var(--gold-dark);
  font-size: 14px;
  letter-spacing: 0;
}

.expert-content p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.expert-tags,
.expert-principles {
  display: grid;
  gap: 10px;
}

.expert-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.expert-tags span {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(200, 164, 93, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.82);
  color: var(--plum);
  font-size: 13px;
  font-weight: 850;
}

.expert-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.expert-card img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: contain;
  background: linear-gradient(135deg, #fffdfb, #f6eee6);
}

.expert-card figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
}

.expert-card strong {
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}

.expert-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.expert-principles {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.expert-principles article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.72);
  box-shadow: 0 14px 40px rgba(80, 52, 82, 0.07);
}

.expert-principles strong {
  color: var(--plum);
  font-size: 15px;
}

.expert-principles p {
  margin: 8px 0 0;
  color: var(--muted);
}

.experience-section {
  padding-top: 42px;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 16px;
}

.local-seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding-top: clamp(28px, 5vw, 54px);
  border-top: 1px solid var(--line);
}

.local-seo-copy {
  display: grid;
  gap: 14px;
}

.local-seo-copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

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

.local-seo-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.local-seo-topics article {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.78);
}

.local-seo-topics h3 {
  color: var(--plum);
  font-size: 18px;
}

.local-seo-topics p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.journey-panel,
.faq-panel {
  display: grid;
  gap: 12px;
}

.journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 16px 52px rgba(80, 52, 82, 0.08);
}

.journey-step > span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 164, 93, 0.34);
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(200, 164, 93, 0.12);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.journey-step h3 {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.journey-step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq-panel details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.72);
  box-shadow: 0 14px 40px rgba(80, 52, 82, 0.07);
}

.faq-panel summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--plum);
  font-weight: 850;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.gallery-section {
  padding-top: 42px;
}

.credentials-section {
  display: grid;
  gap: 24px;
}

.certificate-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
}

.certificate-wall {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(212, 175, 95, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(46, 36, 48, 0.12);
}

.certificate-wall img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: contain;
  background: var(--white);
}

.certificate-wall figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.certificate-wall strong {
  color: var(--plum);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.certificate-wall span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.credential-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.credential-tags span {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.8);
  color: var(--plum);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream-2);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 2;
  min-height: 410px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item.is-contain {
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.92), rgba(247, 239, 232, 0.86)),
    var(--white);
}

.gallery-item.is-contain img {
  padding: 18px;
  object-fit: contain;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 14px 14px;
  display: inline-grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fffaf6;
  background: rgba(46, 36, 48, 0.48);
  backdrop-filter: blur(12px);
}

.gallery-item strong {
  color: #f2d695;
  font-size: 12px;
}

.gallery-item span {
  font-size: 13px;
  font-weight: 700;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 18px;
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 36, 48, 0.72);
  backdrop-filter: blur(12px);
}

.image-lightbox-dialog {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(1040px, 100%);
  max-height: calc(100vh - 36px);
  margin: 0;
}

.image-lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(20, 12, 22, 0.36);
  object-fit: contain;
}

.image-lightbox-dialog figcaption {
  color: #fffaf6;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #fffaf6;
  background: rgba(46, 36, 48, 0.62);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.instagram-section {
  padding-top: 42px;
}

.instagram-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.instagram-head h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.instagram-head p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

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

.instagram-card {
  position: relative;
  display: grid;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: 0 16px 52px rgba(80, 52, 82, 0.08);
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(46, 36, 48, 0.72));
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.instagram-card:hover img {
  transform: scale(1.06);
}

.instagram-card span,
.instagram-card strong {
  position: absolute;
  z-index: 1;
  left: 16px;
}

.instagram-card span {
  bottom: 52px;
  color: #f2d695;
  font-size: 12px;
  font-weight: 850;
}

.instagram-card strong {
  right: 16px;
  bottom: 18px;
  color: #fffaf6;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 0.98;
}

.testimonials-section {
  padding-top: 42px;
}

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

.testimonial-card {
  display: grid;
  gap: 18px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 251, 0.92), rgba(248, 239, 248, 0.76));
  box-shadow: 0 16px 52px rgba(80, 52, 82, 0.08);
}

.testimonial-card > span {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(200, 164, 93, 0.11);
  font-size: 11px;
  font-weight: 800;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.testimonial-card div {
  align-self: end;
  display: grid;
  gap: 3px;
}

.testimonial-card strong {
  color: var(--plum);
  font-size: 14px;
}

.testimonial-card small {
  color: var(--muted);
  font-weight: 800;
}

.product-preview {
  padding-top: 42px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 16px 52px rgba(80, 52, 82, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.product-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.product-card span {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(200, 164, 93, 0.11);
  font-size: 11px;
  font-weight: 800;
}

.product-card h3 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}

.product-card p,
.product-note {
  margin: 0;
  color: var(--muted);
}

.product-note {
  max-width: 760px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
}

.appointment-helper {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(20px, 5vw, 58px);
  align-items: center;
}

.appointment-copy {
  display: grid;
  gap: 14px;
}

.appointment-copy h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.appointment-copy p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.appointment-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.82);
  box-shadow: var(--shadow);
}

.appointment-panel label {
  display: grid;
  gap: 8px;
}

.appointment-panel label span,
.appointment-panel p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.appointment-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.appointment-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.appointment-slots button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--plum);
  background: var(--white);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.appointment-slots button.is-active {
  border-color: rgba(200, 164, 93, 0.48);
  color: #2f2430;
  background: linear-gradient(135deg, #f2d695, var(--gold));
}

.appointment-panel p {
  margin: 0;
}

.has-modal {
  overflow: hidden;
}

.service-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
}

.service-detail-modal.is-open {
  display: grid;
}

.service-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 36, 48, 0.58);
  backdrop-filter: blur(10px);
}

.service-detail-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.96);
  box-shadow: 0 30px 90px rgba(46, 36, 48, 0.26);
}

.service-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  background: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.service-detail-body {
  display: grid;
  gap: 18px;
}

.service-detail-body h2 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
}

.service-detail-copy {
  display: grid;
  gap: 10px;
}

.service-detail-copy p {
  margin: 0;
  color: var(--muted);
}

.service-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-detail-meta span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(200, 164, 93, 0.26);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(200, 164, 93, 0.11);
  font-size: 12px;
  font-weight: 850;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin: clamp(50px, 8vw, 92px) 0;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 251, 0.94), rgba(216, 194, 229, 0.58)),
    url("https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?auto=format&fit=crop&w=1400&q=85") center / cover;
  box-shadow: var(--shadow);
}

.cta-section p {
  max-width: 680px;
}

.cta-actions {
  justify-content: flex-end;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.72);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.contact-grid a,
.contact-grid div,
.visit-info-grid div {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-grid span,
.visit-info-grid span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.contact-grid strong,
.visit-info-grid strong {
  font-size: 15px;
}

.visit-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 30px;
}

.map-placeholder {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(143, 111, 160, 0.22);
  border-radius: 8px;
  background: var(--cream);
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.copyright {
  margin: 22px 0 0;
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(46, 36, 48, 0.18);
  font-size: 13px;
  font-weight: 850;
}

.float-whatsapp {
  color: #f8fff8;
  background: #2f9d62;
}

.float-appointment {
  color: #2f2430;
  background: linear-gradient(135deg, #f2d695, var(--gold));
}

@media (max-width: 980px) {
  .category-showcase,
  .service-grid,
  .instagram-grid,
  .testimonial-grid,
  .product-grid,
  .credential-tags,
  .contact-grid,
  .visit-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-group-head,
  .why-section,
  .cta-section,
  .certificate-gallery,
  .interior-layout,
  .local-seo-section,
  .exterior-gallery,
  .expert-section,
  .experience-layout,
  .appointment-helper,
  .expert-principles {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .instagram-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    width: min(100% - 24px, 1180px);
    margin-top: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 251, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  main,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(46, 36, 48, 0.9), rgba(46, 36, 48, 0.24)),
      linear-gradient(90deg, rgba(46, 36, 48, 0.46), rgba(46, 36, 48, 0.02));
  }

  .hero-content {
    align-self: end;
    padding: 34px 24px;
  }

  .category-showcase,
  .service-grid,
  .interior-gallery,
  .local-seo-topics,
  .exterior-gallery,
  .instagram-grid,
  .testimonial-grid,
  .product-grid,
  .credential-tags,
  .expert-tags,
  .gallery-grid,
  .contact-grid,
  .visit-info-grid {
    grid-template-columns: 1fr;
  }

  .certificate-wall figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-tile,
  .category-tile img {
    min-height: 220px;
  }

  .service-actions,
  .floating-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .appointment-slots {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .floating-actions a {
    min-height: 44px;
  }

  .journey-step {
    grid-template-columns: 1fr;
  }

  .exterior-gallery figure {
    min-height: 340px;
  }
}
