/* =====================================================
   OnlyAClick Theme — Main Stylesheet
   ===================================================== */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:   #F6F1EA;
  --bone:    #EAE3D6;
  --charcoal:#1A1816;
  --ink:     #2A2722;
  --muted:   #6A6158;
  --stone:   #B8A990;
  --gold:    #B5904A;
  --gold-l:  #CCA96A;
  --white:   #FDFAF6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

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

a { text-decoration: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--charcoal);
  padding: 9px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-phone {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.topbar-phone a {
  color: var(--stone);
  transition: color .2s;
}
.topbar-phone a:hover { color: var(--gold-l); }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184,169,144,0.55);
  transition: color .2s;
}
.topbar-links a:hover { color: var(--stone); }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--bone);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0 48px;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.site-logo img { height: 44px; width: auto; }
.custom-logo { height: 44px; width: auto; display: block; }

/* WordPress Menu */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  display: block;
  transition: color .2s;
  white-space: nowrap;
}
.main-navigation ul li a:hover { color: var(--ink); }

/* Dropdown */
.main-navigation ul li ul {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--bone);
  min-width: 210px;
  padding: 6px 0;
  display: none;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 12px 40px rgba(26,24,22,.1);
  z-index: 300;
}
.main-navigation ul li:hover > ul { display: flex; }
.main-navigation ul li ul li a {
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.main-navigation ul li ul li a:hover {
  background: var(--cream);
  color: var(--ink);
}

/* Sub-sub dropdown */
.main-navigation ul li ul li { position: relative; }
.main-navigation ul li ul li ul {
  left: 100%;
  top: 0;
}
.main-navigation ul li ul li:hover > ul { display: flex; }

/* CTA nav item */
.main-navigation ul li.nav-cta-item > a,
.main-navigation .nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 11px 24px !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  transition: background .2s !important;
}
.main-navigation ul li.nav-cta-item > a:hover,
.main-navigation .nav-cta:hover {
  background: var(--charcoal) !important;
}

/* Mobile hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: transform .3s, opacity .3s;
}
.menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,24,22,.85) 40%, rgba(26,24,22,.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 48px;
  width: 100%;
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp .6s .1s both;
}
.hero-kicker::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7.5vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 800px;
  animation: fadeUp .7s .25s both;
}
.hero-h1 em { font-style: italic; color: var(--gold-l); }
.hero-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(253,250,246,.65);
  font-weight: 300;
  max-width: 580px;
  margin: 28px 0 44px;
  animation: fadeUp .7s .4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp .7s .55s both;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 15px 40px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-l); color: var(--white); }

.btn-outline {
  color: rgba(253,250,246,.75);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}
.btn-outline:hover { color: var(--white); }
.btn-outline::after { content: '→'; }

.btn-ghost-gold {
  border: 1px solid var(--gold);
  color: var(--gold-l);
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s, color .2s;
  display: inline-block;
}
.btn-ghost-gold:hover { background: var(--gold); color: var(--white); }

.link-arrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s, border-color .2s;
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }
.link-arrow::after { content: '→'; }

/* ── BEFORE / AFTER ── */
.ba-section { background: var(--charcoal); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ba-item { position: relative; overflow: hidden; }
.ba-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .7s ease;
  filter: brightness(.92);
}
.ba-item:hover img { transform: scale(1.03); filter: brightness(1); }
.ba-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(26,24,22,.8), transparent);
}
.ba-tag h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}

/* ── SECTION TYPOGRAPHY ── */
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 18px;
}

/* ── SERVICES ── */
.services-section { background: var(--white); padding: 100px 48px; }
.services-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 28px 0 36px;
  border-top: 1px solid var(--bone);
  border-left: 1px solid var(--bone);
}
.services-list li {
  border-bottom: 1px solid var(--bone);
  border-right: 1px solid var(--bone);
}
.services-list li a {
  display: block;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.services-list li a:hover { background: var(--cream); color: var(--ink); }
.services-list li span {
  display: block;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.services-right { display: flex; flex-direction: column; gap: 3px; }
.srv-card { position: relative; overflow: hidden; }
.srv-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s;
  filter: brightness(.88);
}
.srv-card:hover img { transform: scale(1.04); filter: brightness(1); }
.srv-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(26,24,22,.75), transparent);
}
.srv-card-label span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* ── RECOGNITION ── */
.recognition { background: var(--bone); padding: 72px 48px; }
.recognition-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.recognition-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.recognition-badge-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
}
.recognition-badge-circle span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold-l);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.2;
}
.recognition-badge-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.recognition-text .section-h2 { margin-bottom: 14px; }
.recognition-text .section-body { margin-bottom: 0; }

/* ── RENOVATE ── */
.renovate { padding: 100px 48px; background: var(--cream); }
.renovate-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.renovate-block {
  padding: 52px;
  background: var(--white);
  border: 1px solid var(--bone);
}
.renovate-block .section-h2 { font-size: clamp(28px, 2.5vw, 38px); }
.renovate-actions { margin-top: 28px; }

/* ── PORTFOLIO ── */
.portfolio { padding: 100px 48px; background: var(--charcoal); }
.portfolio-inner { max-width: 1320px; margin: 0 auto; }
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.portfolio-header .section-h2 { color: var(--white); margin-bottom: 0; }
.portfolio-header .section-kicker { margin-bottom: 10px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 280px;
  gap: 3px;
}
.port-item { position: relative; overflow: hidden; cursor: pointer; }
.port-item:nth-child(1) { grid-column: 1/6; grid-row: 1; }
.port-item:nth-child(2) { grid-column: 6/9; grid-row: 1; }
.port-item:nth-child(3) { grid-column: 9/13; grid-row: 1; }
.port-item:nth-child(4) { grid-column: 1/5; grid-row: 2; }
.port-item:nth-child(5) { grid-column: 5/13; grid-row: 2; }
.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  filter: brightness(.85);
}
.port-item:hover img { transform: scale(1.06); filter: brightness(1); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,22,.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
}
.port-cat {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,250,246,.6);
  margin-bottom: 6px;
}
.port-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}
.port-link {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.port-item:hover .port-link { opacity: 1; transform: translateY(0); }
.portfolio-footer { margin-top: 40px; text-align: center; }

/* ── GALLERY ── */
.gallery { background: var(--cream); padding: 80px 48px; }
.gallery-inner { max-width: 1320px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s;
  filter: brightness(.9);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }

/* ── REMNANTS ── */
.remnants { background: var(--charcoal); padding: 80px 48px; }
.remnants-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.remnants .section-h2 { color: var(--white); margin-bottom: 12px; }
.remnants .section-body { color: var(--stone); margin-bottom: 0; max-width: 560px; }

/* ── REVIEWS CTA ── */
.reviews-cta { background: var(--bone); padding: 80px 48px; text-align: center; }
.reviews-cta-inner { max-width: 700px; margin: 0 auto; }
.reviews-cta .section-h2 { margin-bottom: 16px; }
.reviews-cta .section-body { margin-bottom: 32px; }

/* ── CONTACT ── */
.contact { padding: 100px 48px; background: var(--white); }
.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact-left .section-body { margin-bottom: 12px; }
.contact-fullservice {
  margin-top: 40px;
  padding: 36px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.contact-fullservice h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.contact-fullservice p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 16px;
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--cream);
  border: 1px solid var(--bone);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-top: 6px;
  transition: background .2s;
}
.form-submit:hover { background: var(--gold); }

/* ── FOOTER ── */
.site-footer { background: var(--charcoal); padding: 72px 48px 36px; }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(184,169,144,0.12);
  margin-bottom: 32px;
}
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 270px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid rgba(184,169,144,0.2);
  padding: 7px 14px;
  transition: border-color .2s, color .2s;
}
.social-pill:hover { border-color: var(--gold); color: var(--gold-l); }
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: var(--stone); font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-row { display: flex; flex-direction: column; gap: 3px; margin-bottom: 16px; }
.footer-contact-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-contact-val { font-size: 13px; color: var(--stone); font-weight: 300; line-height: 1.6; }
a.footer-contact-val { transition: color .2s; }
a.footer-contact-val:hover { color: var(--white); }
.footer-map iframe { border: 0; display: block; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(184,169,144,0.35);
  letter-spacing: 0.06em;
}
.footer-bottom a { color: rgba(184,169,144,0.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--stone); }

/* ── WP FOOTER MENU ── */
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; }
.footer-nav ul li a { font-size: 13px; color: var(--stone); font-weight: 300; transition: color .2s; }
.footer-nav ul li a:hover { color: var(--white); }

/* ── UTILS ── */
.max { max-width: 1320px; margin: 0 auto; }
.center { text-align: center; }
.center .section-kicker { justify-content: center; }
.center .section-kicker::before { display: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CERTIFICATION BADGES ── */
.cert-badge {
  width: 48px;
  opacity: .7;
  filter: grayscale(1);
  transition: opacity .2s, filter .2s;
}
.cert-badge:hover { opacity: 1; filter: grayscale(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-inner { grid-template-columns: 1fr; gap: 48px; }
  .renovate-inner { grid-template-columns: 1fr; gap: 32px; }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .port-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .topbar { padding: 9px 24px; }
  .site-header { padding: 0 24px; }
  .hero-inner { padding: 80px 24px; }
  .services-section,
  .recognition,
  .renovate,
  .portfolio,
  .gallery,
  .remnants,
  .reviews-cta,
  .contact { padding: 64px 24px; }
  .site-footer { padding: 48px 24px 28px; }

  .menu-toggle { display: flex; }
  .main-navigation {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
    z-index: 1000;
  }
  .main-navigation.is-open { display: flex; }
  .main-navigation ul { flex-direction: column; gap: 4px; width: 100%; }
  .main-navigation ul li a { font-size: 14px; color: var(--stone); padding: 12px 0; }
  .main-navigation ul li ul {
    position: static;
    display: flex;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
  }
  .main-navigation ul li ul li a { font-size: 12px; padding: 8px 0; }
  .main-navigation ul li.nav-cta-item > a {
    margin-top: 16px;
    background: var(--gold);
    padding: 12px 24px !important;
    display: inline-block;
  }

  .ba-grid { grid-template-columns: 1fr; }
  .ba-item img { height: 280px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .remnants-inner { grid-template-columns: 1fr; gap: 32px; }
  .recognition-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .port-item img { height: 260px; }
}
