:root {
  --cream: #f3eeea;
  --paper: #f9f7f4;
  --ink: #221c19;
  --ink-soft: #6b5f58;
  --rose: #dc8c8b;
  --rose-deep: #c2706f;
  --rose-text: #a04a45;
  --rose-soft: #edc5c5;
  --apricot: #ffb28e;
  --apricot-soft: #ffdec0;
  --sage: #c0d8c0;
  --sage-deep: #7fa47a;
  --line: rgba(34, 28, 25, 0.12);
  --display: "Fraunces", serif;
  --body: "General Sans", "Segoe UI", sans-serif;
  --shadow: 0 30px 60px -30px rgba(34, 28, 25, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  color: var(--rose-deep);
}

p { margin: 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  border-radius: 50%;
  background: var(--dot, var(--rose));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dot, var(--rose)) 25%, transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--rose-deep); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

/* Scroll progress thread */
.thread-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
}
.thread-progress-line {
  stroke: var(--rose);
  stroke-width: 3;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 80ms linear;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 160, 122, 0.22) 0%, rgba(201, 160, 122, 0.09) 45%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 300;
  opacity: 0;
  transition: opacity 500ms ease;
  will-change: transform;
}
.cursor-glow.active { opacity: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 238, 234, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}
.brand-mark {
  position: relative;
  height: 42px;
  width: 68px;
  display: block;
}
.brand-mark img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 84px;
  width: auto;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
}
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.main-nav a.active:not(.nav-cta) { color: var(--rose-text); }
.main-nav a.active:not(.nav-cta)::after { transform: scaleX(1); background: var(--rose-text); }
.nav-cta {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--paper);
  transition: background-color 220ms ease;
}
.nav-cta:hover { background: var(--rose-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { padding: 90px 0 70px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.5;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 26px;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  min-height: 460px;
}
.thread-hero { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.thread-path { stroke-dasharray: 4 8; }

.hero-blob {
  position: relative;
  width: 78%;
  aspect-ratio: 4 / 5;
  margin-left: auto;
  clip-path: path("M199,4 C289,-6 380,55 392,150 C404,246 372,340 289,384 C206,428 92,428 39,354 C-14,280 4,166 55,95 C97,37 141,10 199,4 Z");
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
}
.hero-blob img { width: 100%; height: 100%; object-fit: cover; }

.hero-pin {
  position: absolute;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--paper);
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}
.hero-pin img { aspect-ratio: 1; object-fit: cover; }

.hero-pin-1 {
  bottom: -6%;
  left: -4%;
  width: 34%;
  --pin-rot: -8deg;
  transform: rotate(var(--pin-rot));
}
.hero-pin-2 {
  bottom: -12%;
  left: 32%;
  width: 25%;
  --pin-rot: 6deg;
  transform: rotate(var(--pin-rot));
  animation-duration: 8s;
  animation-delay: -2.5s;
}
.hero-pin-3 {
  bottom: -8%;
  right: -8%;
  width: 25%;
  --pin-rot: 9deg;
  transform: rotate(var(--pin-rot));
  animation-duration: 6.5s;
  animation-delay: -4s;
}

.hero-badge {
  position: absolute;
  top: -2%;
  right: 2%;
  width: 108px;
  height: 108px;
  z-index: 2;
  animation: spin 22s linear infinite;
}
.hero-badge svg { width: 100%; height: 100%; }
.hero-badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--rose-deep);
  animation: spin-reverse 22s linear infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(var(--pin-rot, 0deg)) translateY(0); }
  50% { transform: rotate(var(--pin-rot, 0deg)) translateY(-10px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }

/* Page intro (interior pages) */
.page-intro { padding: 64px 0 10px; }
.page-intro h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.08; margin-bottom: 18px; }
.page-intro p { color: var(--ink-soft); font-size: 17px; max-width: 60ch; }

/* Quicklinks (home explore cards) */
.quicklinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.quicklink {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--dot) 7%, var(--paper));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 26px 32px;
  display: block;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.quicklink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--dot);
}
.quicklink:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 45px -25px color-mix(in srgb, var(--dot) 60%, transparent);
}
.quicklink .dot {
  width: 13px;
  height: 13px;
  min-width: 13px;
  margin-bottom: 20px;
}
.quicklink h3 { font-size: 20px; margin-bottom: 8px; }
.quicklink p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.quicklink .arrow { font-family: var(--display); font-style: italic; color: var(--rose-text); font-size: 15px; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: color-mix(in srgb, var(--dot) 7%, var(--paper));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 30px 32px;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--dot);
}
.testimonial .quote-mark {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 60px;
  line-height: 1;
  color: var(--dot);
  opacity: 0.6;
  margin-bottom: 4px;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: var(--display);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
}
.testimonial figcaption {
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.testimonial figcaption span { font-weight: 400; opacity: 0.75; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--cream); text-align: center; }
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: var(--paper); margin-bottom: 18px; }
.cta-band p { color: rgba(243, 238, 234, 0.75); font-size: 17px; margin-bottom: 32px; }
.cta-band .btn-primary { background: var(--paper); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--rose); color: var(--ink); }

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  animation: marquee 32s linear infinite;
}
.marquee .sep { color: var(--apricot); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section shared */
section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.15; }
.section-head.light .eyebrow { color: var(--apricot-soft); }
.section-head.light h2 { color: var(--paper); }

/* Services */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.service-list li {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 260ms ease;
}
.service-list li:hover { padding-left: 14px; }
.service-list .dot { margin-top: 9px; }
.service-list h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.service-list p { color: var(--ink-soft); max-width: 52ch; }

/* Method */
.method {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.method-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.method-list::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--apricot) 0 6px, transparent 6px 14px);
}
.method-num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  color: var(--apricot);
  font-size: 15px;
  margin-bottom: 18px;
}
.method-list h3 { color: var(--paper); font-size: 20px; margin-bottom: 10px; }
.method-list p { color: rgba(243, 238, 234, 0.68); font-size: 14.5px; }

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.featured-grid { grid-template-columns: repeat(4, 1fr); }
.work-item {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.work-item.shape-blob {
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease;
}
.work-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--paper);
  background: linear-gradient(to top, rgba(34,28,25,0.82) 0%, rgba(34,28,25,0.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 260ms ease;
  font-size: 14px;
}
.work-item figcaption span {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 3px;
}
.work-item:hover figcaption { opacity: 1; }
.work-cta {
  margin-top: 46px;
  font-size: 17px;
  color: var(--ink-soft);
}
.work-cta a {
  color: var(--rose-text);
  font-weight: 600;
  border-bottom: 1.5px solid var(--rose);
}

/* Case studies */
.case-study { padding: 90px 0; border-bottom: 1px solid var(--line); }
.case-study-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: start;
}
.case-study.reverse .case-study-inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.case-study.reverse .case-study-copy { order: 2; }
.case-study.reverse .case-study-visual { order: 1; }
.case-study-copy h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin: 8px 0 20px; }
.case-study-copy p { color: var(--ink-soft); font-size: 16.5px; max-width: 42ch; line-height: 1.65; }
.case-hero {
  margin: 0 0 20px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.case-hero img { width: 100%; height: 100%; object-fit: cover; }
.case-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.case-carousel::-webkit-scrollbar { display: none; }
.case-carousel img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-shadow: 0 14px 26px -14px rgba(34, 28, 25, 0.3);
}
.identity-visual { display: flex; gap: 24px; }
.identity-visual .case-hero { flex: 1.3; margin-bottom: 0; }
.identity-visual .identity-secondary {
  flex: 1;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.identity-visual .identity-secondary img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1000px) {
  .case-study-inner { grid-template-columns: minmax(0, 1fr); }
  .case-study.reverse .case-study-inner { grid-template-columns: minmax(0, 1fr); }
  .case-study.reverse .case-study-copy,
  .case-study.reverse .case-study-visual { order: 0; }
  .case-hero { aspect-ratio: 16 / 10; }
  .identity-visual { flex-direction: column; }
}
@media (max-width: 480px) {
  .identity-visual { flex-direction: column; }
  .case-carousel img { width: 100px; height: 100px; }
}

/* Websites (video showcase) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.video-card {
  margin: 0;
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--ink);
}
.video-card figcaption {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.video-card figcaption span {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 3px;
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* Studio */
.studio-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.studio-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.studio-quote {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 26px;
}
.studio-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 58ch; }
.studio-sign {
  font-family: var(--display);
  font-style: italic;
  color: var(--rose-text) !important;
  font-size: 18px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.value {
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--dot) 7%, var(--paper));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 26px 30px;
}
.value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--dot);
}
.value .dot {
  width: 13px;
  height: 13px;
  min-width: 13px;
  margin-bottom: 18px;
}
.value h3 { font-size: 19px; margin-bottom: 8px; }
.value p { color: var(--ink-soft); font-size: 15px; }

/* Contact */
.contact { background: var(--paper); position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.35;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.contact-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 20px; line-height: 1.15; }
.contact-copy > p { color: var(--ink-soft); font-size: 17px; max-width: 42ch; margin-bottom: 34px; }
.contact-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.contact-list svg { width: 20px; height: 20px; color: var(--rose-deep); flex-shrink: 0; }
.contact-list a:hover { color: var(--rose-text); }
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}
.social-row svg { width: 18px; height: 18px; }
.social-row a:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.contact-form {
  background: var(--cream);
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
}
.contact-form label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 16px;
}
.contact-form input, .contact-form textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 13px 4px;
  border: none;
  border-bottom: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--rose-deep);
}
.contact-form button { margin-top: 26px; align-self: flex-start; }
.contact-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.form-status { margin: 16px 0 0; font-size: 14.5px; min-height: 1em; }
.form-status-success { color: var(--sage-deep); font-weight: 600; }
.form-status-error { color: var(--rose-text); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 70px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.95fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo { height: 68px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(243, 238, 234, 0.65); font-size: 14.5px; max-width: 32ch; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--apricot);
  margin: 0 0 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.footer-col a { color: rgba(243, 238, 234, 0.85); }
.footer-col a:hover { color: var(--apricot); }
.footer-col > a { display: block; margin-bottom: 10px; font-size: 14.5px; }
.footer-col p { color: rgba(243, 238, 234, 0.65); font-size: 14.5px; line-height: 1.6; margin-top: 4px; }
.footer-social { gap: 10px; }
.footer-social a {
  width: 44px;
  height: 44px;
  border-color: rgba(243, 238, 234, 0.22);
  color: var(--cream);
}
.footer-social a:hover { background: var(--apricot); border-color: var(--apricot); color: var(--ink); }

.footer-bottom {
  border-top: 1px solid rgba(243, 238, 234, 0.12);
  padding: 22px 0;
}
.footer-note { font-size: 13px; color: rgba(243, 238, 234, 0.5); margin: 0; text-align: center; }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; min-height: 400px; }
  .studio-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .method-list { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .method-list::before { display: none; }
  .quicklinks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px 34px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 280ms ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .method-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero { padding-top: 50px; }
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .quicklinks { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .hero::before { width: 300px; height: 300px; top: -100px; right: -100px; opacity: 0.45; filter: blur(65px); }
  .contact::before { width: 240px; height: 240px; bottom: -80px; left: -70px; opacity: 0.4; filter: blur(55px); }
}

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