﻿:root {
  --ink: #151d26;
  --muted: #5f6b78;
  --line: #d9dee5;
  --paper: #f3f5f7;
  --white: #ffffff;
  --navy: #102235;
  --navy-2: #172b42;
  --blue: #1f5f9f;
  --blue-dark: #164776;
  --accent: #c58a2b;
  --shadow: 0 18px 42px rgba(21, 29, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 15px clamp(20px, 5vw, 78px);
  background: rgba(16, 34, 53, 0.97);
  color: var(--white);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(8, 16, 26, 0.28);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

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

.site-nav a {
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .nav-phone {
  margin-left: 10px;
  background: var(--accent);
  color: #101820;
  font-weight: 900;
}

.site-nav .nav-phone:hover {
  background: #d9a548;
  color: #101820;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  background: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 92px) clamp(24px, 5vw, 78px);
}

.hero-media {
  position: relative;
  min-height: 620px;
  border: 0;
  border-left: 1px solid var(--line);
  cursor: zoom-in;
}

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

.hero-carousel {
  background: #dbe3ea;
}

.carousel-track {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #dbe3ea;
  cursor: zoom-in;
  opacity: 0;
  padding: 0;
  transition: opacity 0.45s ease;
}

.carousel-slide.is-active {
  z-index: 2;
  opacity: 1;
}

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

.carousel-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 5;
  display: grid;
  gap: 4px;
  max-width: min(430px, calc(100% - 48px));
  background: rgba(16, 34, 53, 0.88);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
}

.carousel-caption strong,
.carousel-caption small {
  display: block;
}

.carousel-caption strong {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.2;
}

.carousel-caption small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 44px;
  height: 58px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(16, 34, 53, 0.74);
  color: var(--white);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.carousel-control:hover {
  background: var(--navy);
}

.carousel-control.prev {
  left: 18px;
}

.carousel-control.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  right: 22px;
  bottom: 28px;
  z-index: 8;
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--accent);
  border-color: var(--accent);
}

.hero-carousel .image-badge {
  top: 20px;
  bottom: auto;
}

.image-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  background: rgba(16, 34, 53, 0.86);
  color: var(--white);
  font-weight: 700;
  padding: 8px 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.06;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.3;
}

.hero-text {
  max-width: 690px;
  color: #45515f;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 22px;
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(31, 95, 159, 0.2);
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.btn.phone-btn {
  background: var(--accent);
  color: #101820;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(197, 138, 43, 0.22);
}

.btn.phone-btn:hover {
  background: #d9a548;
}

.hero-contact-panel {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 0 0 22px;
  border: 1px solid #d7b16f;
  border-left: 5px solid var(--accent);
  background: #fffaf0;
  padding: 16px 18px;
}

.hero-phone {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-contact-panel address {
  margin: 0;
  color: #40524e;
  font-style: normal;
  font-weight: 700;
}

.map-address {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.map-link {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: 6px 12px;
}

.map-link:hover {
  background: var(--blue-dark);
}

.address-text {
  color: #40524e;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  border-top: 3px solid var(--accent);
  background: #f7f9fb;
  padding: 16px;
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.hero-map-component {
  overflow: hidden;
  max-width: 720px;
  min-height: 260px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  background: #dbe3ea;
  box-shadow: 0 12px 28px rgba(21, 29, 38, 0.08);
}

.hero-map-component .amap-view {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.storefront-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 78px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.storefront-photo {
  min-height: 420px;
  border: 0;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

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

.storefront-copy {
  display: grid;
  gap: 16px;
}

.storefront-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.storefront-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.storefront-info {
  display: grid;
  gap: 8px;
  border: 1px solid #d7b16f;
  border-left: 5px solid var(--accent);
  background: #fffaf0;
  padding: 14px 16px;
}

.storefront-info a {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.storefront-info span {
  color: #40524e;
  font-weight: 700;
}

.storefront-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.storefront-tags span {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--white);
  color: #40524e;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
}

.section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 5vw, 78px);
}

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

.section-heading p:not(.eyebrow),
.supporting-section p {
  color: var(--muted);
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 76px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #d9e1e8;
  box-shadow: 0 10px 26px rgba(21, 29, 38, 0.08);
}

.product-card > div:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  padding: 16px;
  background: linear-gradient(180deg, rgba(10, 19, 30, 0), rgba(10, 19, 30, 0.8) 28%, rgba(10, 19, 30, 0.92));
}

.product-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}
.product-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(6),
.product-card:nth-child(7),
.product-card:nth-child(8),
.product-card:nth-child(11) {
  grid-column: span 2;
  grid-row: span 7;
}

.product-card:nth-child(4),
.product-card:nth-child(5),
.product-card:nth-child(9) {
  grid-column: span 3;
  grid-row: span 3;
}

.product-card:nth-child(10) {
  grid-column: span 3;
  grid-row: span 4;
}

.product-label {
  margin-bottom: 8px;
  color: var(--blue) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card .product-label {
  margin: 0 0 8px;
  color: #ffd083 !important;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  background: #e6ebf0;
}

.photo-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.zoomable {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #e6ebf0;
  text-align: left;
}

.zoomable:hover img {
  transform: scale(1.025);
}

.product-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  cursor: zoom-in;
}

.product-photo img {
  object-fit: cover;
  padding: 0;
}

.gallery-section {
  background: var(--navy);
  color: var(--white);
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section .eyebrow {
  color: #82bff4;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 700;
  padding: 8px 13px;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--white);
  color: var(--navy);
}

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

.gallery-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-thumb {
  height: 300px;
  cursor: zoom-in;
}

.gallery-grid figcaption {
  display: grid;
  gap: 4px;
  min-height: 84px;
  padding: 14px;
}

.gallery-grid strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

.gallery-grid span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.supporting-section {
  background: #eef2f5;
}

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

.supply-grid div {
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  padding: 22px;
}

.supply-grid strong {
  color: var(--navy);
  font-size: 19px;
}

.supply-grid span {
  color: var(--muted);
}

.cooking-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(18px, 3vw, 30px);
}

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

.cooking-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
}

.cooking-copy p:not(.product-label) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.cooking-copy ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding-left: 20px;
  color: #40524e;
}

.cooking-video {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: #dbe3ea;
}

.cooking-video video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(56px, 7vw, 86px) clamp(20px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.map-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 5px solid var(--accent);
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 10px 26px rgba(21, 29, 38, 0.07);
}

.map-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
}

.map-copy p:not(.eyebrow) {
  margin: 12px 0 22px;
  color: #40524e;
  font-size: 17px;
  font-weight: 700;
}

.map-component {
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--line);
  background: #dbe3ea;
  box-shadow: var(--shadow);
}

.map-component .amap-view {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
.amap-store-marker {
  position: relative;
  display: inline-flex;
  max-width: 220px;
  align-items: center;
  border: 1px solid rgba(16, 34, 53, 0.14);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  padding: 8px 10px;
  box-shadow: 0 8px 18px rgba(21, 29, 38, 0.16);
}


.amap-store-marker:hover {
  border-left-color: var(--blue);
  color: var(--blue-dark);
}
.amap-store-marker::after {
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(16, 34, 53, 0.14);
  border-bottom: 1px solid rgba(16, 34, 53, 0.14);
  background: rgba(255, 255, 255, 0.96);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.amap-store-marker span {
  position: relative;
  z-index: 1;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(6, 12, 20, 0.9);
  padding: 28px;
}

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

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  background: var(--white);
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 5vw, 78px);
  background: #0d1824;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  color: var(--white);
}

@media (max-width: 1180px) {
  .hero,
  .storefront-section,
  .cooking-feature,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 460px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .storefront-photo {
    min-height: 360px;
  }

  .product-grid {
    grid-auto-rows: 76px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card:nth-child(n) {
    grid-column: span 2;
  }

  .product-card:nth-child(4),
  .product-card:nth-child(5),
  .product-card:nth-child(9) {
    grid-row: span 3;
  }

  .product-card:nth-child(10) {
    grid-row: span 4;
  }

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

  .supply-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cooking-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    background: var(--navy);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .nav-phone {
    margin-left: 0;
    text-align: center;
  }

  h1 {
    font-size: 38px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 310px;
  }
  .hero-map-component {
    min-height: 240px;
  }

  .hero-map-component .amap-view {
    height: 240px;
  }

  .carousel-caption {
    left: 14px;
    right: 14px;
    bottom: 54px;
    max-width: none;
    padding: 12px 14px;
  }

  .carousel-control {
    width: 38px;
    height: 50px;
    font-size: 28px;
  }

  .carousel-control.prev {
    left: 12px;
  }

  .carousel-control.next {
    right: 12px;
  }

  .carousel-dots {
    right: 14px;
    bottom: 18px;
  }

  .storefront-section {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .storefront-photo {
    min-height: 260px;
  }

  .hero-stats,
  .gallery-grid,
  .supply-grid,
  .cooking-feature {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .product-card:nth-child(4),
  .product-card:nth-child(5),
  .product-card:nth-child(9),
  .product-card:nth-child(10) {
    min-height: 320px;
  }

  .gallery-thumb {
    height: 280px;
  }

  .cooking-feature {
    padding: 16px;
  }

  .cooking-video {
    aspect-ratio: 4 / 3;
  }

  .map-section {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .map-copy {
    padding: 20px;
  }

  .map-component,
  .map-component .amap-view {
    min-height: 320px;
  }
}














.photo-frame picture,
.carousel-slide picture,
.gallery-thumb picture,
.product-photo picture,
.storefront-photo picture,
.category-hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-frame picture img,
.carousel-slide picture img,
.gallery-thumb picture img,
.product-photo picture img,
.storefront-photo picture img,
.category-hero-photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-category-section,
.local-service-section,
.faq-section,
.category-detail-section,
.category-buying-section {
  background: var(--white);
}

.seo-category-grid,
.local-service-grid,
.category-info-grid,
.category-advice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-category-grid a,
.local-service-grid article,
.category-info-grid article,
.category-advice-grid article,
.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}

.seo-category-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
}

.seo-category-grid a:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(21, 29, 38, 0.08);
}

.seo-category-grid strong,
.local-service-grid h3,
.category-info-grid h3,
.category-advice-grid h3 {
  color: var(--navy);
  font-size: 18px;
}

.seo-category-grid span,
.local-service-grid p,
.category-info-grid p,
.category-info-grid li,
.category-advice-grid li,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.faq-list details p {
  margin-top: 10px;
}

.category-page {
  background: var(--paper);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 78px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.category-hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.category-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.category-hero-photo {
  min-height: 430px;
  border: 0;
  padding: 0;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.category-gallery {
  align-items: start;
}

.category-info-grid ul,
.category-advice-grid ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.category-advice-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.category-advice-grid li + li,
.category-info-grid li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .seo-category-grid,
  .local-service-grid,
  .category-info-grid,
  .category-advice-grid,
  .category-hero {
    grid-template-columns: 1fr;
  }

  .category-hero-photo {
    min-height: 320px;
  }
}
