:root {
  --bg:        #020817;
  --bg-light:  #0f172a;
  --white:     #ffffff;
  --gray:      #9ca3af;
  --gray-dark: #4b5563;
  --max-w:     1280px;
  --font-display: "Playfair Display", "Noto Serif TC", serif;
  --font-ui:  "Karla", "Noto Sans TC", system-ui, sans-serif;
  --font-body: "Noto Sans TC", system-ui, sans-serif;

  /* 奢華金色 */
  --gold:       #C9A96E;
  --gold-dim:   rgba(201, 169, 110, 0.12);
  --gold-line:  rgba(201, 169, 110, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.75;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(2, 8, 23, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
  padding: 0.5rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap img {
  height: 113px;
  width: auto;
  filter: invert(1);
}

/* logo-text-block 隱藏：文字已包含在圖片內 */
.logo-text-block { display: none; }

.site-nav { display: flex; gap: 2.2rem; }

.site-nav a {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.2s;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold); }

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

/* ── HERO ── */
.hero {
  background: var(--bg);
  min-height: min(1150px, 100svh);
  padding: clamp(6rem, 16vh, 14rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 0.75rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.6rem;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--gray);
  letter-spacing: 0.12em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

/* badge: 圖片本身已包含 circle icon + 中文標籤，直接顯示完整圖片 */
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge img {
  width: 76px;
  height: auto;
  object-fit: contain;
  filter: invert(1);   /* 圖是黑色線稿，反轉成白色 */
}

.badge-medical {
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-medical svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  margin-top: 0.4rem;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: var(--gray);
  line-height: 2;
  max-width: 560px;
  margin-top: 0.6rem;
}

/* ── CTA 按鈕 ── */
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  background: var(--gold);
  color: #0a0804;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.22);
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* 右側產品圖：絕對定位，從 hero 頂部撐到底 */
.hero-right-abs {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.hero-right-abs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

/* 佔位讓 grid 保持兩欄 */
.hero-right-spacer {
  min-height: 1px;
}

/* ── ABOUT ── */
.about-section {
  padding: 7rem 0;
  background: var(--white);
  color: #111827;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--gold-line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
}

.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-label {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.about-logo {
  height: 106px;
  width: auto;
  margin: 0.8rem 0 1.2rem;
}

.about-body p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: #4b5563;
  line-height: 2;
}

.about-body p + p { margin-top: 0.6rem; }

.about-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.about-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.about-icon-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: none;
}

.about-icon-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

/* ── OVERLAY SECTIONS (獨家貼紙技術, 專業印刷設備) ── */
.overlay-section {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.overlay-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.overlay-dim {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.75);
  z-index: 1;
}

.overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.overlay-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.overlay-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold-line);
  margin: 0.9rem auto 1rem;
}

.overlay-text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto;
  line-height: 2.1;
}

/* ── PRODUCT SHOWCASE (首頁大圖) ── */
.showcase-section {
  background: var(--bg);
  padding: 0;
}

.showcase-section img {
  width: 100%;
  height: min(900px, 90vh);
  object-fit: cover;
  display: block;
}

/* ── PRODUCT GALLERY ── */
.gallery-section {
  background: var(--bg);
  padding: 0;
}

.gallery-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-grid-2 .gallery-main {
  aspect-ratio: 4/3;
}

.gallery-grid-2 .gallery-side {
  aspect-ratio: 4/3;
}

.gallery-grid-3 > div {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-grid-3 > div img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-grid-3 > div:hover img {
  transform: scale(1.05);
}

/* ── STICKER SHOWCASE ── */
.sticker-showcase {
  width: 100%;
  background: var(--bg);
}

.sticker-showcase img {
  width: 100%;
  height: min(900px, 100vh);
  object-fit: cover;
  display: block;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--gold-line);
  padding: 10rem 0 5rem;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.footer-logo-wrap img {
  height: 140px;
  width: auto;
  filter: invert(1);
  margin-bottom: 0.5rem;
}

/* footer 文字已在圖片內，隱藏重複的 span */
.footer-logo-en,
.footer-logo-cn { display: none; }

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--gray);
  margin-bottom: 1.8rem;
}

.footer-info span::before {
  content: '';
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--gray-dark);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 24px; height: 24px; fill: currentColor; }

.footer-address {
  font-style: normal;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--gray-dark);
  margin-bottom: 1.2rem;
}

.footer-copy {
  font-size: clamp(0.88rem, 1vw, 1rem);
  color: var(--gray-dark);
}

/* ── PAGE HERO (menu / portfolio) ── */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-dim {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.7);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.page-hero h1::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin: 0.7rem auto 0;
}

.page-hero p {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── MENU PAGE ── */
.products-section {
  background: var(--white);
  color: #111827;
  padding: 5rem 0;
}

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.product-block:last-child { margin-bottom: 0; }

.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.6rem;
}

.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #111827;
  letter-spacing: 0.01em;
}

.product-info p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: #4b5563;
  line-height: 2;
  margin-bottom: 0.8rem;
}

.brands-section {
  background: var(--white);
  color: #111827;
  padding: 4rem 0 5rem;
  border-top: 1px solid #e5e7eb;
}

.brand-block {
  margin-bottom: 3.5rem;
  text-align: center;
}

.brand-block:last-child { margin-bottom: 0; }

.brand-name {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* ── PORTFOLIO PAGE ── */
.portfolio-intro {
  background: var(--white);
  color: #4b5563;
  text-align: center;
  padding: 2.5rem 0 0;
  font-size: 0.92rem;
}

.portfolio-section {
  background: var(--white);
  padding: 2.5rem 0 5rem;
}

.portfolio-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.portfolio-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.portfolio-full {
  margin-bottom: 1rem;
}

.portfolio-section img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── 作品集 hover ── */
.portfolio-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.portfolio-item img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.22) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.portfolio-item:hover::after {
  opacity: 1;
}

.portfolio-grid-2 img { aspect-ratio: 1; }
.portfolio-grid-3 img { aspect-ratio: 1; }
.portfolio-full  img { aspect-ratio: 21/9; }

/* ── 作品集 Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 23, 0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
}

.lightbox-close:hover { color: var(--gold); }

.portfolio-item { cursor: zoom-in; }

/* ══════════════════════════════════════════
   RESPONSIVE WEB DESIGN
   Breakpoints:
     Tablet : ≤ 1024px
     Mobile : ≤ 640px
══════════════════════════════════════════ */

/* ── 漢堡選單按鈕 ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
  z-index: 300;
  position: relative;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── 遮罩層 ── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.visible {
  display: block;
  opacity: 1;
}

/* ── TABLET ≤1024px ── */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }

  /* Header — 啟用漢堡選單 */
  .hamburger { display: flex; }
  .header-inner { min-height: 90px; }
  .logo-wrap img { height: 80px; }

  /* Nav 變成側滑抽屜 */
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100dvh;
    background: #0a1628;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    z-index: 175;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0,0,0,0.5);
  }

  .site-nav.open { right: 0; }

  .site-nav a {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.06em;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s, padding-left 0.2s;
  }

  .site-nav a:last-child { border-bottom: none; }

  .site-nav a:hover,
  .site-nav a.active {
    color: var(--white);
    padding-left: 0.5rem;
  }

  /* 隱藏桌面版底線動畫 */
  .site-nav a::after { display: none; }

  /* Hero */
  .hero { padding: 8rem 0 5rem; min-height: 900px; }
  .hero-title { font-size: clamp(3rem, 6vw, 4.5rem); }
  .hero-right-abs { width: 45%; }

  /* About */
  .about-section { padding: 6rem 0; min-height: auto; }
  .about-grid { gap: 3rem; }

  /* Overlay */
  .overlay-section { min-height: 700px; }
  .overlay-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }

  /* Showcase */
  .showcase-section img { height: 700px; }
  .sticker-showcase img { height: 1000px; }

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

  /* Products */
  .product-block { gap: 2.5rem; }

  /* Portfolio */
  .portfolio-grid-3 { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .site-footer { padding: 7rem 0 3rem; }
  .footer-logo-wrap img { height: 110px; }
}

/* ── MOBILE ≤640px ── */
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }

  /* Header */
  .header-inner { min-height: 88px; }
  .logo-wrap img { height: 78px; }

  /* Hero */
  .hero {
    padding: 5rem 0 4rem;
    min-height: auto;
  }

  .hero-right-abs { display: none; }

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

  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); white-space: normal; }
  .hero-sub { font-size: 0.95rem; letter-spacing: 0.08em; }

  .hero-badges { gap: 0.6rem; }
  .badge img { width: 60px; }
  .badge-medical { width: 60px; height: 60px; }

  .hero-desc { font-size: 1rem; }

  /* About */
  .about-section { padding: 4rem 0; min-height: auto; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img img { aspect-ratio: 4/3; }

  .about-title { font-size: 1.8rem; }

  .about-icons { gap: 1rem; }
  .about-icon-item img { width: 40px; height: 40px; }

  /* Overlay sections */
  .overlay-section { min-height: 500px; }
  .overlay-content { padding: 2rem 0; }
  .overlay-title { font-size: 2rem; }
  .overlay-text { font-size: 1rem; }

  /* Showcase */
  .showcase-section img { height: 300px; }

  /* Gallery */
  .gallery-grid-3 { grid-template-columns: 1fr; }
  .gallery-section img { }

  /* Sticker */
  .sticker-showcase img { height: 400px; }

  /* Footer */
  .site-footer { padding: 4rem 0 2rem; }
  .footer-logo-wrap img { height: 80px; }
  .footer-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .footer-social svg { width: 24px; height: 24px; }

  /* Page hero */
  .page-hero { padding: 6rem 0 3rem; }
  .page-hero h1 { font-size: 2rem; }

  /* Products page */
  .product-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-block.reverse { direction: ltr; }
  .product-info h2 { font-size: 1.3rem; }
  .products-section { padding: 3rem 0; }
  .brands-section { padding: 3rem 0; }
  .brand-logos img { height: 44px; }

  /* Portfolio */
  .portfolio-grid-2 { grid-template-columns: 1fr; }
  .portfolio-grid-3 { grid-template-columns: 1fr 1fr; }
  .portfolio-full img { aspect-ratio: 4/3; }
  .portfolio-section { padding: 1.5rem 0 3rem; }
}
