:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --text: #111111;
  --muted: #5f5f5f;
  --line: #dddddd;
  --accent: #111111;
  --max-width: 1120px;
  --narrow-width: 760px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #111111;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--narrow-width));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.site-logo {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #111111;
  border-radius: 999px;
}

.nav-cta:hover {
  background: #111111;
  color: #ffffff;
  text-decoration: none;
}

.hero {
  padding: 84px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.hero-text {
  margin: 28px 0 0;
  max-width: 600px;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: #111111;
  color: #ffffff;
}

.button-primary:hover {
  background: #222222;
}

.button-secondary {
  border: 1px solid #111111;
  color: #111111;
}

.button-secondary:hover {
  background: #111111;
  color: #ffffff;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  background: #e9e9e4;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.intro-strip {
  padding: 22px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.intro-strip-inner p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: #f0f0eb;
}

.section-label {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.section h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: #2d2d2d;
}

.section-intro {
  max-width: 700px;
  color: var(--muted);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.work-list {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.work-item h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.work-item p {
  margin: 0;
  color: var(--muted);
}

.work-item a {
  white-space: nowrap;
  font-weight: 600;
}

.quote-block {
  padding: 40px;
  background: #111111;
  color: #ffffff;
  border-radius: 24px;
}

.quote-block p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a,
.contact-details span {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .site-nav ul {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    padding-top: 56px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-text,
  .section p,
  .intro-strip-inner p,
  .service-card p {
    font-size: 1rem;
  }

  .quote-block {
    padding: 28px;
  }

  .contact-details a,
  .contact-details span {
    font-size: 1.25rem;
  }
}
/* ===== ME PAGE ===== */

.bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.bio-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.bio-copy p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: #2d2d2d;
}

.bio-image-wrap {
  display: flex;
  justify-content: center;
}

.bio-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  background: #e9e9e4;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

/* Responsive */

@media (max-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-image {
    max-width: 100%;
  }
}
/* ===== MINIMAL HOMEPAGE TWEAK ===== */

.hero-minimal {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 72px 0;
}

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

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 20px 0;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
}

.footer-contact-item,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-contact-item:hover,
.footer-social:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 18px;
}

.footer-social span {
  line-height: 1;
}

@media (max-width: 640px) {
  .hero-minimal {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== HOMEPAGE PREVIEW SECTIONS ===== */

.home-preview-section {
  padding: 56px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.home-preview-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.home-preview-label p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-preview-content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-preview-content p {
  margin: 0 0 16px;
  max-width: 760px;
  color: #2d2d2d;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.text-link:hover {
  text-decoration: none;
}

.home-simple-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.home-simple-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: #2d2d2d;
}

.home-simple-list li:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.home-work-preview {
  margin-bottom: 18px;
}

.home-work-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.home-work-item:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.home-work-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.home-work-item p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .home-preview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* ===== WORK THUMBNAILS ON HOMEPAGE ===== */

.home-work-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 18px;
}

.work-thumb {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-thumb:hover {
  text-decoration: none;
}

.work-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #e9e9e4;
  border: 1px solid rgba(17, 17, 17, 0.08);
  margin-bottom: 12px;
}

.work-thumb-copy h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.work-thumb-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ===== LARGE CONTACT BAND ===== */

.contact-band {
  padding: 88px 0 76px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-band-inner {
  text-align: center;
}

.contact-band-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-band-inner a {
  display: block;
  width: fit-content;
  margin: 0 auto 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.contact-band-inner a:hover {
  text-decoration: underline;
}

/* ===== FOOTER WITH NAV ===== */

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding: 28px 0 30px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.footer-meta-left p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-meta-left p:last-child {
  margin-bottom: 0;
}

.footer-meta-left span {
  margin: 0 8px;
  color: var(--muted);
}

.footer-contact-item {
  color: var(--muted);
  text-decoration: none;
}

.footer-contact-item:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-social:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 18px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .home-work-thumbs {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .contact-band {
    padding: 64px 0 56px;
  }

  .contact-band-inner a {
    font-size: 1.5rem;
    word-break: break-word;
  }

  .footer-nav ul {
    justify-content: flex-start;
    gap: 10px 18px;
  }
}
/* ===== WORK PAGE ===== */

.work-hero {
  padding-bottom: 70px;
}

.work-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.work-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  background: #e9e9e4;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.work-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.work-hero-copy p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.work-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.work-section-alt {
  background: #f0f0eb;
}

.work-section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.work-section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.work-section-heading p {
  margin: 0;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.work-card-image {
  display: block;
  text-decoration: none;
}

.work-card-image:hover {
  text-decoration: none;
}

.work-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e9e9e4;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.work-card-body {
  padding: 22px;
}

.work-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.work-card-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.work-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.work-card-actions a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.work-card-actions a:hover {
  text-decoration: none;
}

@media (max-width: 900px) {
  .work-hero-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-hero {
    padding-bottom: 50px;
  }

  .work-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* ===== CLIENTS & CV PAGE ===== */

.clients-intro {
  padding-bottom: 46px;
}

.clients-intro-inner {
  max-width: 760px;
}

.clients-intro-inner h1 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.clients-intro-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.client-logos-section {
  padding-top: 20px;
  padding-bottom: 70px;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 26px;
  align-items: center;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.client-logo-item img {
  max-width: 300px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}

.cv-preview-section {
  padding-top: 20px;
}

.cv-preview-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.cv-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cv-copy p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.cv-preview-card {
  display: block;
  text-decoration: none;
}

.cv-preview-card:hover {
  text-decoration: none;
}

.cv-preview-card img {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border-radius: 18px;
  background: #ecece7;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive */

@media (max-width: 1000px) {
  .client-logos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cv-preview-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cv-preview-card img {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .client-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .client-logo-item {
    min-height: 72px;
  }

  .client-logo-item img {
    max-width: 120px;
    max-height: 48px;
  }
}
.client-logo-item img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 40px;
  align-items: center;
  margin-top: 30px;
}
/* ===== SERVICES PAGE ===== */

.services-intro {
  padding-bottom: 54px;
}

.services-intro-inner {
  max-width: 820px;
}

.services-intro-inner h1 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.services-intro-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.services-list-section {
  padding-top: 24px;
}

.service-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.service-row-label p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.service-row-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-row-content p {
  margin: 0 0 16px;
  max-width: 780px;
  color: #2d2d2d;
}

.service-row-content ul {
  margin: 0;
  padding-left: 18px;
}

.service-row-content li {
  margin: 0 0 8px;
  color: var(--muted);
}

.how-i-work-section {
  background: #f0f0eb;
}

.how-i-work-inner {
  max-width: 820px;
}

.how-i-work-inner h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.how-i-work-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.services-closing-inner {
  max-width: 820px;
}

.services-closing-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services-closing-inner p {
  margin: 0 0 24px;
  color: #2d2d2d;
  max-width: 760px;
}

@media (max-width: 700px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
}
/* ===== NEW WORK PAGE ===== */

.work-page-intro {
  padding-bottom: 44px;
}

.work-page-intro-inner {
  max-width: 820px;
}

.work-page-intro-inner h1 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.work-page-intro-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.work-accordion-section {
  padding-top: 10px;
}

.work-accordion {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.work-accordion:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.work-accordion summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 28px 54px 28px 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.work-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
}

.work-accordion[open] summary::after {
  content: "−";
}

.work-accordion-panel {
  padding: 0 0 34px;
}

.work-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 26px;
  padding-top: 4px;
}

.work-example-card {
  min-width: 0;
}

.work-example-image {
  display: block;
  text-decoration: none;
}

.work-example-image:hover {
  text-decoration: none;
}

.work-example-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e9e9e4;
  border: 1px solid rgba(17, 17, 17, 0.08);
  margin-bottom: 16px;
}

.work-example-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #2f5f98;
}

.work-example-copy p {
  margin: 0;
  color: #2d2d2d;
}

@media (max-width: 800px) {
  .work-example-grid {
    grid-template-columns: 1fr;
  }

  .work-accordion summary {
    padding: 22px 42px 22px 0;
  }
}
/* ===== CONTACT PAGE ===== */

.contact-page-intro {
  padding-bottom: 44px;
}

.contact-page-inner {
  max-width: 820px;
}

.contact-page-inner h1 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.contact-page-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.contact-methods-section {
  padding-top: 10px;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-method-card {
  padding: 26px 0 30px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-method-label {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-method-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-method-card h2 a {
  text-decoration: none;
}

.contact-method-card h2 a:hover {
  text-decoration: underline;
}

.contact-method-card p:last-child {
  margin: 0;
  color: #2d2d2d;
}

.contact-note-section {
  background: #f0f0eb;
}

.contact-note-inner {
  max-width: 820px;
}

.contact-note-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-note-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

@media (max-width: 900px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CONTACT PAGE ===== */

.contact-page-intro {
  padding-bottom: 44px;
}

.contact-page-inner {
  max-width: 820px;
}

.contact-page-inner h1 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.contact-page-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

.contact-methods-section {
  padding-top: 10px;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-method-card {
  min-width: 0;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-method-label {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  display: block;
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-value a {
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-method-card p:last-child {
  margin: 0;
  color: #2d2d2d;
}

.contact-note-section {
  background: #f0f0eb;
}

.contact-note-inner {
  max-width: 820px;
}

.contact-note-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-note-inner p {
  margin: 0 0 16px;
  color: #2d2d2d;
}

@media (max-width: 1100px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}
