/* ============================================
   COCO MOON — THE SENSUAL ATELIER
   Shared stylesheet. Edit colors and fonts here
   and every page updates.
   ============================================ */

:root{
  --blush: #faf0ef;        /* page background */
  --blush-deep: #f1dcdb;   /* image placeholder / card fill */
  --border: #e6cdd0;       /* hairline dividers */
  --rose: #c98a94;         /* corner frames, small accents */
  --rosewood: #5c3a3c;     /* wordmark, ink, active states */
  --muted-pink: #c49aa0;   /* small tracked labels */
  --caption: #8a6265;      /* body caption text */
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--blush);
  color: var(--rosewood);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.6;
}

a{ color: var(--rosewood); text-decoration: none; }
a:hover{ color: var(--rose); }

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

.wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- masthead ---------- */

.masthead{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px 0 16px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 48px;
}

.wordmark{
  font-family: 'Yeseva One', serif;
  font-size: 22px;
  color: var(--rosewood);
  letter-spacing: 3px;
  margin: 0;
  text-decoration: none;
  display: block;
}

.subtitle{
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-pink);
  font-weight: 500;
  margin: 5px 0 0;
}

.issue-tag{
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-pink);
}

/* ---------- corner-framed plates ---------- */

.framed{
  position: relative;
  padding: 14px;
}

.corner{
  position: absolute;
  width: 22px;
  height: 22px;
  border: 0.5px solid var(--rose);
}
.corner.tl{ top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.corner.tr{ top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.corner.bl{ bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.corner.br{ bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

.plate{
  background: var(--blush-deep);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.plate img{ width: 100%; height: 100%; object-fit: cover; }

.detail{
  background: var(--blush-deep);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.detail img{ width: 100%; height: 100%; object-fit: cover; }

/* ---------- hero spread ---------- */

.spread{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.spread .side{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-label{
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-pink);
}

.caption-text{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--caption);
  margin: 0;
}

.credit-line{
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-pink);
  margin: 0 0 4px;
}

.heart-divider{ margin-top: 6px; }

/* ---------- section headings ---------- */

h1.page-title{
  font-family: 'Yeseva One', serif;
  font-size: 30px;
  margin: 0 0 8px;
  color: var(--rosewood);
}

p.page-intro{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--caption);
  max-width: 640px;
  margin: 0 0 40px;
}

hr.rule{
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 48px 0;
}

/* ---------- collections grid ---------- */

.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  margin-bottom: 48px;
}

.card .plate{ margin-bottom: 12px; }

.card .title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--rosewood);
  margin: 0 0 2px;
}

.card .meta{
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-pink);
  margin: 0;
}

/* ---------- article / about / blog copy ---------- */

article.post-body{ max-width: 660px; }
article.post-body p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--caption);
  margin-bottom: 22px;
}

/* ---------- footer nav ---------- */

.footer-nav{
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin: 40px 0 20px;
}

.footer-nav a{
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-pink);
  font-weight: 500;
}

.footer-nav a.current,
.footer-nav a.shop{ color: var(--rosewood); }

.copyright{
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted-pink);
  margin: 0 0 40px;
}

/* ---------- responsive ---------- */

@media (max-width: 720px){
  .spread{ grid-template-columns: 1fr; }
  h1.page-title{ font-size: 24px; }
  .wordmark{ font-size: 19px; }
}

@media (max-width: 460px){
  .footer-nav{ gap: 18px; }
  .wrap{ padding: 0 20px; }
}
