/* ============================================================
   Media Outfitters LLC — temporary welcome page
   Screenshot-inspired clean white layout
   ============================================================ */

:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --soft: #eeeeee;
  --text: #2f2f2f;
  --muted: #6f6f6f;
  --title: #766f61;
  --line: #dddddd;
  --black: #050505;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

button,
input {
  font: inherit;
}

.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;
}

/* Header */

.site-header {
  background: var(--paper);
}

.logo-wrap {
  min-height: 151px;
  display: grid;
  place-items: center;
  padding: 16px 24px 13px;
}

.site-logo {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

.nav-strip {
  height: 32px;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 38px;
  font-size: 9px;
  color: #1f1f1f;
  white-space: nowrap;
}

.main-nav,
.contact-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-nav {
  margin-left: auto;
  gap: 22px;
}

.social-links,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Hero image */

.hero-image {
  height: 279px;
  overflow: hidden;
  background: #ccd4c0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Intro */

.intro {
  background: var(--soft);
  text-align: center;
  padding: 84px 24px 67px;
}

.intro-inner {
  width: min(475px, 100%);
  margin: 0 auto;
}

.intro h1 {
  margin: 0 0 23px;
  color: var(--title);
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.4vw, 47px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
}

.kicker {
  margin: 0 0 20px;
  color: #2e2e2e;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

.intro p {
  margin: 0 auto 9px;
  color: #343434;
  font-size: 11px;
  line-height: 1.72;
}

.intro .coming-soon {
  margin-top: 12px;
  color: #555;
}

/* Subscribe / footer */

.subscribe {
  background: var(--paper);
  text-align: center;
  padding: 31px 24px 53px;
}

.subscribe-inner {
  width: min(270px, 100%);
  margin: 0 auto;
}

.subscribe h2 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
}

.form-title {
  margin: 0 0 9px;
  font-size: 13px;
  font-weight: 300;
}

.subscribe-form {
  display: grid;
  gap: 2px;
  margin: 0 0 8px;
}

.subscribe-form input {
  width: 100%;
  height: 22px;
  border: 1px solid #333333;
  border-radius: 0;
  padding: 3px 8px;
  color: #111111;
  background: #ffffff;
  font-size: 10px;
  outline-offset: 2px;
}

.subscribe-form button {
  width: 100%;
  height: 22px;
  border: 1px solid var(--black);
  border-radius: 0;
  color: #ffffff;
  background: var(--black);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
}

.subscribe-form button:hover,
.subscribe-form button:focus {
  background: #222222;
}

.thanks {
  margin: 0 0 18px;
  min-height: 17px;
  color: #4a4a4a;
  font-size: 11px;
}

address {
  margin: 0;
  color: #333333;
  font-size: 10px;
  font-style: normal;
  line-height: 1.85;
}

address a,
address span {
  display: block;
}

.footer-social {
  justify-content: center;
  margin-top: 18px;
  font-size: 12px;
}

.copyright {
  margin: 38px 0 0;
  color: #333333;
  font-size: 10px;
}

@media (max-width: 760px) {
  .logo-wrap {
    min-height: 128px;
    padding: 16px 20px 12px;
  }

  .site-logo {
    width: 86px;
    height: 86px;
  }

  .nav-strip {
    height: auto;
    min-height: 36px;
    align-items: center;
    padding: 8px 16px;
    overflow-x: auto;
    gap: 22px;
  }

  .main-nav {
    flex: 0 0 auto;
    gap: 12px;
  }

  .contact-nav {
    flex: 0 0 auto;
    gap: 13px;
  }

  .hero-image {
    height: 190px;
  }

  .intro {
    padding: 58px 24px 52px;
  }

  .intro h1 {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .nav-strip {
    font-size: 8px;
  }

  .hero-image {
    height: 150px;
  }

  .intro-inner {
    width: min(420px, 100%);
  }
}
