:root {
  --black: #080808;
  --ink: #141414;
  --charcoal: #1e1e1e;
  --grey: #666666;
  --warm-grey: #ebe9e3;
  --soft-grey: #f6f5f1;
  --white: #ffffff;
  --gold: #c9a24d;
  --pale-gold: #e5c876;
  --deep-gold: #9d7726;
  --line: rgba(201, 162, 77, 0.28);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --heading: "Cinzel", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(215px, 25vw, 310px);
  height: auto;
}

.footer-logo {
  width: min(300px, 100%);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.35rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(201, 162, 77, 0.2), transparent 52%);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.03);
}

.brand strong {
  display: block;
  font-family: var(--heading);
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  color: #d8d5ce;
  font-size: 0.75rem;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e9e5dc;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 10px 11px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201, 162, 77, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--white);
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("../images/hero-memorial-photo.jpg") center/cover no-repeat;
  transform: scale(1.025);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(201, 162, 77, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.64) 48%, rgba(0, 0, 0, 0.28));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(860px, 72vw);
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 48px;
  padding: 118px 0 138px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: var(--heading);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.5rem, 5.7vw, 5.25rem);
  max-width: 930px;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.05rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin-top: 0;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-heading p {
  font-size: 1.08rem;
  max-width: 720px;
  color: inherit;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #efece6;
  font-size: 1.15rem;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 23px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.22s ease, background 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--pale-gold));
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 32px rgba(201, 162, 77, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(201, 162, 77, 0.38);
}

.btn-secondary {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.28);
}

.btn-secondary:hover {
  background: rgba(201, 162, 77, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.btn-small {
  min-height: 44px;
  padding: 10px 17px;
  margin-top: 8px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats span {
  display: inline-flex;
  flex-direction: column;
  min-width: 150px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  color: #e7e1d5;
}

.hero-stats strong {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 1.08rem;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.hero-card p:not(.eyebrow) {
  color: #ece7dc;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(201, 162, 77, 0.06), transparent 40%),
    var(--soft-grey);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 77, 0.16), transparent 34%),
    var(--black);
  color: var(--white);
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin: 23px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading.light p:not(.eyebrow) {
  color: #ddd6ca;
}

.category-grid,
.values-grid,
.service-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.values-grid,
.pricing-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.feature-card,
.info-card,
.service-card,
.price-card,
blockquote,
.contact-form,
.contact-panel {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
}

.feature-card::before,
.info-card::before,
.service-card::before,
.price-card::before,
.contact-form::before,
.contact-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.feature-card,
.info-card,
.service-card,
.product-card,
.price-card,
.gallery-item {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover,
.info-card:hover,
.service-card:hover,
.product-card:hover,
.price-card:hover,
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--line);
}

.feature-card img,
.product-card img,
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: #efefef;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
  margin-top: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.rounded-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.check-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.14);
}

.quote-panel {
  background:
    linear-gradient(135deg, rgba(201, 162, 77, 0.14), transparent 45%),
    var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.quote-mark {
  color: var(--gold);
  font-size: 5rem;
  font-family: var(--heading);
  line-height: 0.8;
}

.quote-panel p {
  font-size: 1.35rem;
  margin: 12px 0 0;
}

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

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

.product-card {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card img {
  border-radius: 0;
  border-width: 0 0 1px;
}

.product-card > div,
.product-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.product-card p {
  color: #4d4d4d;
}

.product-tag {
  width: max-content;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep-gold);
  background: rgba(201, 162, 77, 0.09);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
}

.detail-list div {
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-list dt {
  color: var(--deep-gold);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list dd {
  margin: 4px 0 0;
  color: #363636;
}

.product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  color: var(--deep-gold);
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(201, 162, 77, 0.2), transparent 30%),
    linear-gradient(135deg, var(--black), #2a2926);
  color: var(--white);
  padding: 108px 0 84px;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.page-hero p:not(.eyebrow) {
  color: #e8e2d7;
}

blockquote {
  margin: 0;
  background: #121212;
  border-color: var(--line);
}

blockquote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
}

blockquote p {
  color: #ededed;
  margin-top: 0;
}

blockquote cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(201, 162, 77, 0.12), transparent 45%),
    #fbfaf7;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 38px;
  padding-bottom: 38px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7f4ec);
  color: var(--charcoal);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

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

.gallery-item {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  border-radius: 0;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.04);
}

.gallery-item figcaption {
  padding: 15px 16px;
  font-weight: 800;
  color: var(--deep-gold);
  background: #fffdf8;
}

.gallery-item.hidden {
  display: none;
}

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

.portfolio-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.portfolio-story:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--line);
}

.portfolio-story img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.portfolio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.portfolio-copy p:last-child {
  margin-bottom: 0;
  color: #4d4d4d;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-12px);
  background: linear-gradient(180deg, #fffdf6, #ffffff);
}

.price-card.featured:hover {
  transform: translateY(-18px);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--black);
  color: var(--gold);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.price-label {
  font-size: 1.26rem;
  color: var(--deep-gold);
  font-weight: 900;
  margin: 0 0 10px;
}

.price-card .btn {
  margin-top: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.88fr;
  gap: 28px;
  align-items: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8d3c7;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.18);
  background: var(--white);
}

.form-message {
  min-height: 24px;
  font-weight: 800;
}

.form-message.error {
  color: #9a2424;
}

.form-message.success {
  color: #2f6b3d;
}

.hidden-field {
  display: none;
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-panel p {
  margin-bottom: 8px;
}

.whatsapp-panel {
  margin: -6px -6px 18px;
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 162, 77, 0.18), transparent 45%),
    var(--black);
  color: var(--white);
  border: 1px solid var(--line);
}

.whatsapp-panel p:not(.eyebrow) {
  color: #e8e1d4;
}

.map-placeholder {
  margin-top: 18px;
  min-height: 250px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 162, 77, 0.16), transparent 48%),
    linear-gradient(135deg, #191919, #42413d);
  color: var(--gold);
  border: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
  padding: 24px;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(201, 162, 77, 0.14), transparent 32%),
    var(--black);
  color: #ddd6ca;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 38px;
  padding-bottom: 40px;
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: #ddd6ca;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-grid h4 {
  color: var(--gold);
  margin: 0 0 12px;
  font-family: var(--heading);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 18px;
  color: #aaa198;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #07180d;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  border: 3px solid var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(8, 8, 8, 0.98);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius);
    padding: 12px 14px;
  }

  .nav-links a::after {
    left: 14px;
    right: auto;
    width: 42px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }

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

  .values-grid,
  .pricing-grid,
  .testimonial-grid,
  .product-grid,
  .product-grid.six {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .navbar {
    min-height: 74px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 210px;
  }

  .nav-links {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 86px 0 94px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats span {
    min-width: 0;
  }

  .hero-card {
    padding: 22px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .category-grid,
  .service-grid,
  .gallery-grid,
  .values-grid,
  .pricing-grid,
  .testimonial-grid,
  .product-grid,
  .product-grid.six {
    grid-template-columns: 1fr;
  }

  .portfolio-story {
    grid-template-columns: 1fr;
  }

  .portfolio-story img {
    min-height: 230px;
    aspect-ratio: 4 / 3;
  }

  .feature-card,
  .info-card,
  .service-card,
  .price-card,
  blockquote,
  .contact-form,
  .contact-panel {
    padding: 22px;
  }

  .product-card > div,
  .product-body {
    padding: 22px;
  }

  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .price-card.featured,
  .price-card.featured:hover {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 78px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 158px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    padding-inline: 14px;
  }
}
