/* ============================================
   DUBTION — Landing Page Styles
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #F3F0E9;
  --ink:       #1e1b18;
  --ink-light: #3a3632;
  --accent:    #1e1b18;
}

html, body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
  overflow: hidden; /* no scroll on desktop or mobile */
}

body {
  background-color: var(--bg);
  color: var(--ink);
  display: flex;
  align-items: stretch;
}

/* ============================================
   LAYOUT — full-viewport landing
   ============================================ */

.landing {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  grid-template-areas:
    "hero"
    "contact"
    "footer";
  overflow: hidden;
}

/* ============================================
   HERO — centred logo + tagline
   ============================================ */

.hero {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  gap: 3rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  max-width: min(480px, 60vw);
  width: 100%;
  height: auto;
  display: block;
}

.tagline {
  font-family: 'Tiempos Text', 'Georgia', serif;
  font-weight: normal;
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.85rem);
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.35;
  max-width: 680px;
}

/* ============================================
   CONTACT — email centred
   ============================================ */

.contact {
  grid-area: contact;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 4rem);
}

.email-link {
  font-family: 'Tiempos Text', 'Georgia', serif;
  font-weight: bold;
  font-style: normal;
  font-size: clamp(0.85rem, 1.6vw, 1.2rem);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: opacity 0.2s ease;
}

.email-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}

.email-link:hover { opacity: 0.7; }
.email-link:hover::after { width: 100%; }

/* ============================================
   FOOTER — descriptor line
   ============================================ */

.footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.descriptor {
  font-family: 'Tiempos Headline', 'Georgia', serif;
  font-weight: normal;
  font-style: normal;
  font-size: clamp(0.45rem, 0.9vw, 0.75rem);
  color: var(--ink);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 768px) {
    .landing{
    height: 85vh !important;
    }
    .footer{
        padding-bottom:10px;
        
    }
    .contact{
            padding: 10px 0 0px;
    }
  .logo-img {
    max-width: min(340px, 75vw);
  }
  .tagline {
    font-size: clamp(1rem, 3.5vw, 1.4rem);
  }
  .descriptor {
    font-size: clamp(0.45rem, 1.6vw, 0.65rem);
    letter-spacing: 0.16em;
  }
}

@media (max-width: 480px) {
  .hero {
    gap: 2.5rem;
    padding: 2.5rem 1.5rem 1rem;
  }
  .logo-img {
    max-width: 60vw;
  }
  .tagline {
    font-size: clamp(0.95rem, 3.8vw, 1.2rem);
  }
  .email-link {
    font-size: 0.9rem;
  }
  .descriptor {
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 320px) {
  .tagline { font-size: 0.9rem; }
  .descriptor { letter-spacing: 0.09em; }
}