/* ===========================================================
   Anna Katrina — Web Designer & Digital Creative Portfolio
   =========================================================== */

:root {
  --cream: #f8f3ea;
  --cream-soft: #fbf8f2;
  --tan: #ece0cb;
  --tan-dark: #ddc9a4;
  --ink: #1c1a15;
  --ink-soft: #6e695c;
  --olive: #6c7233;
  --olive-dark: #565c28;
  --white: #ffffff;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-serif: "Lora", "Georgia", serif;
  --font-sans: "Inter", sans-serif;

  --container: 1180px;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 6vw;
}

/* =================== TOPBAR =================== */
.topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 34px 6vw 0;
}
.topbar .label {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar .rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  opacity: 0.7;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 10px 0 0;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 620px;
  padding-top: 24px;
}
.hero-headline {
  position: relative;
  z-index: 1;
  padding-top: 10px;
}
.hero-headline h1 {
  font-family: var(--font-display);
  font-size: clamp(70px, 15vw, 190px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  margin: 6px 0 0;
  color: var(--ink);
  text-transform: uppercase;
}

.hero-photo-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  max-width: 460px;
  height: 540px;
  z-index: 2;
}
.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #ded2bd, #b9a488);
}
.hero-photo svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-badge {
  position: absolute;
  top: -22px;
  right: -10px;
  width: 104px;
  height: 104px;
  z-index: 3;
}
.hero-badge .ak {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
}

.hero-location {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: right;
  color: var(--cream);
}
.hero-location .loc-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
}
.hero-location svg { width: 15px; height: 15px; flex: none; }

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
  padding: 34px 0 0;
}
.hero-copy .headline-serif {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 500;
}
.hero-copy .headline-serif em {
  color: var(--olive);
  font-style: italic;
}
.hero-copy .dash {
  width: 34px;
  height: 2px;
  background: var(--ink);
  margin-bottom: 18px;
}
.hero-copy p.lead {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 400px;
  margin: 0;
}

/* =================== STATS BAR =================== */
.stats-bar {
  background: var(--tan);
  border-radius: 18px;
  margin: 46px 6vw 0;
  padding: 30px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}
.stat-icon {
  width: 34px; height: 34px;
  flex: none;
  color: var(--ink);
}
.stat-icon svg { width: 100%; height: 100%; }
.stat .num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.stat .lbl {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--tan-dark);
}

/* =================== SECTION HEADS =================== */
.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 26px;
}
h2.h-label {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--olive-dark);
  margin: 0;
}
.view-all {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.view-all svg { width: 14px; height: 14px; }

/* =================== SELECTED WORKS =================== */
.work-section {
  padding: 100px 0 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card .thumb {
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
}
.work-card:hover .thumb { transform: translateY(-4px); }
.work-card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.work-card .title {
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-transform: uppercase;
}
.work-card .meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* =================== SERVICES BAND (full-bleed) =================== */
.services-band {
  background: var(--tan);
  margin-top: 100px;
  padding: 74px 0;
}
.services-band .sec-head { justify-content: center; margin-bottom: 44px; }
.services-band .sec-head .h-label { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-card {
  text-align: center;
  padding: 0 10px;
}
.service-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--olive-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.service-dot svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 8px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.and-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 46px;
}
.and-more .rule { width: 60px; height: 1px; background: var(--ink-soft); opacity: 0.4; }

/* =================== PROCESS =================== */
.process {
  padding: 100px 0 0;
}
.process-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.p-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.p-step .step-body { flex: 1; }
.p-step .num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 10px;
}
.p-step h4 {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 8px;
}
.p-step p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 150px;
}
.p-arrow {
  flex: none;
  width: 22px;
  color: var(--ink-soft);
  padding-top: 6px;
  opacity: 0.6;
}

/* =================== TESTIMONIALS (full-bleed panel) =================== */
.testimonials-panel {
  margin-top: 100px;
  background: var(--olive-dark);
  border-radius: 48px 48px 0 0;
  padding: 84px 0 90px;
}
.testimonials-panel .h-label { color: var(--tan); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: rgba(248, 243, 234, 0.08);
  border: 1px solid rgba(248, 243, 234, 0.12);
  border-radius: 16px;
  padding: 28px 26px 24px;
}
.testi-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 6px;
  font-style: italic;
}
.testi-card p.quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream);
  margin: 0 0 22px;
  min-height: 88px;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-who .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: rgba(248, 243, 234, 0.18);
}
.testi-who .avatar svg { width: 100%; height: 100%; }
.testi-who .name {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.testi-who .role {
  font-size: 12px;
  color: var(--tan);
  opacity: 0.8;
  margin-top: 2px;
}

/* =================== CTA (ink bookend) =================== */
.cta {
  background: var(--ink);
  padding: 64px 0;
  color: var(--cream);
}
.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-left { display: flex; align-items: center; gap: 20px; }
.cta-left .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(248, 243, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cta-left .icon svg { width: 20px; height: 20px; }
.cta-left h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 30px);
  margin: 0;
}
.cta-left h3 em { color: var(--olive); font-style: italic; }
.cta-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: none;
}
.cta-right .avail {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  max-width: 200px;
  line-height: 1.5;
}
.cta-btn {
  background: var(--cream);
  color: var(--ink);
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.cta-btn svg { width: 14px; height: 14px; }

/* =================== FOOTER =================== */
.site-footer {
  margin-top: 0;
  padding: 34px 6vw 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  align-items: center;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .mono {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  width: 46px; height: 46px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand .name {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-brand .tagline {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-contact {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.footer-contact svg { width: 15px; height: 15px; }
.footer-social { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-social .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
}
.footer-social .icons { display: flex; gap: 10px; }
.footer-social .icons a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social .icons svg { width: 15px; height: 15px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
  .hero-grid { min-height: 0; }
  .hero-photo-col { position: relative; top: 0; right: 0; width: 100%; max-width: none; height: 380px; margin-top: 20px; }
  .hero-badge { top: -14px; right: 6px; }
  .hero-copy { max-width: none; }
  .hero-headline h1 { font-size: 22vw; }
  .work-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stats-bar { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .process-row { flex-wrap: wrap; gap: 30px; }
  .p-arrow { display: none; }
  .p-step { width: 40%; flex: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .testimonials-panel { border-radius: 32px 32px 0 0; }
  .cta { padding: 44px 0; }
  .cta-flex { flex-direction: column; align-items: flex-start; }
  .cta-right { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-social { align-items: center; }
}

@media (max-width: 560px) {
  .hero-headline h1 { font-size: 20vw; line-height: 0.85; }
  .p-step { width: 100%; }
}
