:root {
  --brown: #8a6242;
  --brown-dark: #2d1d14;
  --brown-2: #7a5638;
  --cream: #f4eadf;
  --cream-2: #f8efe7;
  --card: #fff;
  --muted: #6f645c;
  --soft: #ead8c5;
  --green: #10c66f;
  --shadow: 0 18px 45px rgba(122,86,56,.12);
  --shadow-lg: 0 28px 70px rgba(122,86,56,.17);
  --radius: 28px;
  --font: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: #181614;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 9999;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--brown);
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 5px 12px;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 65;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-inner {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  color: var(--brown-2);
  font-size: 19px;
  letter-spacing: -.02em;
}

.brand span {
  color: #b89574;
  font-size: 13px;
  font-weight: 700;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  font-weight: 800;
  font-size: 14px;
}

.menu a:hover, .menu a[aria-current=page] {
  color: var(--brown);
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brown);
  color: white;
  border-radius: 9px;
  padding: 12px 18px;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(138,98,66,.2);
}

.phone-btn:hover {
  background: #6f4e37;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--brown-2);
  border-radius: 99px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #14c766;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transition: .2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 15px 25px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: .2s;
}

.btn-primary {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 14px 25px rgba(138,98,66,.22);
}

.btn-primary:hover {
  background: #6f4e37;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--brown-2);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.btn-outline {
  background: transparent;
  border-color: var(--brown);
  color: var(--brown-2);
}

.btn-outline:hover {
  background: var(--brown);
  color: white;
}

.btn-whatsapp {
  background: #12c76b;
  color: #fff;
  box-shadow: 0 16px 34px rgba(18,199,107,.23);
}

.btn-whatsapp img {
  width: 25px;
  height: 25px;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--cream);
}

.section-white {
  background: #fff;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}

.eyebrow, .pill {
  display: inline-flex;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
}

.subeyebrow {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: #9b7653;
}

.section h2, .section-head h1, .section-head h2 {
  color: var(--brown-2);
  font-size: clamp(32px,4.6vw,54px);
  line-height: 1.05;
  margin: 16px 0 12px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.section-head p, .lead {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 128px 0 70px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.35),rgba(0,0,0,.25)),rgba(0,0,0,.18);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 24px;
}

.hero-kicker span {
  display: block;
  font-size: clamp(17px,2vw,28px);
  font-weight: 400;
  letter-spacing: .16em;
  color: rgba(255,255,255,.86);
}

.hero-kicker strong {
  display: block;
  font-size: clamp(28px,3vw,42px);
  margin-top: 6px;
}

.hero h1 {
  font-size: clamp(38px,7vw,84px);
  line-height: 1.06;
  margin: 28px 0 0;
  font-weight: 950;
  letter-spacing: -.05em;
}

.hero p {
  max-width: 780px;
  margin: 28px auto 0;
  font-size: 20px;
  line-height: 1.85;
  color: rgba(255,255,255,.92);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-pills span {
  background: rgba(255,255,255,.94);
  color: var(--brown-2);
  padding: 13px 23px;
  border-radius: 99px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
  font-weight: 800;
  color: #fff;
}

.scroll-cue span {
  font-size: 30px;
  color: #d9b785;
}

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

.service-card, .treat-card, .blog-card, .test-card, .info-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122,86,56,.08);
  transition: .2s;
}

.service-card:hover, .treat-card:hover, .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3, .treat-card h2, .blog-card h2, .blog-card h3 {
  color: var(--brown-2);
  font-size: 25px;
  line-height: 1.12;
  margin: 0 0 12px;
  font-weight: 950;
}

.service-card p, .treat-card p, .blog-card p {
  color: #675b52;
  line-height: 1.75;
  margin: 0;
}

.link-arrow {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 950;
  color: #1b1612;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.why-list h3 {
  font-size: 26px;
  color: var(--brown-2);
  margin: 0 0 8px;
}

.why-list p {
  font-size: 18px;
  line-height: 1.7;
  color: #675b52;
  margin: 0;
}

.slider {
  position: relative;
}

.slider-frame {
  position: relative;
  height: 600px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s,transform 1.1s;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

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

.slide-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255,255,255,.94);
  padding: 15px 20px;
  border-radius: 18px;
  color: var(--brown-2);
  font-weight: 900;
  z-index: 3;
}

.blob {
  position: absolute;
  left: -26px;
  bottom: -9px;
  width: 110px;
  height: 110px;
  background: var(--brown);
  border-radius: 28px;
  z-index: 4;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  cursor: pointer;
}

.dot.active {
  background: var(--brown);
}

.feature {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #ead8c5;
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  box-shadow: var(--shadow);
}

.feature-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.feature-box {
  align-self: center;
  margin: 40px;
  transform: translateX(-65px);
  background: #fff;
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.feature-box h2 {
  font-size: clamp(30px,4vw,48px);
  color: var(--brown-2);
  line-height: 1.05;
  margin: 18px 0;
}

.process-grid {
  background: #fff;
  border-radius: 28px;
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  box-shadow: var(--shadow);
}

.process-item {
  display: flex;
  gap: 18px;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

.process-item h3 {
  margin: 0 0 7px;
  color: var(--brown-2);
}

.process-item p {
  margin: 0;
  color: #6a625c;
  line-height: 1.6;
}

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

.test-card {
  padding: 34px;
}

.stars {
  color: #d2a039;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.test-card blockquote {
  margin: 0;
  color: #564b42;
  line-height: 1.8;
}

.test-card strong {
  display: block;
  color: var(--brown-2);
  margin-top: 28px;
}

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

.blog-grid.featured {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
}

.meta {
  display: block;
  color: #9b7653;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.location-map {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.location-map iframe {
  width: 100%;
  height: 430px;
  border: 0;
  display: block;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  padding: 26px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-card i {
  color: var(--brown);
  font-size: 20px;
  margin-top: 4px;
}

.hours-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #ead8c5;
  padding: 13px 0;
}

.hours-row:last-child {
  border: 0;
}

.site-footer {
  background: var(--brown-dark);
  color: #fff;
  padding: 70px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-brand strong {
  font-size: 24px;
}

.footer-brand span, .footer-grid p {
  color: #d8c5b5;
  line-height: 1.8;
}

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

.footer-cta {
  text-align: center;
  margin: 42px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
  text-align: center;
  color: #d6c5b8;
  font-size: 14px;
}

.footer-bottom a {
  color: #b89574;
  margin: 0 6px;
}

.page-hero {
  padding: 150px 0 56px;
  background: #eef5ff;
  text-align: center;
}

.beauty-hero {
  background: linear-gradient(180deg,#f5ebe0,#f4eadf);
}

.page-hero h1 {
  font-size: clamp(40px,5.5vw,64px);
  line-height: 1.08;
  color: var(--brown-2);
  margin: 22px auto 18px;
  font-weight: 950;
  letter-spacing: -.04em;
  max-width: 900px;
}

.page-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: #5e554e;
  font-size: 19px;
  line-height: 1.85;
}

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

.stat-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card strong {
  font-size: 36px;
  color: #d09a36;
}

.stat-card span {
  display: block;
  font-weight: 800;
  color: #594d43;
}

.intro-box {
  max-width: 900px;
  margin: 54px auto 42px;
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.intro-box h2 {
  color: var(--brown-2);
  font-size: 32px;
  margin: 0 0 12px;
}

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

.treat-card {
  border-radius: 20px;
}

.treat-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.treat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.treat-card:hover img {
  transform: scale(1.05);
}

.num {
  position: absolute;
  left: 15px;
  top: 15px;
  background: #fff;
  color: var(--brown);
  font-size: 12px;
  font-weight: 950;
  border-radius: 99px;
  padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

.treat-body {
  padding: 25px;
}

.cta-box {
  max-width: 960px;
  margin: 64px auto 0;
  background: #fff;
  border-radius: 28px;
  padding: 46px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  color: var(--brown-2);
  font-size: 32px;
  margin: 0 0 10px;
}

.treatment-detail {
  display: grid;
  grid-template-columns: minmax(0,1fr) 360px;
  gap: 34px;
  align-items: start;
}

.detail-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.detail-card img.main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 30px;
}

.detail-card h2, .detail-card h3 {
  color: var(--brown-2);
}

.detail-card p, .detail-card li {
  color: #645951;
  line-height: 1.75;
}

.side-card {
  position: sticky;
  top: 110px;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.side-card h3 {
  color: var(--brown-2);
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.check-list li {
  list-style: none;
  display: flex;
  gap: 10px;
}

.check-list li:before {
  content: '✓';
  color: var(--brown);
  font-weight: 950;
}

.steps {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f9f1e9;
  border-radius: 18px;
  padding: 18px;
}

.step strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--brown);
  color: #fff;
  border-radius: 50%;
  flex: 0 0 34px;
}

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

.related-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .2s;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-card img {
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.related-card div {
  padding: 18px;
}

.related-card h3 {
  font-size: 18px;
  margin: 0;
  color: var(--brown-2);
}

.faq {
  max-width: 960px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 14px;
  padding: 20px 24px;
  box-shadow: 0 8px 22px rgba(122,86,56,.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--brown-2);
  font-size: 18px;
}

.faq p {
  color: #5f554e;
  line-height: 1.7;
}

.blog-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  text-align: left;
}

.blog-featured-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-featured-card img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}

.sidebar {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: 110px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tag-cloud a {
  background: #f2e5d8;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  color: var(--brown-2);
  font-size: 14px;
}

.article {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 38px;
}

.article img {
  border-radius: 22px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 30px;
}

.article h2 {
  color: var(--brown-2);
  font-size: 34px;
}

.article p, .article li {
  color: #5f554e;
  line-height: 1.85;
  font-size: 18px;
}

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

.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-card h3 {
  color: var(--brown-2);
  font-size: 24px;
}

.price-card strong {
  font-size: 34px;
  color: var(--brown);
}

@media (max-width:980px) {
  .menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
}

@media (max-width:980px) {
  .menu.open {
    display: flex;
  }
}

@media (max-width:980px) {
  .menu a {
    padding: 14px;
    border-radius: 12px;
  }
}

@media (max-width:980px) {
  .menu a:hover {
    background: #f6eee7;
  }
}

@media (max-width:980px) {
  .nav-toggle {
    display: flex;
  }
}

@media (max-width:980px) {
  .phone-btn span {
    display: none;
  }
}

@media (max-width:980px) {
  .brand strong {
    font-size: 14px;
  }
}

@media (max-width:980px) {
  .brand span {
    font-size: 11px;
  }
}

@media (max-width:980px) {
  .hero {
    background-attachment: scroll;
  }
}

@media (max-width:980px) {
  .hero p {
    display: none;
  }
}

@media (max-width:980px) {
  .service-grid, .treat-grid, .testimonial-grid, .blog-grid, .blog-grid.featured, .related-grid, .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:980px) {
  .why, .feature, .contact-wrap, .treatment-detail, .blog-layout, .blog-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px) {
  .feature-box {
    transform: none;
    margin: 24px;
  }
}

@media (max-width:980px) {
  .feature-img img {
    min-height: 320px;
  }
}

@media (max-width:980px) {
  .slider-frame {
    height: 430px;
  }
}

@media (max-width:980px) {
  .side-card {
    position: static;
  }
}

@media (max-width:980px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px) {
  .footer-contact {
    text-align: left;
  }
}

@media (max-width:640px) {
  .topbar {
    font-size: 10px;
  }
}

@media (max-width:640px) {
  .site-header {
    top: 22px;
  }
}

@media (max-width:640px) {
  .nav-inner {
    height: 58px;
  }
}

@media (max-width:640px) {
  .container {
    padding: 0 18px;
  }
}

@media (max-width:640px) {
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width:640px) {
  .button-row, .hero-pills {
    flex-direction: column;
  }
}

@media (max-width:640px) {
  .btn {
    width: 100%;
  }
}

@media (max-width:640px) {
  .service-grid, .treat-grid, .testimonial-grid, .blog-grid, .blog-grid.featured, .related-grid, .price-grid, .process-grid, .blog-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .page-hero {
    padding-top: 124px;
  }
}

@media (max-width:640px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width:640px) {
  .treat-img {
    height: 200px;
  }
}

@media (max-width:640px) {
  .footer-grid {
    text-align: left;
  }
}

@media (max-width:640px) {
  .contact-card {
    padding: 20px;
  }
}

@media (max-width:640px) {
  .hero-kicker span {
    font-size: 14px;
  }
}

@media (max-width:640px) {
  .hero-kicker strong {
    font-size: 24px;
  }
}

@media (max-width:640px) {
  .section h2, .section-head h2, .page-hero h1 {
    font-size: 36px;
  }
}

@media (max-width:640px) {
  .article {
    padding: 24px;
  }
}

@media (max-width:640px) {
  .article img {
    height: 260px;
  }
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.photo-mosaic figure, .service-photo-strip figure, .gallery-full figure {
  margin: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-mosaic figure:first-child {
  grid-row: span 2;
}

.photo-mosaic img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.photo-mosaic figure:first-child img {
  height: 538px;
}

.photo-mosaic figcaption, .service-photo-strip figcaption, .gallery-full figcaption {
  padding: 12px 15px;
  color: var(--brown-2);
  font-weight: 800;
  font-size: 13px;
}

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

.service-photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

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

.gallery-full img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

@media (max-width:980px) {
  .photo-mosaic, .service-photo-strip, .gallery-full {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:980px) {
  .photo-mosaic figure:first-child {
    grid-row: auto;
  }
}

@media (max-width:980px) {
  .photo-mosaic figure:first-child img {
    height: 260px;
  }
}

@media (max-width:640px) {
  .photo-mosaic, .service-photo-strip, .gallery-full {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .photo-mosaic img, .photo-mosaic figure:first-child img, .service-photo-strip img, .gallery-full img {
    height: 240px;
  }
}

