:root {
  --navy-950: #071728;
  --navy-900: #0b1d32;
  --navy-700: #17304c;
  --olive-700: #6e733d;
  --olive-500: #92996a;
  --stone-300: #d8d3c5;
  --stone-100: #eeeae0;
  --canvas: #f7f4ed;
  --body: #18212c;
  --white: #fff;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--canvas);
  color: var(--body);
  font-family: var(--sans);
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--navy-900);
  outline-offset: 4px;
}

.shell {
  margin: 0 auto;
  max-width: 1456px;
  padding-left: 52px;
  padding-right: 52px;
  width: 100%;
}

.site-header {
  align-items: center;
  animation: enter 420ms ease-out both;
  display: flex;
  height: 164px;
  justify-content: space-between;
  position: relative;
}

.site-header::after {
  background: var(--navy-900);
  bottom: 0;
  content: "";
  height: 1px;
  left: 226px;
  position: absolute;
  right: 52px;
}

.brand-lockup {
  align-items: center;
  display: flex;
  height: 142px;
}

.logo-crop {
  display: block;
  height: 126px;
  overflow: hidden;
  position: relative;
  width: 166px;
}

.logo-crop img {
  height: 170px;
  left: 50%;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
}

.header-divider {
  background: var(--stone-300);
  height: 112px;
  margin: 0 30px 0 12px;
  width: 1px;
}

.wordmark {
  color: var(--navy-900);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wordmark strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
}

.wordmark > span {
  align-items: center;
  display: flex;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.3em;
}

.wordmark i {
  background: var(--olive-700);
  display: block;
  height: 1px;
  width: 58px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 48px;
}

.desktop-nav a {
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 550;
  padding: 10px 0;
  position: relative;
}

.desktop-nav a::after {
  background: var(--olive-700);
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--olive-700);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.hero {
  animation: enter 420ms 60ms ease-out both;
  display: grid;
  gap: clamp(36px, 5vw, 78px);
  grid-template-columns: minmax(0, 0.96fr) minmax(540px, 1.04fr);
  padding-bottom: 84px;
  padding-top: 28px;
}

.hero-copy {
  padding-top: 14px;
}

.eyebrow,
.micro-label {
  color: var(--olive-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(66px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.91;
  margin: 0;
  max-width: 650px;
}

.accent-rule {
  background: var(--olive-700);
  display: block;
  height: 3px;
  margin-top: 28px;
  width: 56px;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 530px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 15px;
  font-weight: 650;
  gap: 22px;
  height: 56px;
  justify-content: space-between;
  padding: 0 24px;
  transition: background 180ms ease-out, color 180ms ease-out, border 180ms ease-out;
}

.button-primary {
  background: var(--navy-900);
  color: var(--white);
  min-width: 236px;
}

.button-primary:hover {
  background: var(--navy-700);
}

.button-secondary {
  border-color: var(--navy-900);
  color: var(--navy-900);
  min-width: 206px;
}

.button-secondary:hover {
  background: var(--navy-900);
  color: var(--white);
}

.arrow-icon {
  flex: 0 0 auto;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.4;
  transition: transform 180ms ease-out;
  width: 40px;
}

.button .arrow-icon,
.card-link .arrow-icon,
.domain-teaser .arrow-icon {
  color: var(--olive-500);
}

.button:hover .arrow-icon,
.portfolio-card:hover .card-link .arrow-icon,
.domain-teaser:hover .arrow-icon {
  transform: translateX(5px);
}

.domain-teaser {
  align-items: center;
  border: 1px solid var(--stone-300);
  display: flex;
  height: 154px;
  justify-content: space-between;
  margin-top: 20px;
  overflow: hidden;
  padding: 24px 32px;
  transition: background 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out, transform 220ms ease-out;
}

.domain-teaser > span {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.domain-teaser strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 18px 0 10px;
}

.domain-teaser:hover,
.portfolio-card:hover {
  background: var(--stone-100);
  border-color: var(--olive-500);
  box-shadow: 0 10px 24px rgba(11, 29, 50, 0.08);
  transform: translateY(-2px);
}

.domain-mark {
  height: 128px;
  margin-right: 6px;
  stroke: var(--olive-500);
  stroke-width: 1.3;
  width: 180px;
}

.domain-mark text {
  fill: var(--olive-700);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.08em;
  stroke: none;
}

.hero-portfolio {
  display: grid;
  gap: 16px;
}

.portfolio-card {
  animation: enter 420ms ease-out both;
  border: 1px solid var(--stone-300);
  height: 324px;
  overflow: hidden;
  padding: 39px;
  position: relative;
  transition: background 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out, transform 220ms ease-out;
}

.portfolio-card:first-child {
  animation-delay: 120ms;
}

.portfolio-card:last-child {
  animation-delay: 190ms;
}

.portfolio-card::before {
  background: var(--olive-700);
  content: "";
  height: 2px;
  left: 39px;
  position: absolute;
  top: 68px;
  width: 54px;
}

.portfolio-card h2 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(40px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin: 67px 0 0;
  position: relative;
  z-index: 2;
}

.card-link {
  align-items: center;
  bottom: 34px;
  color: var(--navy-900);
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 12px;
  left: 39px;
  position: absolute;
  z-index: 2;
}

.card-mark {
  bottom: 45px;
  height: 190px;
  opacity: 0.72;
  position: absolute;
  right: 21px;
  stroke: var(--olive-500);
  stroke-width: 1.25;
  width: 210px;
}

.card-mark text {
  fill: var(--olive-700);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  stroke: none;
}

.section {
  padding-bottom: 112px;
  padding-top: 112px;
}

.brands-section {
  border-top: 1px solid var(--stone-300);
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(310px, 0.8fr) minmax(520px, 1.2fr);
}

.section-heading h2,
.about-copy h2,
.contact-section h2 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 22px 0 30px;
}

.section-heading > p:last-child {
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

.brand-details {
  border-top: 1px solid var(--navy-900);
}

.brand-details article {
  border-bottom: 1px solid var(--stone-300);
  display: grid;
  gap: 30px;
  grid-template-columns: 50px 1fr;
  padding: 36px 0 42px;
}

.number {
  color: var(--olive-700);
  font-family: var(--serif);
  font-size: 23px;
}

.brand-details h3 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 14px 0 18px;
}

.brand-details article p:not(.micro-label) {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 610px;
}

.brand-details article a {
  align-items: center;
  color: var(--navy-900);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  margin-top: 22px;
}

.brand-details article a:hover {
  color: var(--olive-700);
}

.brand-details article a:hover .arrow-icon,
.contact-link:hover .arrow-icon {
  transform: translate(4px, -4px);
}

.domains-section {
  background: var(--navy-900);
  color: #dfe2dd;
  padding: 112px 0;
}

.domains-grid {
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: 0.95fr 1.05fr;
}

.eyebrow.light {
  color: #b7bd8e;
}

.domains-copy h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 5.5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 22px 0 28px;
  max-width: 680px;
}

.domains-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  max-width: 610px;
}

.button-light {
  border-color: #dfe2dd;
  color: var(--white);
  margin-top: 24px;
  min-width: 275px;
}

.button-light:hover {
  background: var(--white);
  color: var(--navy-900);
}

.domain-process {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.domain-process article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 22px;
  grid-template-columns: 46px 120px 1fr;
  padding: 30px 0;
}

.domain-process span {
  color: #b7bd8e;
  font-family: var(--serif);
  font-size: 20px;
}

.domain-process h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

.domain-process p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.about-section {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: 0.7fr 1.3fr;
}

.about-mark {
  align-items: center;
  border: 1px solid var(--stone-300);
  display: flex;
  justify-content: center;
  min-height: 470px;
}

.logo-crop.large {
  height: 350px;
  width: 350px;
}

.logo-crop.large img {
  height: 440px;
  width: 440px;
}

.about-copy h2 {
  max-width: 800px;
}

.about-columns {
  border-top: 1px solid var(--stone-300);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
  padding-top: 30px;
}

.about-columns p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.contact-section {
  align-items: flex-end;
  border-top: 1px solid var(--navy-900);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 88px;
  padding-top: 88px;
}

.contact-section h2 {
  font-size: clamp(44px, 5vw, 64px);
  margin-bottom: 0;
}

.contact-link {
  align-items: center;
  border-bottom: 1px solid var(--navy-900);
  color: var(--navy-900);
  display: flex;
  font-size: 17px;
  font-weight: 650;
  gap: 22px;
  padding: 0 0 12px;
  white-space: nowrap;
}

footer {
  background: var(--stone-100);
  border-top: 1px solid var(--stone-300);
}

.footer-inner {
  align-items: center;
  display: grid;
  font-size: 12px;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 112px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:nth-child(2) {
  color: var(--olive-700);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.footer-inner p:last-child {
  text-align: right;
}

.footer-brand {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@keyframes enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .shell { padding-left: 36px; padding-right: 36px; }
  .site-header::after { left: 200px; right: 36px; }
  .logo-crop { width: 140px; }
  .header-divider { margin-left: 8px; margin-right: 24px; }
  .wordmark strong { font-size: 26px; }
  .wordmark i { width: 40px; }
  .desktop-nav { gap: 28px; }
  .hero { gap: 36px; grid-template-columns: minmax(0, 0.95fr) minmax(490px, 1.05fr); }
  .hero h1 { font-size: 66px; }
  .portfolio-card { height: 310px; padding: 34px; }
  .portfolio-card::before { left: 34px; }
  .portfolio-card h2 { font-size: 40px; }
  .card-link { left: 34px; }
  .card-mark { opacity: 0.5; right: 4px; width: 190px; }
}

@media (max-width: 900px) {
  .site-header { height: 130px; }
  .site-header::after { left: 36px; }
  .logo-crop { height: 98px; width: 126px; }
  .logo-crop img { height: 135px; width: 135px; }
  .header-divider { height: 84px; margin-right: 20px; }
  .wordmark strong { font-size: 23px; }
  .wordmark i { width: 34px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { cursor: pointer; display: grid; gap: 5px; list-style: none; padding: 12px; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { background: var(--navy-900); display: block; height: 1px; width: 28px; }
  .mobile-menu nav { background: var(--canvas); border: 1px solid var(--stone-300); display: grid; min-width: 210px; padding: 14px 24px; position: absolute; right: 0; top: 48px; z-index: 20; }
  .mobile-menu nav a { border-bottom: 1px solid var(--stone-300); color: var(--navy-900); font-size: 15px; padding: 14px 0; }
  .mobile-menu nav a:last-child { border: 0; }
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-copy { display: contents; }
  .hero .eyebrow { display: block; }
  .hero h1 { font-size: clamp(62px, 11vw, 82px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { margin-bottom: 10px; }
  .hero-portfolio { order: 6; }
  .domain-teaser { order: 7; }
  .portfolio-card { height: 330px; }
  .brands-section { grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: 1fr; }
  .about-section { align-items: start; grid-template-columns: 0.65fr 1.35fr; }
  .about-mark { min-height: 360px; }
  .logo-crop.large { height: 260px; width: 260px; }
  .logo-crop.large img { height: 330px; width: 330px; }
  .about-columns { grid-template-columns: 1fr; }
  .contact-section { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .shell { padding-left: 20px; padding-right: 20px; }
  .site-header { height: 104px; }
  .site-header::after { left: 20px; right: 20px; }
  .logo-crop { height: 82px; width: 90px; }
  .logo-crop img { height: 108px; width: 108px; }
  .header-divider { height: 62px; margin: 0 14px 0 4px; }
  .wordmark strong { font-size: 18px; letter-spacing: 0.12em; }
  .wordmark > span { font-size: 11px; gap: 8px; }
  .wordmark i { width: 22px; }
  .hero { padding-bottom: 70px; padding-top: 40px; }
  .hero h1 { font-size: 54px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .domain-teaser { height: 142px; padding: 24px; }
  .domain-teaser strong { font-size: 31px; }
  .domain-mark { height: 96px; margin-right: -20px; width: 130px; }
  .portfolio-card { height: 300px; padding: 28px; }
  .portfolio-card::before { left: 28px; top: 58px; width: 48px; }
  .portfolio-card h2 { font-size: 37px; margin-top: 60px; }
  .card-link { bottom: 26px; left: 28px; }
  .card-link { font-size: 0; }
  .card-link .arrow-icon { width: 48px; }
  .card-mark { bottom: 35px; right: -20px; width: 170px; }
  .section { padding-bottom: 80px; padding-top: 80px; }
  .brands-section { gap: 40px; }
  .section-heading h2, .about-copy h2, .contact-section h2 { font-size: 46px; }
  .brand-details article { gap: 15px; grid-template-columns: 36px 1fr; }
  .brand-details h3 { font-size: 33px; }
  .domains-section { padding: 82px 0; }
  .domains-copy h2 { font-size: 51px; }
  .domain-process article { gap: 10px; grid-template-columns: 36px 1fr; }
  .domain-process article p { grid-column: 2; }
  .about-section { grid-template-columns: 1fr; }
  .about-mark { min-height: 330px; }
  .contact-link { font-size: 14px; white-space: normal; }
  .footer-inner { align-items: start; gap: 13px; grid-template-columns: 1fr; padding-bottom: 28px; padding-top: 28px; }
  .footer-inner p:nth-child(2), .footer-inner p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
}
