/* ===== WOOF WOOF PET PHOTOGRAPHY ===== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&family=Raleway:wght@600;700;800;900&family=Josefin+Sans:wght@600;700&display=swap');

:root {
  --black: #1a1a1a;
  --gray-text: #4a4a4a;
  --gray-light: #f1f1f1;
  --gray-mid: #e5e5e5;
  --accent: #8a96a3;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--black);
  line-height: 2.1;
  letter-spacing: 0.06em;
  background: #fff;
}

h1, h2, h3, .logo-text, nav a, .btn {
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
}

a { text-decoration: none; color: inherit; }
img {
  max-width: 100%;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Header / Nav ---- */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 14px 32px;
  border-bottom: 1px solid var(--gray-mid);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.site-header .brand      { grid-column: 1; grid-row: 1; }
.site-header nav         { grid-column: 3; grid-row: 1 / 3; align-self: center; }
.site-header .nav-toggle { grid-column: 3; grid-row: 1; }

.header-tagline {
  grid-column: 1;
  grid-row: 2;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #999;
  white-space: nowrap;
  margin-top: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dog-wrap { position: relative; display: inline-flex; }
.brand .dog-icon { height: 40px; width: auto; opacity: 0.45; }
.dog-eye { display: none; }

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text .name {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
  color: #4a4a4a;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
}

.brand-text .sub {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: #888;
  -webkit-text-stroke: 0.4px #888;
  white-space: nowrap;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

nav a:hover,
nav a.active {
  border-bottom-color: #4a4a4a;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #4a4a4a;
  cursor: pointer;
}

.nav-socials {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}

.nav-socials a {
  color: #aaa;
  border-bottom: none;
  padding-bottom: 0;
  transition: color .2s;
  line-height: 1;
}

.nav-socials a:hover {
  color: var(--black);
  border-bottom: none;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 78vh;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 56px;
  color: #fff;
}

.hero-content h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: .5px;
  transition: opacity .2s;
}

.btn:hover { opacity: .8; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

/* ---- Section generic ---- */
.section {
  padding: 80px 0;
}

.section-eyebrow {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 2px;
  color: #4a4a4a;
}

.section-quote {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 50px;
  color: var(--gray-text);
}

.section-sub {
  text-align: center;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ---- About page ---- */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
}

.about-block img {
  width: 100%;
  border-radius: 4px;
}

.about-block .quote {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}

.about-block p { margin-bottom: 18px; color: var(--gray-text); }
.about-block .section-eyebrow { color: #aaa; }

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

.gallery-grid .item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-light);
}

.gallery-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.gallery-grid--4col { grid-template-columns: repeat(4, 1fr); }
.gallery-grid--5col { grid-template-columns: repeat(5, 1fr); }
.gallery-grid--6col { grid-template-columns: repeat(6, 1fr); }

/* ---- Masonry (磚牆式) ---- */
.gallery-masonry {
  columns: 4;
  column-gap: 6px;
}

.gallery-masonry .item {
  break-inside: avoid;
  margin-bottom: 6px;
  background: var(--gray-light);
}

.gallery-masonry .item img {
  width: 100%;
  display: block;
}

.gallery-grid .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

/* ---- Pricing cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.price-card .photo {
  height: 100%;
  min-height: 260px;
  background: var(--gray-mid);
  overflow: hidden;
}

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

.price-card .info {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}

.price-card .info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.price-card .info .price {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.price-card .info ul {
  list-style: none;
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.price-card .info ul li { margin-bottom: 5px; padding-left: 14px; position: relative; }
.price-card .info ul li::before {
  content: '•';
  position: absolute;
  left: 0;
}

.price-card { text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }

.price-card--noimg {
  grid-template-columns: 1fr;
  border-top: 3px solid var(--accent);
}
.price-card--noimg .info { padding: 32px 30px; }

.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  margin-top: auto;
  padding-top: 6px;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.btn-detail::after { content: '→'; transition: transform .2s; }
.price-card:hover .btn-detail::after { transform: translateX(3px); }

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 5px 13px;
  border-radius: 999px;
  z-index: 3;
}

.badge--budget   { background: #6b5c4a; color: #fff; border: none; }
.badge--memorial { background: #6b5c4a; color: #fff; border: none; }
.badge--family   { background: #6b5c4a; color: #fff; border: none; }

.badge--ribbon {
  top: 0;
  right: 0;
  font-size: 10px;
  padding: 5px 10px 8px;
  border-radius: 0;
  border: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}
.badge--seasonal { background: #fff; color: #2a6030; border: 1.5px solid #8abf90; }
.badge--growth   { background: #fff; color: #2a3f8a; border: 1.5px solid #90a4d4; }

/* ---- Shop grid (plan overview cards) ---- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 60px;
}

.shop-card {
  display: block;
  background: var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.shop-card .thumb {
  aspect-ratio: 1/1;
  background: var(--gray-mid);
  overflow: hidden;
}

.shop-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.shop-card .info { padding: 18px 20px 22px; }

.shop-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--gray-text);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.shop-card h3 { font-size: 17px; margin-bottom: 6px; }

.shop-card .price-range {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.shop-card .view-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border: 1px solid var(--black);
  border-radius: 2px;
}

/* ---- Plan detail page ---- */
.detail-back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--gray-text);
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.detail-hero .gallery-main {
  aspect-ratio: 1/1;
  background: var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
}

.detail-hero .gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.detail-hero--noimg {
  grid-template-columns: 1fr;
  max-width: 640px;
  padding-top: 8px;
  border-top: 3px solid var(--accent);
}

.detail-hero .info h1 {
  font-size: 28px;
  margin-bottom: 4px;
}

.detail-hero .info .theme-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--gray-text);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.detail-hero .info .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
}

.detail-hero .info .price-block {
  display: flex;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  margin-bottom: 22px;
}

.detail-hero .info .price-block div span {
  display: block;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.detail-hero .info .price-block div strong {
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
}

.detail-hero .info ul.spec-list {
  list-style: none;
  margin-bottom: 26px;
}

.detail-hero .info ul.spec-list li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--gray-mid);
  font-size: 14px;
  color: var(--gray-text);
  display: flex;
  justify-content: space-between;
}

.detail-hero .info ul.spec-list li b { color: var(--black); }

.detail-hero .info ul.spec-list li.addon-row {
  color: #888;
  font-weight: 600;
}
.detail-hero .info ul.spec-list li.addon-row b { color: #888; }

.price-card.addon-card .info h3 { color: inherit; }

.section-subtitle { font-size: 15px; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 4px; color: var(--black); }

.detail-section { margin-bottom: 36px; }
.detail-section h3 { font-size: 16px; margin-bottom: 12px; }
.detail-section p, .detail-section li { color: var(--gray-text); font-size: 14px; }
.detail-section ul, .detail-section ol { padding-left: 20px; }
.detail-section ul li, .detail-section ol li { margin-bottom: 6px; }

/* ---- 色系三欄格 ---- */
.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.color-item h4 { font-size: 14px; margin: 12px 0 6px; }
.color-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #888;
  font-size: 13px;
  text-align: center;
  line-height: 1.8;
}
.color-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.color-img-wrap--blue   { background: #c8dce8; }
.color-img-wrap--yellow { background: #f0d98a; }
.color-img-wrap--purple { background: #d0c0d8; }
.color-img-wrap--pink   { background: #f2c9d3; }

/* ---- 規則：一行一個分類，清楚分開 ---- */
.info-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.info-group .info-row { border-bottom: none; }
.info-group .info-row:last-child { border-bottom: 1px solid var(--gray-mid); }
.info-row .label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
}
.info-row .value {
  color: var(--gray-text);
  font-size: 14px;
}

.detail-section h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 22px 0 4px;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
}
.detail-section h4:first-of-type { margin-top: 6px; }

.theme-table-wrap { overflow-x: auto; margin-bottom: 40px; }

table.theme-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}

table.theme-table th, table.theme-table td {
  border: 1px solid var(--gray-mid);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

table.theme-table th {
  background: var(--black);
  color: #fff;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}

table.theme-table tr:nth-child(even) { background: var(--gray-light); }

.addon-list, .rules-list {
  background: var(--gray-light);
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.addon-list h3, .rules-list h3 {
  font-size: 17px;
  margin-bottom: 14px;
}

.addon-list ul, .rules-list ol {
  color: var(--gray-text);
  font-size: 14px;
  padding-left: 20px;
}

.addon-list ul li, .rules-list ol li { margin-bottom: 8px; }

/* ---- FAQ Accordion (faq.html) ---- */
.faq-accordion { margin-bottom: 40px; }

.faq-acc-item {
  border-bottom: 1px solid var(--gray-mid);
}

.faq-acc-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
  color: var(--black);
}

.faq-acc-icon {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s;
  color: var(--gray-text);
}

.faq-acc-item.open .faq-acc-icon { transform: rotate(45deg); }

.faq-acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-acc-item.open .faq-acc-a { max-height: 400px; }

.faq-acc-a p {
  font-size: 14px;
  color: var(--gray-text);
  padding-bottom: 18px;
}

.faq-acc-a a {
  color: #4a7c96;
  font-weight: 600;
  text-decoration: underline;
}

.faq-list { margin-bottom: 40px; }
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  font-family: 'Poppins', 'Noto Sans TC', sans-serif;
}
.faq-a {
  font-size: 14px;
  color: var(--gray-text);
}
.faq-a a {
  color: #4a7c96;
  text-decoration: underline;
  font-weight: 600;
}

.note-box {
  border-left: 3px solid var(--black);
  padding: 14px 20px;
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 32px;
  background: var(--gray-light);
}

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

.commercial-grid .item {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  overflow: hidden;
}

.commercial-grid .item img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Contact page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.contact-item:first-child { border-top: 1px solid var(--gray-mid); }
.contact-item--socials { border-bottom: none; }

.contact-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-item p {
  color: var(--gray-text);
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-item a { color: var(--gray-text); }
.contact-item a:hover { color: var(--black); }

.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: opacity .2s;
}
.socials a:hover { opacity: .7; }

.map-embed--tall { height: 460px; }

.section--gray { background: var(--gray-light); }

/* ---- Studio photo grid ---- */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 60px;
}

.studio-grid .item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
  position: relative;
}

.studio-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.studio-grid .item:hover img { transform: scale(1.05); }

.studio-grid .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  text-align: center;
}

.map-embed {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 4px;
  filter: grayscale(0.3);
}

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 4px 32px rgba(0,0,0,.10);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--black);
  font-size: 26px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  opacity: .45;
  transition: opacity .2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  opacity: .3;
  transition: opacity .2s;
  padding: 20px;
  user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover { opacity: .9; }

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

footer.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 0;
  font-size: 12px;
  color: var(--gray-text);
  border-top: 1px solid var(--gray-mid);
}

.footer-ig, .footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-text);
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}
.footer-ig:hover, .footer-fb:hover { color: var(--black); }

.footer-divider { color: var(--gray-mid); }

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

.blog-card { display: block; }
.blog-card .thumb {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 13px;
}

.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--gray-text); }

/* ---- Responsive ---- */
@media (max-width: 880px) {
  nav { display: none; }
  nav.open {
    display: block;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
    z-index: 200;
    overflow-y: auto;
  }
  nav.open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  nav.open ul li { border-bottom: 1px solid var(--gray-mid); }
  nav.open ul li:first-child { border-top: 1px solid var(--gray-mid); }
  nav.open a {
    display: block;
    padding: 20px 32px;
    font-size: 16px;
    letter-spacing: 0.08em;
    border-bottom: none;
    text-align: left;
  }
  nav.open a.active { color: var(--accent); }
  .nav-toggle { display: block; }
  .nav-toggle.open { font-size: 22px; }
  body.nav-locked { overflow: hidden; }
  .about-block, .price-card, .pricing-grid, .detail-hero { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid--4col, .commercial-grid, .shop-grid, .studio-grid, .color-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-embed--tall { height: 300px; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
  .section-title { font-size: 22px; letter-spacing: 1px; }
  .section-quote { font-size: 16px; }
  .price-card .photo { height: auto; min-height: 0; aspect-ratio: 1 / 1; }
  .detail-hero .gallery-main { max-width: 320px; margin: 0 auto; }
  footer.site-footer { flex-wrap: wrap; row-gap: 8px; text-align: center; }
  footer.site-footer .footer-divider:last-of-type { display: none; }
}
