/* ==========================================================================
   Diamond Heart Skin Studio — Site Stylesheet
   Built from diamond-heart-style-guide.html brand tokens.
   Paste this into Appearance > Customize > Additional CSS,
   or your child theme's style.css.
   ========================================================================== */

:root {
  --dark: #3C3D3F;
  --rose-primary: #E1A1A2;
  --rose-secondary: #D6A8AA;
  --rose-light: #FFE3E5;
  --rose-deep: #7D5557;
  --white: #FAF6F6;
  --off-white: #F2EBEC;
  --tint-bg: #ECE0DF;
  --good: #6a9e78;
  --warn: #b86b6b;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.section-heading {
  font-size: 34px;
  letter-spacing: 0.03em;
  margin: 10px 0 18px;
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: #6b6b6d;
  max-width: 640px;
  line-height: 1.75;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  transition: all .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--rose-primary);
  color: var(--dark);
}
.btn-primary:hover { background: var(--rose-secondary); }

.btn-outline-dark {
  border-color: var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--rose-light); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--rose-primary); color: var(--rose-primary); }

.btn-block { display: block; text-align: center; width: 100%; }

/* ---------- Top announcement bar ---------- */
.announce {
  background: var(--rose-deep);
  color: var(--rose-light);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.announce a { text-decoration: underline; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.hero-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 20px auto;
  display: block;
}

nav.main-nav { display: flex; align-items: center; gap: 34px; }

.nav-links { display: flex; gap: 30px; list-style: none; position: relative; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.nav-links > li > a:hover { color: var(--rose-primary); }

.dropdown { list-style: none; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,0.18); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .2s ease; padding: 10px 0; border-radius: 2px; }
.nav-links > li:hover .dropdown, .nav-links > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 22px; font-size: 12px; letter-spacing: 0.05em; color: var(--dark); text-transform: none; font-weight: 400; }
.dropdown li a:hover { background: var(--rose-light); color: var(--rose-deep); }
.dropdown .soon-tag { font-size: 8px; letter-spacing: .1em; color: var(--rose-deep); border: 1px solid var(--rose-deep); border-radius: 20px; padding: 1px 6px; margin-left: 6px; vertical-align: middle; }

.nav-cta { font-size: 10px !important; padding: 10px 20px; border: 1px solid var(--rose-primary); border-radius: 2px; }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  nav.main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: var(--dark);
    flex-direction: column; align-items: flex-start; padding: 90px 30px 40px; transform: translateX(100%);
    transition: transform .3s ease; gap: 24px; height: 100vh; overflow-y: auto; }
  nav.main-nav.open { transform: translateX(0); }
  .nav-links { flex-direction: column; gap: 18px; width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.04); display: none; width: 100%; }
  .nav-links > li.open .dropdown { display: block; }
  .dropdown li a { color: var(--white); }
  .dropdown li a:hover { background: rgba(255,255,255,0.08); color: var(--rose-primary); }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 50px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; max-width: 720px; margin: 0 auto; }
.hero .eyebrow { color: var(--rose-primary); }
.hero h1 {
  font-size: clamp(28px, 4.2vw, 46px);
  color: var(--white);
  margin: 14px 0 16px;
  letter-spacing: 0.02em;
}
.hero h1 em { font-style: normal; color: var(--rose-primary); }
.hero p.lede { font-size: 15px; font-weight: 300; color: #d9d3d3; max-width: 560px; margin: 0 auto 34px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.page-hero {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 24px 64px;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); margin-top: 14px; }
.page-hero p { max-width: 560px; margin: 16px auto 0; color: #d9d3d3; font-size: 14px; line-height: 1.8; }
.breadcrumb { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-secondary); }
.breadcrumb a { color: var(--rose-secondary); }
.breadcrumb a:hover { color: var(--rose-primary); }

/* ---------- Sections / layout ---------- */
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section.on-light { background: var(--off-white); }
.section.on-tint { background: var(--tint-bg); }
.section.on-dark { background: var(--dark); color: var(--white); }
.section.on-dark h2, .section.on-dark h3 { color: var(--white); }
.section.on-dark .section-sub { color: #cfc7c7; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: 4px;
  padding: 34px 30px;
  box-shadow: 0 2px 16px rgba(60,61,63,0.08);
}
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 13.5px; color: #6b6b6d; line-height: 1.75; }
.card .card-link { display: inline-block; margin-top: 16px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-deep); border-bottom: 1px solid var(--rose-primary); padding-bottom: 2px; }

.badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--rose-deep);
  color: var(--rose-light);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.badge.subtle { background: var(--rose-light); color: var(--rose-deep); }

.coming-soon-card { position: relative; opacity: 0.94; border: 1px dashed var(--rose-secondary); }

/* ---------- Two column feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature img, .feature .img-placeholder { border-radius: 4px; }
@media (max-width: 880px) { .feature { grid-template-columns: 1fr; gap: 30px; } }

.img-placeholder {
  background: linear-gradient(135deg, var(--rose-light), var(--off-white));
  border: 1px solid var(--rose-secondary);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

/* ---------- Lists ---------- */
.check-list { list-style: none; }
.check-list li { padding: 8px 0 8px 26px; position: relative; font-size: 14px; color: #4d4d4f; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--good); font-weight: 700; }

.no-list { list-style: none; }
.no-list li { padding: 8px 0 8px 26px; position: relative; font-size: 14px; color: #4d4d4f; }
.no-list li::before { content: '×'; position: absolute; left: 0; top: 6px; color: var(--warn); font-weight: 700; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--rose-light); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif; font-size: 18px; color: var(--dark);
}
.faq-q .plus { color: var(--rose-deep); font-size: 20px; transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: 14px; color: #6b6b6d; line-height: 1.8; }
.faq-a-inner { padding-bottom: 22px; }
.faq-item.open .faq-a { max-height: 500px; }

.note {
  font-size: 12px; color: #4d4d4f; background: var(--off-white); border-left: 3px solid var(--rose-secondary);
  padding: 14px 18px; margin-top: 18px; line-height: 1.7;
}

/* ---------- Pricing table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 2px 16px rgba(60,61,63,0.08); }
.price-table th, .price-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--off-white); font-size: 13.5px; }
.price-table th { font-family: 'Montserrat'; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-deep); background: var(--rose-light); }
.price-table td.price { font-family: 'Playfair Display'; font-size: 17px; color: var(--dark); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border-radius: 4px; padding: 26px 22px; box-shadow: 0 2px 12px rgba(60,61,63,0.06); }
.step .num { font-family: 'Playfair Display'; font-size: 26px; color: var(--rose-primary); margin-bottom: 10px; }
.step h4 { font-size: 15px; margin-bottom: 8px; }
.step p { font-size: 12.5px; color: #777; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); color: var(--white); text-align: center; padding: 68px 24px; }
.cta-band h2 { color: var(--white); }
.cta-band .section-sub { color: #d9d3d3; margin: 0 auto 28px; }

/* ---------- Gallery ---------- */
.gallery-tabs { 
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin-bottom: 30px; 
}

.gallery-tab { 
  font-size: 10px; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  padding: 10px 20px; 
  border: 1px solid var(--rose-secondary); 
  border-radius: 20px; 
  background: var(--white); 
  cursor: pointer; 
}

.gallery-tab.active, 
.gallery-tab:hover { 
  background: var(--rose-primary); 
  border-color: var(--rose-primary); 
  color: var(--dark); 
}

/* Pinterest / Masonry Layout */
.gallery-grid {
  column-count: 3;
  column-gap: 14px;
  width: 100%;
}

.gallery-item {
  break-inside: avoid; /* Prevents images from splitting across columns */
  margin-bottom: 14px; /* Seamless gap between vertically stacked images */
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive columns for mobile & tablet */
@media (max-width: 880px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* ---------- Map ---------- */
.map-embed { border: 0; width: 100%; height: 420px; border-radius: 4px; filter: grayscale(0.15); }
.address-card { background: var(--white); padding: 30px; border-radius: 4px; box-shadow: 0 2px 16px rgba(60,61,63,0.08); }
.address-card h3 { font-size: 18px; margin-bottom: 14px; }
.address-card p { font-size: 13.5px; color: #6b6b6d; margin-bottom: 10px; line-height: 1.8; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--dark); color: var(--rose-light); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose-secondary); margin-bottom: 18px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 12.5px; font-weight: 300; color: #d9d3d3; }
.footer-grid a:hover { color: var(--rose-primary); }
.footer-brand { margin-bottom: 18px; }
.footer-brand img { width: 100%; max-width: 170px; height: auto; }
.footer-desc { font-size: 12.5px; color: #b9b0b0; line-height: 1.8; max-width: 280px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.social-row a:hover { border-color: var(--rose-primary); color: var(--rose-primary); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #a79d9d; }

/* ---------- Mobile microsite (links page) ---------- */
.linklist-body { background: var(--dark); min-height: 100vh; padding: 60px 20px 40px; }
.linklist-wrap { max-width: 420px; margin: 0 auto; text-align: center; }
.linklist-logo { color: var(--rose-primary); font-family: 'Playfair Display'; font-size: 20px; letter-spacing: 0.1em; margin-bottom: 4px; }
.linklist-logo-img { width: 100%; max-width: 220px; height: auto; margin: 0 auto 14px; display: block; }
.linklist-tag { color: var(--rose-secondary); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 36px; }
.link-btn {
  display: block; background: rgba(255,255,255,0.04); border: 1px solid rgba(225,161,163,0.35);
  color: var(--white); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px; border-radius: 30px; margin-bottom: 14px; transition: all .2s ease;
}
.link-btn:hover { background: var(--rose-primary); color: var(--dark); border-color: var(--rose-primary); }
.link-btn.primary { background: var(--rose-primary); color: var(--dark); border-color: var(--rose-primary); font-weight: 500; }
.linklist-social { display: flex; justify-content: center; gap: 14px; margin: 30px 0; }
.linklist-foot { color: #a79d9d; font-size: 10px; letter-spacing: 0.1em; margin-top: 30px; }

/* ---------- Misc ---------- */
.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; }
.divider { height: 1px; background: var(--rose-light); margin: 60px 0; }
