
:root {
  --brown: #8b4513;
  --brown-deep: #5d2b0a;
  --brown-dark: #351b0c;
  --copper: #b86a2c;
  --cream: #fbf6ef;
  --paper: #fffdfa;
  --ink: #231d18;
  --muted: #6d625a;
  --line: rgba(83, 45, 22, 0.14);
  --shadow: 0 24px 60px rgba(54, 28, 12, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 110px 0; }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 250, .88);
  border-bottom: 1px solid rgba(96, 57, 31, .08);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  color: var(--brown);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .05em;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: .92rem;
  font-weight: 600;
}
.primary-nav a { transition: color .2s ease; }
.primary-nav a:hover { color: var(--brown); }
.nav-contact {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(120deg, rgba(44,19,6,.16), rgba(44,19,6,0)),
    linear-gradient(135deg, #9a501c 0%, #7b390f 55%, #4f2309 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding-block: 88px;
}
.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.eyebrow {
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  opacity: .84;
}
.eyebrow-dark { color: var(--brown); opacity: 1; }
.hero-lead {
  max-width: 660px;
  margin: 26px 0 0;
  font-size: 1.12rem;
  color: rgba(255,255,255,.82);
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 0 22px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--brown-deep); box-shadow: 0 12px 30px rgba(25, 8, 0, .15); }
.button-outline { border: 1px solid rgba(255,255,255,.55); color: white; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  font-size: .77rem;
  color: rgba(255,255,255,.68);
}
.hero-proof span::before { content: "•"; color: #f4bd78; margin-right: 8px; }

.hero-art {
  position: relative;
  min-height: 390px;
  transform: perspective(1100px) rotateY(-5deg);
}
.browser-window {
  position: absolute;
  right: 2%;
  top: 20px;
  width: 78%;
  height: 285px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  box-shadow: 0 35px 80px rgba(26,8,0,.18);
}
.browser-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.32);
}
.browser-top i {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
}
.browser-body { position: relative; height: calc(100% - 48px); }
.domain-mark {
  position: absolute;
  left: 39%;
  top: 21%;
  font-size: 6.8rem;
  font-weight: 500;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.55);
}
.chart {
  position: absolute;
  right: 28px;
  bottom: 24px;
  height: 90px;
  display: flex;
  align-items: end;
  gap: 11px;
}
.chart span {
  width: 21px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 5px 5px 0 0;
}
.domain-card {
  position: absolute;
  left: 7%;
  top: 130px;
  z-index: 3;
  width: 235px;
  padding: 19px 22px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 16px;
  background: rgba(91, 39, 10, .66);
  box-shadow: 0 25px 55px rgba(25,8,0,.27);
  backdrop-filter: blur(14px);
}
.domain-card div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 11px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.86);
}
.domain-card b {
  width: 9px;
  height: 9px;
  background: #f2bd78;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(242,189,120,.55);
}
.magnifier {
  position: absolute;
  right: 19%;
  bottom: 16px;
  width: 88px;
  height: 88px;
  border: 5px solid rgba(255,255,255,.72);
  border-radius: 50%;
  transform: rotate(-40deg);
}
.magnifier::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 5px;
  right: -47px;
  bottom: -17px;
  border-radius: 5px;
  background: rgba(255,255,255,.72);
}
.floating-tag {
  position: absolute;
  right: 3%;
  bottom: 5px;
  font-size: .66rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.56);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: .18;
}
.hero-glow-one { width: 380px; height: 380px; right: -110px; top: -150px; background: #ffbf78; }
.hero-glow-two { width: 280px; height: 280px; left: 36%; bottom: -170px; background: #d28448; }

.section-heading { margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 80px;
}
.split-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.services { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  min-height: 250px;
  padding: 40px 30px;
  border-right: 1px solid var(--line);
}
.service-card:first-child { border-left: 1px solid var(--line); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: #f4e5d8;
  color: var(--brown);
  font-weight: 800;
}
.service-card h3 { margin: 0 0 12px; font-size: 1rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .87rem; }

.portfolio { background: #f6f0e9; }
.portfolio-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.portfolio-filters { display: flex; gap: 8px; }
.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.filter.active { background: var(--brown); color: white; border-color: var(--brown); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  min-height: 250px;
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, opacity .25s ease;
}
.project-card:hover { transform: translateY(-5px); }
.project-card.hidden { display: none; }
.project-status {
  position: absolute;
  top: 20px;
  left: 0;
  padding: 5px 16px;
  color: white;
  font-size: .72rem;
  font-weight: 800;
}
.sold { background: #ff3b20; }
.development { background: #f22aa2; }
.sale { background: #168b2a; }
.project-logo {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 15px;
  font-size: .7rem;
  opacity: .72;
}
.project-navy { color: white; background: #062637; }
.project-blue { color: white; background: #4287ef; }
.project-deepblue { color: white; background: #1154b6; }
.project-cream { color: #3d2d26; background: #fff1ea; }
.project-black { color: white; background: #050505; }
.project-olive { color: #443527; background: #a4aa82; }
.crisp { font-size: 2.4rem; font-weight: 400; }
.notifications { font-size: 1.55rem; }
.notifications span { background: #ff351e; padding: 2px 7px; }
.simplemail { font-size: 1.75rem; text-decoration: underline; text-underline-offset: 8px; }
.wedding { font-size: 1.2rem; }
.wedding span, .moving span { font-size: .7em; }
.moving { font-size: 1.15rem; }
.truck { margin-right: 10px; }
.jellybean { font-size: 1.4rem; font-weight: 500; letter-spacing: .18em; }
.beans { position: relative; width: 66px; height: 40px; margin-right: 18px; }
.beans i { position: absolute; width: 32px; height: 18px; border-radius: 999px; transform: rotate(15deg); }
.beans i:nth-child(1) { background: #ffdf58; left: 22px; top: 0; }
.beans i:nth-child(2) { background: #55c5e9; left: 0; top: 16px; }
.beans i:nth-child(3) { background: #ef6db3; left: 29px; top: 18px; }

.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: .55fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.about-number {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: white;
  background: radial-gradient(circle at 32% 25%, #c57b42, #8b4513 58%, #5c2a0b);
  box-shadow: var(--shadow);
  text-align: center;
}
.about-number span { font-size: clamp(5rem, 10vw, 8rem); line-height: .9; font-weight: 800; }
.about-number small { letter-spacing: .35em; margin-left: .35em; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }

.contact { padding-top: 20px; background: var(--paper); }
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, #9a501c, #542409);
  box-shadow: var(--shadow);
}
.contact-panel > div { max-width: 720px; }
.contact-panel p:not(.eyebrow) { color: rgba(255,255,255,.78); margin-bottom: 0; }

.site-footer { padding: 72px 0 32px; background: #1d140f; color: white; }
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-brand { color: #d58b51; }
.footer-wrap p { color: rgba(255,255,255,.58); font-size: .82rem; }
.footer-links { display: flex; gap: 24px; font-size: .82rem; }
.copyright { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { min-height: 360px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 1px solid var(--line); }
  .service-card:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .service-card:nth-child(4) { border-top: 1px solid var(--line); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 55px; }
}

@media (max-width: 760px) {
  .section { padding: 78px 0; }
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px; }
  .nav-contact { border: 0; border-radius: 0; }
  .hero-grid { padding-block: 70px; gap: 20px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero-art { transform: none; min-height: 330px; margin-top: 15px; }
  .browser-window { width: 90%; }
  .domain-card { left: 0; width: 210px; }
  .split-heading, .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-number { max-width: 360px; width: 100%; margin-inline: auto; }
  .portfolio-heading { align-items: flex-start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; }
  .contact-panel { align-items: flex-start; flex-direction: column; padding: 44px 28px; }
  .footer-wrap { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child, .service-card:nth-child(3) {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }
  .service-card:first-child { border-top: 0; }
  .hero-art { min-height: 290px; }
  .browser-window { height: 230px; }
  .domain-mark { font-size: 5rem; }
  .magnifier { width: 66px; height: 66px; right: 16%; }
  .footer-links { flex-wrap: wrap; }
}
