:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --paper-warm: #f6eee7;
  --rose-veil: #f5dfdc;
  --rose: #c98279;
  --sage: #8a9a82;
  --sage-dark: #52644c;
  --cocoa: #2a211d;
  --coffee: #4b3730;
  --muted: #7b6d66;
  --line: rgba(42, 33, 29, 0.12);
  --line-strong: rgba(42, 33, 29, 0.2);
  --white: #ffffff;
  --gold: #b98a4d;
  --shadow-soft: 0 30px 90px rgba(64, 46, 38, 0.13);
  --shadow-tight: 0 16px 44px rgba(64, 46, 38, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 8%, rgba(245, 223, 220, 0.82), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, #fff 42%, var(--paper-warm) 100%);
  color: var(--cocoa);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(42, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 33, 29, 0.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 55%);
}

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

img {
  max-width: 100%;
  min-width: 0;
}

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 138, 77, 0.46);
  border-radius: 50%;
  color: var(--coffee);
  background: linear-gradient(145deg, #fff, #f3e4dd);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(185, 138, 77, 0.12);
}

.brand-name {
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 760;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 6px;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100svh - 80px);
  max-width: 1480px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 64px) clamp(18px, 5vw, 74px) clamp(44px, 6vw, 86px);
}

.hero-copy {
  max-width: 780px;
}

.handle,
.section-heading span,
.editorial-copy span,
.brand-panel span,
.proposal-copy span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--cocoa);
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3.05rem, 6.4vw, 6.25rem);
  line-height: 0.93;
}

.hero-lead {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.35rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 22px;
  color: var(--coffee);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.91rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(185, 138, 77, 0.55);
  box-shadow: 0 18px 40px rgba(64, 46, 38, 0.12);
}

.button-primary {
  color: #fff;
  background: var(--cocoa);
  border-color: var(--cocoa);
}

.button-secondary {
  color: var(--cocoa);
  background: #f3dfd8;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 670px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip div {
  padding: 19px 20px 18px 0;
}

.metric-strip div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.metric-strip dt {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 1;
  color: var(--coffee);
}

.metric-strip dd {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: min(680px, 74svh);
}

.portrait-card {
  position: absolute;
  inset: 0 7% 0 13%;
  overflow: hidden;
  border-radius: 0 0 220px 220px;
  background: #efe3dd;
  box-shadow: var(--shadow-soft);
}

.portrait-card::before {
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 0 0 190px 190px;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
}

.floating-note {
  position: absolute;
  z-index: 3;
  width: min(270px, 48vw);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(18px);
}

.floating-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.1;
}

.floating-note-top {
  top: 8%;
  left: 0;
}

.floating-note-bottom {
  right: 0;
  bottom: 9%;
}

.statement {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 74px);
  background: var(--cocoa);
  color: #fff;
}

.statement p {
  max-width: 1180px;
  margin-inline: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5.4vw, 5.35rem);
  line-height: 1;
}

.section {
  padding: clamp(58px, 8vw, 118px) clamp(18px, 5vw, 74px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(36px, 6vw, 78px);
  max-width: 1320px;
  margin-inline: auto;
}

.section-heading h2,
.editorial-copy h2,
.brand-panel h2,
.proposal-copy h2 {
  max-width: 700px;
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
  line-height: 0.98;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.presence-grid article {
  min-height: 230px;
  padding: clamp(24px, 3.2vw, 40px);
}

.presence-grid article:nth-child(2n) {
  border-left: 1px solid var(--line);
}

.presence-grid article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

h3 {
  margin-bottom: 14px;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.05;
}

.presence-grid p,
.fit-list p,
.brand-panel p,
.proposal-copy p,
.compact-heading p,
.form-note {
  color: var(--muted);
  line-height: 1.72;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(82, 100, 76, 0.1), transparent 40%),
    #f4ebe5;
}

.editorial-copy {
  max-width: 620px;
}

.fit-list {
  display: grid;
  gap: 1px;
  background: rgba(42, 33, 29, 0.1);
  border: 1px solid var(--line);
}

.fit-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
  padding: 28px;
  background: rgba(255, 255, 255, 0.66);
}

.fit-list article span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.fit-list h3,
.fit-list p {
  grid-column: 2;
}

.instagram-section {
  max-width: 1440px;
  margin-inline: auto;
}

.compact-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.compact-heading span {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.compact-heading p {
  max-width: 610px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.post-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8ddd6;
  box-shadow: 0 8px 26px rgba(64, 46, 38, 0.08);
}

.post-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 712px;
}

.post-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease, filter 500ms ease;
}

.post-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(42, 33, 29, 0.72));
}

.post-card span,
.post-card strong {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
}

.post-card span {
  bottom: 56px;
  font-size: 0.75rem;
  font-weight: 820;
  text-transform: uppercase;
}

.post-card strong {
  bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.post-card:hover img,
.post-card:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.brand-section {
  background: var(--cocoa);
  color: #fff;
}

.brand-panel,
.brand-grid {
  max-width: 1240px;
  margin-inline: auto;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.brand-panel span {
  color: #e8c59f;
}

.brand-panel h2 {
  color: #fff;
}

.brand-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-grid a {
  display: grid;
  min-height: 138px;
  place-items: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.75rem);
  text-align: center;
  transition: background 180ms ease, color 180ms ease;
}

.brand-grid a:hover,
.brand-grid a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.proposal-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 76px);
  max-width: 1280px;
  margin-inline: auto;
}

.proposal-copy p {
  max-width: 560px;
  margin-top: 22px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--coffee);
  font-weight: 800;
}

.proposal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-tight);
}

.proposal-form label {
  display: grid;
  gap: 8px;
}

.proposal-form label span {
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.9);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  border-color: rgba(185, 138, 77, 0.86);
  box-shadow: 0 0 0 4px rgba(185, 138, 77, 0.12);
}

.proposal-form textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.72);
  background: #1d1714;
}

.site-footer a:hover,
.contact-lines a:hover {
  color: var(--rose);
}

@media (max-width: 1050px) {
  .hero,
  .split-section,
  .editorial-band,
  .brand-panel,
  .proposal-section,
  .compact-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 680px;
    order: -1;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 6px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.25rem);
    line-height: 0.95;
  }

  .hero-media {
    order: 0;
    min-height: 560px;
  }

  .hero-copy {
    order: -1;
    width: min(100%, 342px);
    max-width: 342px;
    min-width: 0;
  }

  .hero-lead {
    max-width: 100%;
  }

  .metric-strip {
    max-width: 342px;
  }

  .portrait-card {
    inset: 0 2% 0 6%;
  }

  .floating-note {
    width: min(245px, 70vw);
  }

  .metric-strip,
  .presence-grid,
  .proposal-form {
    grid-template-columns: 1fr;
  }

  .metric-strip div,
  .metric-strip div + div {
    padding: 18px 0;
    border-left: 0;
  }

  .metric-strip div + div {
    border-top: 1px solid var(--line);
  }

  .presence-grid article:nth-child(2n) {
    border-left: 0;
  }

  .presence-grid article + article {
    border-top: 1px solid var(--line);
  }

  .post-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .post-card,
  .post-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .fit-list article {
    grid-template-columns: 1fr;
  }

  .fit-list h3,
  .fit-list p {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-actions .button,
  .proposal-form .button {
    width: 100%;
  }

  .hero-media {
    min-height: 500px;
  }

  .floating-note-bottom {
    bottom: 5%;
  }

  .section,
  .statement,
  .hero {
    padding-inline: 16px;
  }
}

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