:root {
  --bg:#f4f2ef;
  --surface:#ffffff;
  --surface-2:#ebe7e3;
  --ink:#111111;
  --muted:#6d6865;
  --line:rgba(17,17,17,.12);
  --coral:#ff4f87;
  --coral-soft:#ffe2eb;
  --shadow:0 26px 80px rgba(0,0,0,.10);
  --radius:21px;
  --site-width:min(1220px,calc(100% - 32px));
  }
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden
}
a {
  color:inherit;
  text-decoration:none
}
button,input,textarea {
  font:inherit
}
.page-noise {
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:radial-gradient(circle at 15% 10%,rgba(255,79,135,.16),transparent 22%),radial-gradient(circle at 90% 25%,rgba(0,0,0,.08),transparent 18%),linear-gradient(180deg,#f7f5f2,#eeebe7)
}
.site-header{
    position:sticky;
    top:16px;
    z-index:50;
    width:var(--site-width);
    margin:16px auto 0;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:10px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.32);

    backdrop-filter:blur(28px);
    -webkit-backdrop-filter:blur(28px);

    border:1px solid rgba(255,255,255,.40);

    box-shadow:
        0 10px 30px rgba(0,0,0,.05),
        inset 0 1px 0 rgba(255,255,255,.25);
}
.logo {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  box-shadow:inset 0 0 0 1px var(--line)
}
.logo img {
  width:25px;
  height:auto;
  display:block
}
.nav {
  display:flex;
  align-items:center;
  gap:6px;
  padding:4px;
  border-radius:999px;
  background:#111;
  color:#fff
}
.nav a {
  padding:12px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.76);
  transition:.25s ease
}
.nav a:hover {
  color:#fff;
  background:rgba(255,255,255,.12)
}
.menu-toggle {
  display:none;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#111;
  position:relative
}
.menu-toggle span {
  position:absolute;
  left:13px;
  right:13px;
  height:2px;
  background:#fff;
  border-radius:4px
}
.menu-toggle span:first-child {
  top:17px
}
.menu-toggle span:last-child {
  bottom:17px
}
.hero {
  width:var(--site-width);
  margin:0 auto;
  min-height:calc(100vh - 80px);
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:56px;
  align-items:center;
  padding:92px 0 72px
}
.intro-line {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.16em
}
.intro-line span {
  width:52px;
  height:2px;
  background:var(--coral)
}
h1,h2,h3,p {
  margin-top:0
}
h1 {
  max-width:830px;
  margin-bottom:26px;
  font-size:clamp(56px,8vw,116px);
  line-height:.86;
  letter-spacing:-.08em;
  font-weight:900
}
h2 {
  font-size:clamp(36px,5vw,76px);
  line-height:.93;
  letter-spacing:-.065em;
  margin-bottom:16px
}
h3 {
  font-size:24px;
  letter-spacing:-.045em;
  margin-bottom:6px
}
.lead {
  max-width:680px;
  font-size:20px;
  line-height:1.65;
  color:#3f3b38
}
.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:32px 0
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  transition:.25s ease
}
.btn:hover {
  transform:translateY(-2px)
}
.btn.primary {
  background:var(--ink);
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.15)
}
.btn.ghost {
  background:#fff;
  border:1px solid var(--line)
}
.hero-tags {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px
}
.hero-tags span {
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.55);
  font-size:13px;
  font-weight:700;
  color:var(--muted)
}
.hero-media {
  position:relative;
  min-height:520px;
  display:grid;
  place-items:center
}
.photo-frame {
  width:min(430px,100%);
  aspect-ratio:4/5;
  border-radius:27px;
  overflow:hidden;
  background:var(--surface-2);
  box-shadow:var(--shadow);
  transform:rotate(2deg);
  animation:floatPhoto 6s ease-in-out infinite
}
.photo-frame img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block
}
.floating-card {
  position:absolute;
  padding:16px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  font-size:13px;
  font-weight:800;
  line-height:1.2
}
.floating-card strong {
  color:var(--coral)
}
.card-one{
    left:auto;
    right:-25px;
    top:350px;
    transform:rotate(4deg);
}
.card-two {
  display:none
}
@keyframes floatPhoto {
  0%,100% {
    transform:rotate(2deg) translateY(0)
  }
  50% {
    transform:rotate(1deg) translateY(-12px)
  }
  }
.about-strip {
  width:var(--site-width);
  margin:0 auto 36px;
  padding:34px 38px;
  border-radius:var(--radius);
  background:#111;
  color:#fff;
  box-shadow:var(--shadow)
}
.about-strip p {
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.7
}
.section {
  width:var(--site-width);
  margin:0 auto;
  padding:110px 0
}
.section-title {
  width:100%;
  margin:0 0 42px
}
.section-title p {
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65
}
.section-title strong {
  display:inline-block;
  margin-top:8px;
  color:var(--coral);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em
}
.section-number {
  display:inline-grid;
  place-items:center;
  width:40px;
  height:40px;
  margin-bottom:18px;
  border-radius:50%;
  background:var(--coral-soft);
  color:var(--coral);
  font-size:13px;
  font-weight:900
}
.project-grid {
  width:100%;
  margin:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px
}
.project-card {
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:var(--surface);
  box-shadow:0 12px 40px rgba(0,0,0,.07);
  transition:.35s ease
}
.project-card:hover {
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(0,0,0,.13)
}
.project-card img {
  width:100%;
  aspect-ratio:1.35/1;
  object-fit:cover;
  display:block;
  transition:.45s ease
}
.project-card:hover img {
  transform:scale(1.035)
}
.project-info {
  padding:24px 24px 26px
}
.project-info>span {
  display:inline-block;
  margin-bottom:14px;
  color:var(--coral);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900
}
.project-info p {
  margin-bottom:12px;
  color:#2d2a28;
  font-size:17px;
  line-height:1.55
}
.project-info small {
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.65
}
.links {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:16px
}
.links a {
  padding:9px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  transition:.2s ease
}
.links a:hover {
  background:#111;
  color:#fff;
  border-color:#111
}
.graphic-section {
  padding-top:72px
}
.graphic-grid {
  width:100%;
  margin:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px
}
.graphic-carousel {
  position:relative
}
.carousel-track {
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:#dedbd8;
  box-shadow:0 16px 44px rgba(0,0,0,.08)
}
.carousel-slide {
  display:none;
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in
}
.carousel-slide.is-active {
  display:block
}
.carousel-slide img {
  width:100%;
  aspect-ratio:1.45/1;
  object-fit:cover;
  display:block;
  transition:transform .55s ease
}
.graphic-carousel:hover .carousel-slide.is-active img {
  transform:scale(1.02)
}
.carousel-arrow {
  position:absolute;
  top:50%;
  z-index:3;
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-top:-34px;
  border:0;
  border-radius:50%;
  background:rgba(17,17,17,.58);
  color:#fff;
  font-size:38px;
  line-height:1;
  cursor:pointer;
  transition:.2s ease;
  backdrop-filter:blur(8px)
}
.carousel-arrow:hover {
  background:#111;
  transform:translateY(-1px) scale(1.04)
}
.carousel-arrow.prev {
  left:14px
}
.carousel-arrow.next {
  right:14px
}
.carousel-dots {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:18px
}
.carousel-dots button {
  width:14px;
  height:14px;
  border:0;
  border-radius:50%;
  background:#b8b6b3;
  cursor:pointer;
  transition:.2s ease
}
.carousel-dots button.is-active {
  background:#111;
  transform:scale(1.08)
}
.contact {
  padding:104px 0;
  background:#111;
  color:#fff
}
.contact-inner {
  width:var(--site-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:46px;
  align-items:start
}
.contact-copy p {
  color:rgba(255,255,255,.68);
  font-size:18px;
  line-height:1.7
}
.contact-form {
  display:grid;
  gap:14px;
  padding:26px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:21px;
  background:rgba(255,255,255,.06);
  box-shadow:0 28px 80px rgba(0,0,0,.22)
}
.row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px
}
label {
  display:grid;
  gap:8px;
  color:rgba(255,255,255,.8);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em
}
input,textarea {
  width:100%;
  border:1px solid rgba(255,255,255,.16);
  border-radius:13px;
  padding:16px 18px;
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
  transition:.2s ease
}
input::placeholder,textarea::placeholder {
  color:rgba(255,255,255,.42)
}
input:focus,textarea:focus {
  border-color:var(--coral);
  box-shadow:0 0 0 4px rgba(255,79,135,.16)
}
textarea {
  min-height:138px;
  resize:vertical
}
.contact-form button {
  justify-self:start;
  margin-top:6px;
  border:0;
  border-radius:999px;
  padding:16px 24px;
  background:var(--coral);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.25s ease
}
.contact-form button:hover {
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(255,79,135,.28)
}
.footer {
  width:var(--site-width);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:34px 0 44px;
  color:var(--muted);
  font-size:14px
}
.footer a {
  font-weight:800
}
.footer a:hover {
  color:var(--coral)
}
.lightbox {
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:46px;
  background:rgba(0,0,0,.88)
}
.lightbox.is-open {
  display:flex
}
.lightbox img {
  max-width:86vw;
  max-height:82vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:20px;
  box-shadow:0 30px 90px rgba(0,0,0,.4)
}
.lightbox-close,.lightbox-arrow {
  position:absolute;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#111;
  cursor:pointer;
  display:grid;
  place-items:center
}
.lightbox-close {
  right:26px;
  top:22px;
  width:44px;
  height:44px;
  font-size:32px
}
.lightbox-arrow {
  top:50%;
  width:54px;
  height:54px;
  font-size:42px
}
.lightbox-prev {
  left:28px
}
.lightbox-next {
  right:28px
}
.lightbox-arrow.is-hidden {
  display:none
}
.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease,transform .8s ease
}
.reveal.is-visible {
  opacity:1;
  transform:translateY(0)
}
.delay-1 {
  transition-delay:.12s
}
@media (max-width:980px) {
  .card-one {
    left:calc(50% - 250px);
    top:58px
  }
  .site-header {
    top:10px
  }
  .menu-toggle {
    display:block
  }
  .nav {
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    width:min(280px,calc(100vw - 32px));
    padding:12px;
    border-radius:17px
  }
  .nav.is-open {
    display:flex
  }
  .hero {
    grid-template-columns:1fr;
    gap:28px;
    padding-top:70px
  }
  .hero-media {
    min-height:420px
  }
  .section-title,.project-grid,.graphic-grid {
    width:100%
  }
  .project-grid,.graphic-grid {
    grid-template-columns:1fr
  }
  .contact-inner {
    grid-template-columns:1fr
  }
  .row {
    grid-template-columns:1fr
  }
  }
@media (max-width:620px) {
  .hero {
    padding-top:58px
  }
  .hero-media {
    min-height:auto
  }
  .photo-frame {
    width:82vw
  }
  .floating-card {
    display:none
  }
  h1 {
    font-size:54px
  }
  .about-strip {
    padding:26px
  }
  .section {
    padding:76px 0
  }
  .project-info {
    padding:20px
  }
  .carousel-arrow {
    width:40px;
    height:40px;
    font-size:32px
  }
  .contact {
    padding:76px 0
  }
  .footer {
    flex-direction:column
  }
  .lightbox {
    padding:20px
  }
  .lightbox img {
    max-width:92vw;
    max-height:72vh;
    width:auto;
    height:auto;
    object-fit:contain
  }
  .lightbox-arrow {
    width:44px;
    height:44px;
    font-size:34px
  }
  .lightbox-prev {
    left:12px
  }
  .lightbox-next {
    right:12px
  }
  }
.form-message {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  }
.form-message.success,
.form-message.error {
  opacity: 1;
  transform: translateY(0);
  }
.form-message.success {
  color: #2f8f5b;
  }
.form-message.error {
  color: #c94b4b;
  }
.contact-form button:disabled {
  opacity: .6;
  cursor: not-allowed;
  }

  .required {
  color: var(--coral);
}

.contact-form small {
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}