/* =========================================================
   DREAMWALLS BLOG PAGE / GRASSCLOTH
   File location: blog-pages/blog-pages.css
   ========================================================= */

:root {
  --site-container: 1200px;

  --gc-bg: #f7f3ee;
  --gc-surface: rgba(255, 255, 255, 0.86);
  --gc-surface-soft: #f8f3ec;
  --gc-text: #1d1a17;
  --gc-muted: #6f675f;
  --gc-line: rgba(32, 26, 20, 0.12);
  --gc-accent: #b38a5a;
  --gc-accent-dark: #8a693f;
  --gc-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  --gc-shadow-soft: 0 12px 26px rgba(17, 24, 39, 0.06);
  --gc-radius-xl: 28px;
  --gc-radius-lg: 20px;
  --gc-radius-md: 14px;
  --gc-container: 1080px;
  --gc-text-width: 760px;

  --footer-text: rgba(255, 255, 255, 0.93);
  --footer-line: rgba(255, 255, 255, 0.14);
  --footer-hover: rgba(239, 222, 166, 0.85);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body.grasscloth-page {
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 35%),
    linear-gradient(180deg, #faf8f6 0%, #f3f0eb 48%, #f6f3ef 100%);
  color: var(--gc-text);
  font-family: "Montserrat", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--gc-accent-dark);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

a:hover {
  color: var(--gc-accent);
}

/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  min-height: 72px;
  background: rgba(23, 22, 19, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar-inner {
  width: min(var(--site-container), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  margin-left: 0;
}

.brand strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

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

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transition: width 0.28s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav a[aria-current="page"] {
  opacity: 1;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* =========================================================
   PAGE LAYOUT
   ========================================================= */

.gc-page {
  padding: 112px 20px 82px;
}

.gc-container {
  width: min(var(--gc-container), 100%);
  margin: 0 auto;
}

.gc-section[id],
.gc-cta[id] {
  scroll-margin-top: 100px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.gc-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gc-accent-dark);
}

.gc-h1,
.gc-h2,
.gc-box-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: #171411;
  letter-spacing: 0.01em;
}

.gc-h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.97;
  margin-bottom: 24px;
}

.gc-h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.03;
  margin-bottom: 18px;
}

.gc-box-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.gc-copy {
  max-width: var(--gc-text-width);
}

.gc-copy p,
.gc-copy li,
.gc-intro p,
.gc-important p,
.gc-facts li {
  font-size: 16px;
  line-height: 1.82;
  color: var(--gc-text);
}

.gc-copy p,
.gc-intro p,
.gc-important p {
  margin: 0;
}

.gc-copy p + p,
.gc-intro p + p {
  margin-top: 14px;
}

/* =========================================================
   CARDS / SECTIONS
   ========================================================= */

.gc-hero,
.gc-section,
.gc-cta {
  background: var(--gc-surface);
  border: 1px solid rgba(179, 138, 90, 0.12);
  box-shadow: var(--gc-shadow);
  border-radius: var(--gc-radius-xl);
  padding: clamp(24px, 4vw, 42px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gc-hero {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 243, 236, 0.88)
  );
  margin-bottom: 8px;
}

.gc-section,
.gc-cta {
  margin-top: 26px;
}

.gc-intro {
  max-width: var(--gc-text-width);
}

.gc-facts {
  max-width: 760px;
  margin-top: 24px;
  padding: 22px;
  background: var(--gc-surface-soft);
  border: 1px solid rgba(179, 138, 90, 0.16);
  border-radius: var(--gc-radius-lg);
  box-shadow: var(--gc-shadow-soft);
}

.gc-important {
  max-width: 760px;
  margin-top: 18px;
  padding: 14px 18px;
  background: #fffaf4;
  border-left: 3px solid var(--gc-accent);
  border-radius: 12px;
}

.gc-important strong {
  color: var(--gc-accent-dark);
}

.gc-list {
  margin: 10px 0 0;
  padding-left: 22px;
}

.gc-list li + li {
  margin-top: 4px;
}

/* =========================================================
   SPLIT LAYOUTS
   ========================================================= */

.gc-split {
  display: grid;
  gap: 24px;
  align-items: start;
}

.gc-split--text-photo {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 330px);
}

.gc-split--photo-text {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  align-items: center;
}

/* =========================================================
   PHOTO STYLES
   ========================================================= */

.gc-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--gc-radius-lg);
  background: #fff;
  border: 1px solid var(--gc-line);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.gc-photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
}

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

.gc-photo-card--small img {
  aspect-ratio: 1 / 1.12;
}

.gc-photo-card--medium img {
  aspect-ratio: 4 / 4.6;
}

.gc-photo-card--wide {
  margin-top: 22px;
  max-width: 820px;
}

.gc-photo-card--wide img {
  aspect-ratio: 16 / 10;
}

.gc-gallery {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

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

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

.gc-gallery--three .gc-photo-card img,
.gc-gallery--damage .gc-photo-card img {
  aspect-ratio: 1 / 1;
}

.gc-gallery--two .gc-photo-card img {
  aspect-ratio: 4 / 3;
}
/* =========================================================
   SECTION 8 / SYMMETRY GRID
   ========================================================= */

.gc-section--symmetry .gc-copy {
  max-width: 760px;
}

.gc-symmetry-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gc-photo-card--symmetry {
  margin: 0;
}

.gc-photo-card--symmetry img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* =========================================================
   SECTION 2 / MATERIALS
   ========================================================= */

.gc-section--materials .gc-copy--materials {
  max-width: 820px;
}

.gc-materials-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.gc-material-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--gc-line);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.gc-material-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
}

.gc-material-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gc-material-caption {
  padding: 12px 14px 14px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-accent-dark);
  background: linear-gradient(180deg, #fffdf9 0%, #f7f1e9 100%);
  border-top: 1px solid rgba(179, 138, 90, 0.14);
}

/* =========================================================
   CTA
   ========================================================= */

.gc-cta {
  background: linear-gradient(180deg, #fffaf4 0%, #f3e7d9 100%);
  border: 1px solid rgba(179, 138, 90, 0.18);
}

/* =========================================================
   FOOTER
   ========================================================= */

.dw-footer {
  background:
    linear-gradient(rgba(18, 18, 16, 0.78), rgba(18, 18, 16, 0.78)),
    url("../images/foot5.jpg");
  background-size: cover;
  background-position: center;
  color: var(--footer-text);
  padding: 30px 16px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dw-footer__inner {
  width: min(var(--site-container), calc(100% - 12px));
  margin: 0 auto;
}

.dw-footer__cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 52px;
  align-items: stretch;
}

.dw-footer__col {
  min-width: 0;
}

.dw-footer__col--right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dw-footer__vline {
  width: 1px;
  background: var(--footer-line);
  align-self: stretch;
  border-radius: 1px;
}

.dw-footer__block {
  margin-top: 28px;
}

.dw-footer__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.dw-footer__subtitle {
  font-size: 15px;
  opacity: 0.9;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}

.dw-footer__subtitle::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--footer-line);
}

.dw-footer__label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  margin: 14px 0 8px;
}

.dw-footer__label--big {
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.dw-footer__text {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.94;
  margin-bottom: 18px;
}

.dw-link,
.dw-svc,
.dw-city {
  color: var(--footer-text);
  text-decoration: none;
}

.dw-link:hover,
.dw-svc:hover,
.dw-city:hover {
  color: var(--footer-hover);
}

.dw-footer__services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dw-footer__socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 6px;
}

.dw-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    opacity 0.18s ease;
}

.dw-social i {
  font-size: 28px;
  line-height: 1;
}

.dw-social:hover {
  transform: translateY(-1px);
}

.dw-social:hover .fa-instagram {
  color: #ed4ea8;
}

.dw-social:hover .fa-whatsapp {
  color: #25d366;
}

.dw-social:hover .fa-envelope {
  color: #d1d5db;
}

.dw-social:hover .fa-google {
  color: #4285f4;
}

.dw-social:hover .fa-facebook-f {
  color: #1877f2;
}

.dw-social:hover .fa-thumbtack {
  color: #00b3a4;
}

.dw-social:hover .fa-yelp {
  color: #d32323;
}

.dw-social:hover .fa-houzz {
  color: #4dbc15;
}

.dw-social:hover .fa-youtube {
  color: #ff0000;
}

.dw-footer__cities {
  margin-top: 10px;
  line-height: 1.95;
  font-size: 15px;
}

.dw-city.is-static {
  opacity: 0.92;
  cursor: default;
}

.dw-dot {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.55;
  font-size: 14px;
  line-height: 1;
}

.dw-dot::before {
  content: "|";
}

.dw-footer__hline {
  height: 1px;
  background: var(--footer-line);
  border-radius: 1px;
  margin: 18px 0 12px;
}

.dw-footer__bottom {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.82;
}
/* =========================================================
   UNTRIMMED WALLPAPER PAGE ADDITIONS
   Add below current blog-pages.css
   ========================================================= */

/* figcaption for all blog photo cards */
.gc-photo-card figcaption {
  padding: 12px 14px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gc-muted);
  background: linear-gradient(180deg, #fffdfb 0%, #f8f3ec 100%);
  border-top: 1px solid rgba(179, 138, 90, 0.12);
}

/* quick facts grid */
.gc-facts-grid {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
}

.gc-facts-grid li::marker,
.gc-list--clean li::marker {
  color: var(--gc-accent-dark);
}

.gc-list--clean {
  max-width: 720px;
  margin: 18px 0 0;
}

/* portrait photo for section 2 */
.gc-photo-card--portrait {
  max-width: 330px;
}

.gc-photo-card--portrait img {
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

/* process photo for section 4 */
.gc-photo-card--process {
  margin-top: 22px;
  max-width: 620px;
}

.gc-photo-card--process img {
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

/* final result photo */
.gc-photo-card--final {
  max-width: 860px;
}

/* section 3 cards */
.gc-method-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gc-method-card {
  padding: 22px 20px;
  background: linear-gradient(180deg, #f8f3ec 0%, #f3ede6 100%);
  border: 1px solid rgba(179, 138, 90, 0.14);
  border-radius: 18px;
  box-shadow: var(--gc-shadow-soft);
}

.gc-method-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.08;
  color: #171411;
  letter-spacing: 0.01em;
}

.gc-method-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.76;
  color: var(--gc-text);
}

/* section 7 text-only should stay cleaner */
.gc-section--text-only .gc-copy {
  max-width: 760px;
}

/* related service links */
.gc-links {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
}

.gc-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 18px 16px;
  text-align: center;
  background: linear-gradient(180deg, #fffdfa 0%, #f7f1e9 100%);
  border: 1px solid rgba(179, 138, 90, 0.16);
  border-radius: 16px;
  box-shadow: var(--gc-shadow-soft);
  color: var(--gc-accent-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.gc-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
  border-color: rgba(179, 138, 90, 0.28);
  color: var(--gc-accent);
}

/* slightly tighter service section */
.gc-section--services .gc-copy {
  max-width: 760px;
}
/* =========================================================
   START BLOCK IN BLOG CARD STYLE
   Matches gc-section / gc-cta visual system
   ========================================================= */

.dw-start-wrap {
  margin-top: 26px;
}

.dw-start-card {
  background: var(--gc-surface);
  border: 1px solid rgba(179, 138, 90, 0.12);
  box-shadow: var(--gc-shadow);
  border-radius: var(--gc-radius-xl);
  padding: clamp(24px, 4vw, 42px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dw-start-card__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.dw-start-card__title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.12;
  font-weight: 500;
  color: #171411;
  letter-spacing: 0.01em;
}

.dw-start-card__text {
  max-width: 760px;
  margin: 0 auto 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.82;
  font-weight: 400;
  color: var(--gc-text);
}

.dw-start-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(179, 138, 90, 0.16);
  background: linear-gradient(180deg, #fffdfa 0%, #f7f1e9 100%);
  box-shadow: var(--gc-shadow-soft);

  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gc-accent-dark);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}

.dw-start-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
  border-color: rgba(179, 138, 90, 0.28);
  color: var(--gc-accent);
  background: linear-gradient(180deg, #fffdfb 0%, #f4ecdf 100%);
}

.dw-start-card__button:focus-visible {
  outline: 2px solid var(--gc-accent);
  outline-offset: 4px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .dw-start-card__inner {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .dw-start-wrap {
    margin-top: 22px;
  }

  .dw-start-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .dw-start-card__title {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
    margin-bottom: 14px;
  }

  .dw-start-card__text {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .dw-start-card__button {
    min-width: 144px;
    min-height: 42px;
    padding: 10px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .dw-start-card {
    padding: 18px 14px;
    border-radius: 18px;
  }
}
/* =========================================================
   TABLET ADDITIONS
   ========================================================= */
@media (max-width: 1100px) {
  .gc-method-grid,
  .gc-links {
    grid-template-columns: 1fr;
  }

  .gc-photo-card--portrait,
  .gc-photo-card--process,
  .gc-photo-card--final {
    max-width: 100%;
  }
}

/* =========================================================
   MOBILE ADDITIONS
   ========================================================= */
@media (max-width: 768px) {
  .gc-facts-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 18px;
  }

  .gc-method-grid {
    gap: 14px;
  }

  .gc-method-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .gc-method-title {
    font-size: 25px;
    margin-bottom: 8px;
  }

  .gc-method-card p {
    font-size: 14px;
    line-height: 1.72;
  }

  .gc-photo-card--portrait img,
  .gc-photo-card--process img,
  .gc-photo-card--final img {
    aspect-ratio: 4 / 3;
  }

  .gc-link-card {
    min-height: 68px;
    padding: 16px 14px;
    font-size: 13px;
  }

  .gc-photo-card figcaption {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* =========================================================
   SMALL MOBILE ADDITIONS
   ========================================================= */
@media (max-width: 480px) {
  .gc-facts-grid {
    padding-left: 16px;
  }

  .gc-method-card {
    padding: 16px 14px;
  }

  .gc-method-title {
    font-size: 23px;
  }

  .gc-link-card {
    border-radius: 14px;
    letter-spacing: 0.03em;
  }
}
/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .gc-page {
    padding: 104px 18px 70px;
  }

  .gc-split--text-photo,
  .gc-split--photo-text {
    grid-template-columns: 1fr;
  }

  .gc-split--photo-text .gc-photo-card {
    order: 1;
  }

  .gc-split--photo-text .gc-copy {
    order: 2;
  }

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

  .gc-gallery--three .gc-photo-card:last-child {
    grid-column: 1 / -1;
  }

  .gc-photo-card--wide {
    max-width: 100%;
  }

  .dw-footer__cols {
    gap: 34px;
  }
}

/* =========================================================
   MOBILE NAV
   ========================================================= */

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 18, 16, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .mobile-nav a:first-child {
    border-top: 0;
  }

  .mobile-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
  }

  .dw-footer__cols {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dw-footer__vline {
    display: none;
  }

  .dw-footer__col--right {
    justify-content: flex-start;
  }
}
/* =========================================================
   UNTRIMMED WALLPAPER PAGE - PHOTO LAYOUT ADJUSTMENTS
   ========================================================= */

/* SECTION 1: 3 square photos */
#what-is-untrimmed-wallpaper .gc-gallery--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

#what-is-untrimmed-wallpaper .gc-gallery--three .gc-photo-card {
  margin: 0;
}

#what-is-untrimmed-wallpaper .gc-gallery--three .gc-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* SECTION 4: 2 square photos */
#why-untrimmed-wallpaper-costs-more .gc-gallery--cost {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

#why-untrimmed-wallpaper-costs-more .gc-gallery--cost .gc-photo-card {
  margin: 0;
}

#why-untrimmed-wallpaper-costs-more .gc-gallery--cost .gc-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Optional: make captions a bit cleaner */
#what-is-untrimmed-wallpaper .gc-photo-card figcaption,
#why-untrimmed-wallpaper-costs-more .gc-photo-card figcaption {
  padding-top: 10px;
  line-height: 1.45;
}

/* Tablet */
@media (max-width: 900px) {
  #what-is-untrimmed-wallpaper .gc-gallery--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #why-untrimmed-wallpaper-costs-more .gc-gallery--cost {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  #what-is-untrimmed-wallpaper .gc-gallery--three,
  #why-untrimmed-wallpaper-costs-more .gc-gallery--cost {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .topbar {
    min-height: 64px;
  }

  .topbar-inner {
    min-height: 64px;
    width: calc(100% - 24px);
  }

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

  .gc-page {
    padding: 92px 12px 48px;
  }

  .gc-hero,
  .gc-section,
  .gc-cta {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .gc-h1 {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 0.98;
    margin-bottom: 18px;
  }

  .gc-h2 {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.06;
    margin-bottom: 14px;
  }

  .gc-box-title {
    font-size: 25px;
    line-height: 1.08;
  }

  .gc-copy p,
  .gc-copy li,
  .gc-intro p,
  .gc-important p,
  .gc-facts li {
    font-size: 15px;
    line-height: 1.75;
  }

  .gc-facts {
    padding: 18px;
  }

  .gc-gallery--two,
  .gc-gallery--three {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gc-gallery--three .gc-photo-card:last-child {
    grid-column: auto;
  }

  .gc-photo-card--small img,
  .gc-photo-card--medium img,
  .gc-gallery--three .gc-photo-card img,
  .gc-gallery--two .gc-photo-card img,
  .gc-gallery--damage .gc-photo-card img,
  .gc-photo-card--wide img {
    aspect-ratio: 4 / 3;
  }

  .gc-split {
    gap: 18px;
  }

  .dw-footer {
    padding: 24px 14px 22px;
  }

  .dw-footer__brand {
    font-size: 27px;
  }

  .dw-footer__subtitle,
  .dw-footer__text,
  .dw-footer__cities {
    font-size: 14px;
  }

  .dw-footer__socials {
    gap: 15px;
  }

  .dw-social i {
    font-size: 30px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .topbar-inner {
    width: calc(100% - 20px);
  }

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

  .gc-page {
    padding: 88px 10px 42px;
  }

  .gc-hero,
  .gc-section,
  .gc-cta {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .gc-h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .gc-h2,
  .gc-box-title {
    line-height: 1.05;
  }

  .gc-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .gc-copy p,
  .gc-copy li,
  .gc-intro p,
  .gc-important p,
  .gc-facts li {
    font-size: 14px;
    line-height: 1.72;
  }

  .gc-list {
    padding-left: 18px;
  }

  .dw-footer__brand {
    font-size: 24px;
  }

  .dw-dot {
    margin: 0 8px;
  }

  .dw-footer__bottom {
    font-size: 22px;
  }
}
