/* ============================================
   PIEL HABLA — pieltattoo.com
   Palette pulled from logo:
   - Warm golden yellow  #F2A81D
   - Deep terracotta     #B85042  (hidden detail red from logo)
   - Dusty sage          #7A9E8E
   - Cream               #FAF6EF
   - Deep brown-black    #1E1410
   ============================================ */

:root {
  --gold: #F2A81D;
  --terra: #B85042;
  --sage: #7A9E8E;
  --cream: #FAF6EF;
  --dark: #1E1410;
  --mid: #6B5B4E;
  --light-sage: #D6E8E1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1.2rem 2.5rem;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
}

nav a {
  text-decoration: none;
  color: var(--mid);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--terra);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(160deg, #fdf8f2 0%, #f0e8e0 50%, #e8d8cc 100%);
}

.logo {
  width: min(380px, 80vw);
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.tagline {
  margin-top: 1.5rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* ---- SECTIONS ---- */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* ---- ABOUT ---- */
.about {
  background: var(--cream);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 620px;
  margin-bottom: 3rem;
}

.about-body p {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-body em {
  font-style: italic;
  color: var(--terra);
}

.lines-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #DDD5CB;
}

.brand-line {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid #DDD5CB;
}

.brand-line-label {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--terra);
}

.brand-line-desc {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ---- COMING SOON ---- */
.coming-soon {
  background: var(--dark);
  color: var(--cream);
}

.coming-soon .eyebrow {
  color: var(--gold);
}

.coming-soon h2 {
  color: var(--cream);
}

.coming-intro {
  color: #C4B5A8;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.design-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.design-card:hover {
  border-color: var(--gold);
  background: rgba(242, 168, 29, 0.06);
}

.design-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.design-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.design-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}

.design-card p {
  font-size: 0.9rem;
  color: #A89B8E;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(242, 168, 29, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.coming-note {
  color: #6B5B4E;
  font-size: 0.9rem;
  font-style: italic;
}

/* ---- CONTACT ---- */
.contact {
  background: var(--light-sage);
}

.contact h2 {
  margin-bottom: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
}

.contact-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--terra);
  border: 1.5px solid var(--terra);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--terra);
  color: white;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: #6B5B4E;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer em {
  font-style: italic;
  color: #8B7B6E;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  nav {
    gap: 1.2rem;
    padding: 1rem 1.5rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .brand-line {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .designs-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}