:root {
  --ink: #171614;
  --paper: #f6f2eb;
  --white: #fff;
  --warm: #ece3d7;
  --line: rgba(23, 22, 20, 0.16);
  --muted: #6f6a62;
  --red: #ed2b1f;
  --red-dark: #bf1d14;
  --font-sans: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Gowun Batang", serif;
  --header-height: 82px;
  --container: 1240px;
}

[hidden] {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary,
select,
input[type="range"] {
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(96px, 11vw, 164px) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-warm {
  background: var(--warm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button-white {
  background: var(--white);
  color: var(--ink);
}

.button-white:hover {
  background: var(--red);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light-link {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.scrolled,
.site-header.menu-visible {
  height: 72px;
  border-color: var(--line);
  background: rgba(246, 242, 235, 0.94);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  min-width: 118px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.brand-ko {
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.9;
  transform: scaleX(1.04);
  transform-origin: left center;
}

.brand-en {
  margin-left: 2px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.17em;
  opacity: 0.88;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  font-size: 13px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 12px 19px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #302b28;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  animation: hero-scale 16s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.78) 0%, rgba(12, 10, 8, 0.46) 45%, rgba(12, 10, 8, 0.1) 76%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.46) 0%, transparent 38%);
}

@keyframes hero-scale {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-height);
}

.hero h1 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(62px, 8.4vw, 124px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.97;
}

.hero h1 em {
  color: #ffaea5;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.hero-copy {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 122px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  writing-mode: vertical-rl;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 88px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
}

.hero-scroll span {
  display: block;
  width: 100%;
  height: 38px;
  background: var(--white);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-40px); }
  60%, 100% { transform: translateY(92px); }
}

/* Shared headings */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(58px, 7vw, 94px);
}

.section-heading h2,
.intro-title h2,
.retouch-copy h2,
.studio-copy h2,
.faq-heading h2,
.contact-copy h2,
.pet-content h2 {
  margin: 0;
  font-size: clamp(45px, 5.4vw, 80px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.12;
}

.section-heading > p,
.dark-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.dark-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 10vw;
  align-items: start;
}

.intro-copy {
  padding-top: 48px;
}

.intro-copy > p {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 2;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(82px, 10vw, 138px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.number-card {
  padding: 42px 32px 38px;
}

.number-card + .number-card {
  border-left: 1px solid var(--line);
}

.number-card strong {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.number-card sup {
  margin-top: 5px;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.number-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Services */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item {
  min-height: 178px;
  display: grid;
  grid-template-columns: 34px 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 36px 32px 0;
  transition: background 180ms ease, padding 180ms ease;
}

.service-item:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.service-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 48px;
}

.service-item:nth-child(even) {
  padding-left: 48px;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.055);
}

.service-num {
  align-self: start;
  padding-top: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #ffb1a9;
  font-size: 18px;
}

.service-item h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.04em;
}

.service-item p {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.service-arrow {
  color: var(--red);
  font-size: 20px;
  transition: transform 180ms ease;
}

.service-item:hover .service-arrow {
  transform: translate(4px, -4px);
}

/* Pet category */
.pet-detail-hero {
  background-image: linear-gradient(90deg, rgba(12, 10, 9, 0.94) 0%, rgba(12, 10, 9, 0.78) 48%, rgba(12, 10, 9, 0.48) 100%), url("pets/pet-hero.webp");
  background-position: center, 76% 38%;
  background-size: cover;
}

.pet-works .section-heading {
  margin-bottom: clamp(42px, 6vw, 78px);
}

.pet-works-grid {
  columns: 4 230px;
  column-gap: 14px;
}

.pet-works-grid figure {
  position: relative;
  break-inside: avoid;
  overflow: hidden;
  margin: 0 0 14px;
  background: #ddd4c8;
}

.pet-works-grid img {
  height: auto;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), filter 240ms ease;
}

.pet-works-grid figure:hover img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.seo-service-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.seo-service-nav a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  transition: background 180ms ease;
}

.seo-service-nav a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.seo-service-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.seo-service-nav strong {
  font-size: 15px;
}

.seo-service-nav span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.6;
}

/* Search service pages */
.service-detail-page {
  background: var(--paper);
}

.service-detail-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background: radial-gradient(circle at 78% 25%, rgba(237, 43, 31, 0.25), transparent 31%), linear-gradient(135deg, #171614 0%, #2c2926 100%);
  color: var(--white);
}

.service-detail-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -20vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.service-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(50px, 9vw, 130px);
}

.service-detail-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(58px, 7.8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.service-detail-hero h1 em {
  display: block;
  color: #ff8c84;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
}

.service-detail-lead {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.9;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.keyword-chips span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
}

.service-detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.service-detail-summary {
  border-top: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.08);
  padding: 34px;
  backdrop-filter: blur(12px);
}

.service-detail-summary dl { margin: 0; }

.service-detail-summary div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0;
}

.service-detail-summary div:first-child { padding-top: 0; }
.service-detail-summary div:last-child { border-bottom: 0; padding-bottom: 0; }
.service-detail-summary dt { color: rgba(255, 255, 255, 0.42); font-size: 9px; font-weight: 800; letter-spacing: 0.14em; }
.service-detail-summary dd { margin: 0; font-size: 13px; line-height: 1.6; }

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
  gap: clamp(58px, 8vw, 120px);
}

.service-detail-main h2,
.service-detail-faq h2,
.related-services h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.service-detail-main > p:not(.eyebrow) {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.service-detail-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.service-detail-points article {
  min-height: 220px;
  border-bottom: 1px solid var(--line);
  padding: 30px 30px 30px 0;
}

.service-detail-points article:nth-child(odd) { border-right: 1px solid var(--line); }
.service-detail-points article:nth-child(even) { padding-left: 30px; }
.service-detail-points span { color: var(--red); font-size: 10px; font-weight: 800; }
.service-detail-points h3 { margin: 18px 0 10px; font-size: 23px; letter-spacing: -0.04em; }
.service-detail-points p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.service-detail-aside {
  position: sticky;
  top: 110px;
  border-top: 5px solid var(--red);
  background: var(--white);
  padding: 32px;
  box-shadow: 0 24px 70px rgba(23, 22, 20, 0.08);
}

.service-detail-aside h2 { margin: 0; font-size: 24px; letter-spacing: -0.04em; }
.service-detail-aside ul { margin: 24px 0 30px; padding: 0; list-style: none; }
.service-detail-aside li { border-top: 1px solid var(--line); padding: 14px 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.service-detail-aside .button { width: 100%; }

.service-detail-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(52px, 8vw, 110px);
}

.service-detail-faq .accordion details:first-child { border-top: 1px solid var(--line); }

.related-services {
  padding: 90px 0;
  background: var(--ink);
  color: var(--white);
}

.related-service-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.related-service-links a {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
}

.related-service-links a + a { border-left: 1px solid rgba(255, 255, 255, 0.2); }
.related-service-links strong { font-size: 14px; }
.related-service-links span { color: rgba(255, 255, 255, 0.5); font-size: 10px; line-height: 1.6; }

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.photo-card {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #d8d0c7;
}

.photo-card-wide {
  grid-column: span 8;
}

.photo-card-tall {
  min-height: 612px;
}

.photo-card:nth-child(4) {
  margin-top: -204px;
}

.photo-card img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.photo-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.photo-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.photo-card figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.photo-card figcaption span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.photo-card figcaption strong {
  font-size: 16px;
}

.image-notice {
  margin: 16px 0 0;
  color: #8a847c;
  font-size: 11px;
  text-align: right;
}

.featured-portfolio-grid .photo-card {
  min-height: 470px;
  margin-top: 0;
}

/* Managed portfolio */
.portfolio-hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 190px 0 96px;
  background: #1d1a18;
  color: var(--white);
}

.portfolio-hero-media,
.portfolio-hero-shade {
  position: absolute;
  inset: 0;
}

.portfolio-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.portfolio-hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.78), rgba(12, 10, 8, 0.18) 72%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.72), transparent 60%);
}

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

.portfolio-hero h1 {
  margin: 0;
  font-size: clamp(64px, 8.2vw, 118px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.portfolio-hero h1 em {
  color: #ff948d;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.09em;
}

.portfolio-hero-content > p:last-child {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.portfolio-browser {
  background: var(--paper);
}

.portfolio-browser-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.portfolio-browser-heading h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.portfolio-count {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 28px 0 46px;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.portfolio-filters button {
  min-width: max-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 17px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.portfolio-filters button:hover,
.portfolio-filters button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.portfolio-gallery {
  columns: 3 320px;
  column-gap: 20px;
}

.event-snap-page .portfolio-gallery {
  margin-top: 46px;
}

.portfolio-entry,
.portfolio-skeleton {
  width: 100%;
  display: inline-block;
  break-inside: avoid;
  margin: 0 0 28px;
}

.portfolio-entry {
  background: var(--white);
}

.portfolio-entry-image {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #d8d0c7;
}

.ratio-square .portfolio-entry-image { aspect-ratio: 1 / 1; }
.ratio-landscape .portfolio-entry-image { aspect-ratio: 4 / 3; }
.ratio-portrait .portfolio-entry-image { aspect-ratio: 4 / 5; }
.ratio-tall .portfolio-entry-image { aspect-ratio: 3 / 4; }

.portfolio-entry-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 250ms ease;
}

.portfolio-entry-image::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  content: "+";
  font-size: 23px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.portfolio-entry-image:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.portfolio-entry-image:hover::after {
  transform: rotate(90deg);
  background: var(--red);
  color: var(--white);
}

.portfolio-entry-meta {
  padding: 20px 21px 23px;
}

.portfolio-entry-meta > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.portfolio-entry-meta time {
  color: #9a948c;
  font-weight: 600;
  letter-spacing: 0;
}

.portfolio-entry-meta h3 {
  margin: 12px 0 0;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.portfolio-entry-meta > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.portfolio-entry-compare {
  padding-top: 12px;
}

.portfolio-compare {
  min-height: 500px;
  margin: 0 12px;
}

.portfolio-skeleton {
  min-height: 410px;
  background: linear-gradient(110deg, #e4ddd4 10%, #f1ebe3 30%, #e4ddd4 50%);
  background-size: 200% 100%;
  animation: portfolio-loading 1.4s linear infinite;
}

.portfolio-skeleton-tall { min-height: 570px; }

@keyframes portfolio-loading {
  to { background-position-x: -200%; }
}

.portfolio-empty {
  border: 1px solid var(--line);
  padding: 58px 28px;
  text-align: center;
}

.portfolio-empty strong {
  font-size: 20px;
}

.portfolio-empty p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.portfolio-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 78px;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}

.portfolio-bottom-cta > p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
}

.portfolio-lightbox {
  width: min(1080px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 0;
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

.portfolio-lightbox[open] {
  display: grid;
}

.portfolio-lightbox::backdrop {
  background: rgba(9, 8, 7, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-media {
  min-height: 72vh;
  background: #181614;
}

.lightbox-media img {
  height: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
}

.lightbox-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 38px;
}

.lightbox-copy > p:first-child {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.lightbox-copy h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.lightbox-copy > p:not(:first-child) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.lightbox-copy time {
  margin-top: 28px;
  color: #938d85;
  font-size: 11px;
}

.lightbox-close {
  width: 48px;
  height: 48px;
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

/* Compare */
.retouch {
  background: var(--white);
}

.retouch-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.24fr);
  align-items: center;
  gap: clamp(52px, 8vw, 116px);
}

.retouch-copy > p:not(.eyebrow):not(.drag-help) {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.check-list span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-right: 9px;
  border-radius: 50%;
  background: #fbe1de;
  color: var(--red);
  font-size: 11px;
}

.drag-help {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 34px 0 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.drag-help span {
  font-size: 20px;
}

.compare-wrap {
  padding: 22px;
  background: var(--paper);
}

.compare {
  --position: 50%;
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #b8a799;
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.compare-before {
  filter: saturate(0.66) contrast(0.92) brightness(0.91);
}

.compare-after {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--position));
}

.compare-after .compare-image {
  filter: saturate(1.04) contrast(1.04) brightness(1.055) sepia(0.035);
}

.compare-label {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  padding: 10px 15px;
  background: rgba(18, 16, 14, 0.64);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  backdrop-filter: blur(8px);
}

.label-before { left: 22px; }
.label-after { right: 22px; }

.compare-line {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--white);
  pointer-events: none;
  transform: translateX(-1px);
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-size: 20px;
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
}

.compare:focus-within .compare-handle {
  outline: 4px solid rgba(237, 43, 31, 0.28);
  outline-offset: 4px;
}

/* Pet */
.pet-banner {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.pet-image,
.pet-overlay {
  position: absolute;
  inset: 0;
}

.pet-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.pet-overlay {
  background: linear-gradient(90deg, rgba(17, 14, 11, 0.88) 0%, rgba(17, 14, 11, 0.56) 42%, rgba(17, 14, 11, 0.03) 73%);
}

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

.pet-content h2 {
  font-size: clamp(55px, 7vw, 100px);
}

.pet-content > p:not(.eyebrow) {
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.8;
}

/* Studio */
.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(58px, 9vw, 132px);
}

.studio-visual {
  position: relative;
}

.studio-image-main {
  min-height: 690px;
  overflow: hidden;
  background: #d9d1c8;
}

.studio-image-main img {
  height: 100%;
  min-height: 690px;
  object-fit: cover;
}

.studio-stamp {
  position: absolute;
  right: -54px;
  bottom: 46px;
  width: 158px;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  transform: rotate(-8deg);
}

.studio-stamp span {
  font-size: 62px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.studio-stamp small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
}

.studio-copy > p:not(.eyebrow) {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.studio-info {
  margin: 38px 0 34px;
  border-top: 1px solid var(--line);
}

.studio-info div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.studio-info dt {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.studio-info dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Process */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23, 22, 20, 0.22);
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(23, 22, 20, 0.22);
}

.process-list li + li {
  border-left: 1px solid rgba(23, 22, 20, 0.22);
}

.process-list span {
  display: block;
  margin-bottom: 56px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.process-list strong {
  display: block;
  font-size: 22px;
}

.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 10vw, 148px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.accordion {
  border-top: 1px solid var(--ink);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  color: var(--red);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 720px;
  margin: -2px 46px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Contact */
.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.direct-contact {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.direct-contact a {
  display: grid;
  grid-template-columns: 80px 1fr 22px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 20px 0;
}

.direct-contact small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.direct-contact strong {
  font-size: 19px;
}

.direct-contact span {
  color: var(--red);
  font-size: 20px;
  transition: transform 180ms ease;
}

.direct-contact a:hover span {
  transform: translate(4px, -4px);
}

.contact-form {
  display: grid;
  gap: 25px;
  border-top: 5px solid var(--red);
  background: var(--white);
  color: var(--ink);
  padding: clamp(28px, 5vw, 52px);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  min-height: 106px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa49c;
}

.privacy-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 9px !important;
  color: var(--muted);
  font-weight: 500 !important;
}

.privacy-check input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--red);
}

.submit-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 60px 0 28px;
  background: #0e0d0c;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.6fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 54px;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.footer-brand strong {
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.9;
}

.footer-brand span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.footer-address p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.footer-social {
  display: grid;
  gap: 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.footer-social a:hover {
  color: #ff7e75;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-quick {
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 980px) {
  :root { --header-height: 72px; }

  .main-nav { gap: 20px; }
  .main-nav > a:not(.nav-cta) { display: none; }

  .hero { min-height: 760px; }
  .hero h1 { font-size: clamp(64px, 11vw, 98px); }

  .intro-grid,
  .retouch-grid,
  .studio-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .intro-copy { max-width: 670px; padding-top: 0; }
  .section-heading { gap: 30px; }

  .service-list { grid-template-columns: 1fr; }
  .service-item:nth-child(odd) { border-right: 0; padding-right: 0; }
  .service-item:nth-child(even) { padding-left: 0; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card,
  .photo-card-wide { grid-column: auto; }
  .photo-card:nth-child(4) { margin-top: -204px; }
  .photo-card:last-child { grid-column: 1 / -1; min-height: 480px; }
  .featured-portfolio-grid .photo-card { min-height: 460px; }

  .portfolio-gallery { columns: 2 300px; }
  .portfolio-lightbox { grid-template-columns: 1fr; overflow-y: auto; }
  .lightbox-media { min-height: 60vh; }
  .lightbox-copy { padding: 34px; }

  .retouch-grid { gap: 70px; }
  .retouch-copy { max-width: 620px; }
  .compare-wrap { width: min(100%, 760px); margin-inline: auto; }

  .studio-grid { gap: 86px; }
  .studio-visual { width: min(88%, 720px); }
  .studio-stamp { right: -70px; }
  .studio-copy { max-width: 690px; }

  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(3) { border-left: 0; }

  .faq-heading { position: static; }
  .accordion { margin-top: 12px; }

  .seo-service-nav,
  .related-service-links { grid-template-columns: 1fr 1fr; }
  .seo-service-nav a + a,
  .related-service-links a + a { border-left: 0; }
  .seo-service-nav a:nth-child(even),
  .related-service-links a:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, 0.2); }
  .seo-service-nav a:nth-child(n+3),
  .related-service-links a:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .service-detail-hero-grid,
  .service-detail-grid,
  .service-detail-faq-grid { grid-template-columns: 1fr; }
  .service-detail-summary { max-width: 620px; }
  .service-detail-aside { position: static; }

  .footer-top { grid-template-columns: 0.7fr 1.3fr; }
  .footer-social { grid-column: 2; }
}

/* Mobile */
@media (max-width: 680px) {
  :root { --header-height: 66px; }
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 88px 0; }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-visible { height: 66px; }

  .brand { min-width: 96px; }
  .brand-ko { font-size: 24px; }
  .brand-en { font-size: 6.5px; }

  .menu-toggle {
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 1002;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: currentColor;
  }

  .menu-toggle span:not(.sr-only) {
    width: 23px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 92px 34px;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.nav-cta) { display: block; font-size: 22px; line-height: 1.35; letter-spacing: -0.035em; }
  .main-nav .nav-cta { width: 100%; min-height: 52px; display: grid; place-items: center; margin-top: 16px; background: var(--red); color: var(--white); font-size: 15px; }

  .seo-service-nav,
  .related-service-links { grid-template-columns: 1fr; }
  .seo-service-nav a,
  .related-service-links a { min-height: 96px; }
  .seo-service-nav a:nth-child(even),
  .related-service-links a:nth-child(even) { border-left: 0; }
  .seo-service-nav a:nth-child(n+2),
  .related-service-links a:nth-child(n+2) { border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .service-detail-hero { min-height: 0; padding: 128px 0 76px; }
  .service-detail-hero h1 { font-size: clamp(49px, 14vw, 68px); }
  .service-detail-lead { font-size: 14px; }
  .service-detail-summary { padding: 25px 22px; }
  .service-detail-points { grid-template-columns: 1fr; }
  .service-detail-points article,
  .service-detail-points article:nth-child(even) { min-height: 0; border-right: 0; padding: 26px 0; }
  .service-detail-main h2,
  .service-detail-faq h2,
  .related-services h2 { font-size: 40px; }
  .service-detail-main > p:not(.eyebrow) { font-size: 14px; }
  .service-detail-aside { padding: 26px 22px; }
  .pet-detail-hero { background-position: center, 58% 34%; }
  .pet-works-grid { columns: 2 130px; column-gap: 9px; }
  .pet-works-grid figure { margin-bottom: 9px; }

  .hero { min-height: 700px; height: 100svh; align-items: end; padding-bottom: 96px; }
  .hero-media img { object-position: 34% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(11, 9, 8, .88) 0%, rgba(11, 9, 8, .54) 54%, rgba(11, 9, 8, .22) 100%); }
  .hero-content { padding-top: 0; }
  .hero .eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(54px, 16.4vw, 78px); line-height: 1.01; }
  .hero-copy { margin-top: 24px; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 30px; }
  .hero-side-note { display: none; }
  .hero-scroll { left: auto; right: 24px; height: 70px; }

  .section-heading { grid-template-columns: 1fr; align-items: start; margin-bottom: 52px; }
  .section-heading h2,
  .intro-title h2,
  .retouch-copy h2,
  .studio-copy h2,
  .faq-heading h2,
  .contact-copy h2,
  .pet-content h2 { font-size: clamp(39px, 12vw, 56px); }
  .section-heading > p { font-size: 14px; }
  .section-heading .button { justify-self: start; }

  .intro-grid { gap: 34px; }
  .intro-copy > p { font-size: 15px; line-height: 1.9; }
  .numbers { grid-template-columns: 1fr; margin-top: 72px; }
  .number-card { display: grid; grid-template-columns: 0.74fr 1fr; align-items: center; gap: 18px; padding: 27px 8px; }
  .number-card + .number-card { border-top: 1px solid var(--line); border-left: 0; }
  .number-card strong { font-size: 46px; }
  .number-card p { margin: 0; line-height: 1.6; }

  .service-item { grid-template-columns: 26px 1fr 22px; min-height: 150px; gap: 15px; padding: 27px 0; }
  .service-icon { display: none; }
  .service-item h3 { font-size: 24px; }
  .service-item p { font-size: 12px; }

  .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
  .photo-card,
  .photo-card-wide,
  .photo-card-tall,
  .photo-card:last-child { grid-column: auto; min-height: 470px; margin-top: 0; }
  .photo-card:nth-child(2),
  .photo-card:nth-child(4) { min-height: 570px; }
  .photo-card figcaption { right: 18px; bottom: 18px; left: 18px; }
  .photo-card figcaption strong { font-size: 14px; }
  .image-notice { text-align: left; line-height: 1.5; }

  .portfolio-hero { min-height: 650px; padding: 150px 0 78px; }
  .portfolio-hero-media img { object-position: 62% center; }
  .portfolio-hero-shade { background: linear-gradient(0deg, rgba(12,10,8,.9), rgba(12,10,8,.25)); }
  .portfolio-hero h1 { font-size: clamp(52px, 15.5vw, 76px); }
  .portfolio-hero-content > p:last-child { margin-top: 26px; font-size: 13px; }
  .portfolio-browser-heading { align-items: flex-start; flex-direction: column; gap: 20px; padding-bottom: 26px; }
  .portfolio-browser-heading h2 { font-size: 46px; }
  .portfolio-count { margin: 0; }
  .portfolio-filters { margin: 22px 0 34px; }
  .portfolio-gallery { columns: 1; }
  .portfolio-entry, .portfolio-skeleton { margin-bottom: 18px; }
  .portfolio-compare { min-height: 520px; }
  .portfolio-bottom-cta { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 58px; padding-top: 40px; }
  .portfolio-lightbox { width: calc(100% - 20px); max-height: calc(100vh - 20px); }
  .lightbox-media { min-height: 0; height: 56vh; }
  .lightbox-media img { max-height: none; }
  .lightbox-copy { padding: 28px 22px 34px; }
  .lightbox-copy h2 { font-size: 25px; }
  .lightbox-close { top: 15px; right: 15px; }

  .retouch-grid { gap: 48px; }
  .compare-wrap { padding: 10px; }
  .compare { min-height: 520px; }
  .compare-handle { width: 50px; height: 50px; }
  .compare-label { bottom: 12px; padding: 8px 10px; font-size: 9px; }
  .label-before { left: 12px; }
  .label-after { right: 12px; }

  .pet-banner { min-height: 680px; align-items: end; padding-bottom: 90px; }
  .pet-image img { object-position: 90% center; }
  .pet-overlay { background: linear-gradient(0deg, rgba(17,14,11,.9), rgba(17,14,11,.42) 66%, rgba(17,14,11,.08)); }
  .pet-content h2 { font-size: clamp(52px, 15vw, 72px); }

  .studio-grid { gap: 70px; }
  .studio-visual { width: calc(100% - 22px); }
  .studio-image-main,
  .studio-image-main img { min-height: 500px; }
  .studio-stamp { right: -26px; bottom: -32px; width: 126px; height: 126px; }
  .studio-stamp span { font-size: 50px; }
  .studio-info div { grid-template-columns: 90px 1fr; }
  .studio-info dd { line-height: 1.55; }

  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; display: grid; grid-template-columns: 42px 1fr; column-gap: 12px; padding: 24px 4px; }
  .process-list li + li,
  .process-list li:nth-child(3) { border-left: 0; }
  .process-list span { grid-row: 1 / 3; margin: 5px 0 0; }
  .process-list p { grid-column: 2; }

  .faq-grid { gap: 46px; }
  .accordion summary { font-size: 15px; line-height: 1.55; }
  .accordion details p { margin-right: 30px; font-size: 13px; }

  .contact-shell { gap: 52px; }
  .direct-contact a { grid-template-columns: 70px 1fr 18px; }
  .direct-contact strong { font-size: 16px; }
  .contact-form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 25px; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-social { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }

  .mobile-quick {
    position: fixed;
    z-index: 990;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  }

  .mobile-quick a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--white); color: var(--ink); font-size: 13px; font-weight: 800; }
  .mobile-quick a:last-child { background: var(--red); color: var(--white); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
