/* =========================================
   Nectar Estates – Universal CSS
   Ultra Premium – White Edition
   Typography: Cormorant Garamond + Inter
   ========================================= */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap");

/* Root variables – Nectar + white palette */
:root {
  --nectar-pink: #ea189f;             /* Brand Pink */
  --nectar-ink: #141318;              /* Deep Ink */
  --nectar-soft-ink: #6c6a7a;         /* Muted Ink Grey */

  --nectar-bg: #ffffff;               /* Main white */
  --nectar-bg-alt: #fafafa;           /* Very light grey section */
  --nectar-bg-alt-2: #f5f5f5;         /* Slightly deeper grey band */

  --nectar-border-soft: #e3e3ea;      /* Soft neutral border */
  --nectar-shadow-soft: 0 14px 40px rgba(10, 10, 25, 0.06);

  --nectar-radius-lg: 26px;
  --nectar-radius-md: 18px;
  --nectar-radius-pill: 999px;

  --nectar-max-width: 1120px;
  --nectar-transition: 0.25s ease;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

/* Body */
body {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 17px !important;
  line-height: 1.9;
  color: var(--nectar-ink);
  background: var(--nectar-bg);
  -webkit-font-smoothing: antialiased;
}


/* Layout */
.nectar-container {
  width: 100%;
  max-width: var(--nectar-max-width);
  margin: 0 auto;
  padding: 0 22px;
}

/* Section spacing */
.nectar-section {
  padding: 70px 0;
}

/* Tighter spacing for sections directly under a hero */
.nectar-section.tight-top {
  padding-top: 40px;
}

/* Special tighter spacing for featured blog section */
.nectar-section.blog-featured {
  padding-top: 32px;
}

/* Alternate section strip (soft grey) */
.nectar-section-alt {
  background: var(--nectar-bg-alt);
}

/* Section headers */
.nectar-section-header {
  margin-bottom: 36px;
  max-width: 640px;
}

.nectar-section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 34px;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-top: 18px;
}

.nectar-section-header h2::before {
  content: "";
  position: absolute;
  top: 0;
  width: 46px;
  height: 2px;
  background: var(--nectar-pink);
}

.nectar-section-header p {
  margin: 0;
  color: var(--nectar-soft-ink);
  font-size: 14px;
}

/* Grid */
.nectar-grid {
  display: grid;
  gap: 30px;
}

.nectar-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nectar-grid.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.nectar-card {
  background: var(--nectar-bg);
  border-radius: var(--nectar-radius-lg);
  border: 1px solid var(--nectar-border-soft);
  padding: 30px;
  box-shadow: var(--nectar-shadow-soft);
  transition: transform var(--nectar-transition),
    box-shadow var(--nectar-transition);
}

.nectar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(5, 5, 25, 0.12);
}

.nectar-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nectar-card p,
.nectar-card ul {
  color: var(--nectar-soft-ink);
  font-size: 14px;
  margin: 0;
}

.nectar-card ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.nectar-card li {
  margin-bottom: 8px;
}

/* Buttons */
.nectar-btn,
.nectar-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--nectar-radius-pill);
  border: 1px solid transparent;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--nectar-transition);
}

.nectar-btn.primary {
  background: var(--nectar-pink);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(234, 24, 159, 0.22);
}

.nectar-btn.primary:hover {
  box-shadow: 0 16px 32px rgba(234, 24, 159, 0.32);
  transform: translateY(-2px);
}

.nectar-btn.secondary {
  background: var(--nectar-bg);
  border: 1px solid var(--nectar-border-soft);
  color: var(--nectar-ink);
}

.nectar-btn.secondary:hover {
  border-color: var(--nectar-pink);
  color: var(--nectar-pink);
}

.nectar-btn.tertiary,
.nectar-btn.ghost {
  background: transparent;
  border: 1px solid var(--nectar-border-soft);
  color: var(--nectar-ink);
}

.nectar-btn.tertiary:hover,
.nectar-btn.ghost:hover {
  border-color: var(--nectar-pink);
  color: var(--nectar-pink);
}

/* =========================================
   Header / Navigation – large logo, tight lane
   ========================================= */

.nectar-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--nectar-border-soft);
  overflow: visible; /* allow logo to hang below header */
}

.nectar-header-inner {
  display: flex;
  align-items: flex-end;          /* nav aligned to baseline */
  justify-content: space-between;
  padding: 10px 0 4px;
}

/* Logo lane is ~90px tall, but image can be bigger */
.nectar-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 14px;
  height: 90px;
  position: relative;
}

.nectar-logo img {
  height: 188px;                  /* visually large logo */
  width: auto;
  display: block;
  transform: translateY(16px);    /* hang into hero area */
}

.nectar-logo-tagline {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--nectar-soft-ink);
  white-space: nowrap;
}

/* Navigation */
.nectar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nectar-nav a {
  text-decoration: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--nectar-soft-ink);
  padding-bottom: 4px;
  position: relative;
}

.nectar-nav a:hover {
  color: var(--nectar-ink);
}

.nectar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1.5px;
  background: var(--nectar-pink);
  transition: width var(--nectar-transition);
}

.nectar-nav a:hover::after,
.nectar-nav a.is-active::after {
  width: 100%;
}

/* =========================================
   Home Hero + Dynamic Search
   ========================================= */

.nectar-hero {
  padding: 60px 0 70px;
  background: var(--nectar-bg);
}

.nectar-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.nectar-hero-copy {
  max-width: 540px;
}

.nectar-hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 42px;
  margin: 0 0 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.nectar-hero-copy p {
  margin: 0 0 28px;
  color: var(--nectar-soft-ink);
  font-size: 14px;
}

.nectar-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.nectar-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.nectar-hero-tags span {
  padding: 6px 14px;
  border-radius: var(--nectar-radius-pill);
  border: 1px solid var(--nectar-border-soft);
  background: #ffffff;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ULTRA PREMIUM DYNAMIC SEARCH BAR */

.nectar-hero-search {
  margin-bottom: 18px;
  max-width: 680px;
}

.nectar-search-form {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--nectar-border-soft);
  padding: 6px 12px;
  box-shadow: 0 10px 26px rgba(5, 5, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.nectar-hero-search.is-active .nectar-search-form {
  border-color: var(--nectar-pink);
  box-shadow: 0 18px 42px rgba(5, 5, 25, 0.16);
}

/* MAIN SEARCH LINE */
.nectar-search-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nectar-search-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nectar-soft-ink);
}

.nectar-search-icon svg {
  width: 100%;
  height: 100%;
}

.nectar-search-main input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.nectar-search-main input::placeholder {
  color: #a0a0b7;
}

/* SERVICE DROPDOWN */
.nectar-service-select {
  border: 1px solid var(--nectar-border-soft);
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--nectar-ink);
  outline: none;
  transition: border-color 0.25s ease;
}

.nectar-service-select:focus {
  border-color: var(--nectar-pink);
}

/* Search button */
.nectar-btn.search-submit {
  padding: 9px 18px;
  background: var(--nectar-ink);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
}

/* FILTERS PANEL */
.nectar-search-filters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 6px;
  transition: max-height 0.4s ease, opacity 0.25s ease;
}

.nectar-hero-search.is-active .nectar-search-filters {
  max-height: 300px;
  opacity: 1;
}

.nectar-filter-block label {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 11px;
  color: var(--nectar-soft-ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 3px;
  display: block;
}

.nectar-filter-block input,
.nectar-filter-block select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--nectar-border-soft);
  padding: 7px 12px;
  font-size: 13px;
  outline: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.nectar-filter-block select:focus,
.nectar-filter-block input:focus {
  border-color: var(--nectar-pink);
}

/* Hero Video */
.nectar-hero-video {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nectar-video-frame {
  background: transparent;
  border-radius: 24px;
  padding: 0;
  box-shadow: none;
}

.nectar-video-frame iframe {
  width: 100%;
  height: 270px;
  border-radius: 18px;
  border: 1px solid var(--nectar-border-soft);
  background: #ffffff;
}

.nectar-video-caption {
  margin: 0;
  color: var(--nectar-soft-ink);
  font-size: 13px;
}

/* Property Rows */
.nectar-property-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.nectar-property-card {
  background: #ffffff;
  border-radius: var(--nectar-radius-md);
  border: 1px solid var(--nectar-border-soft);
  overflow: hidden;
  box-shadow: var(--nectar-shadow-soft);
  transition: all var(--nectar-transition);
}

.nectar-property-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(5, 5, 25, 0.14);
}

.nectar-property-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.nectar-property-body {
  padding: 18px;
}

/* Optional pill label */
.nectar-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--nectar-border-soft);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--nectar-soft-ink);
  margin-bottom: 8px;
}

.nectar-property-body h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.nectar-property-location {
  margin: 0;
  font-size: 13px;
  color: var(--nectar-soft-ink);
}

.nectar-property-meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--nectar-soft-ink);
}

/* Steps / How it works */
.nectar-step {
  background: #ffffff;
  border-radius: var(--nectar-radius-lg);
  padding: 28px;
  border: 1px solid var(--nectar-border-soft);
  box-shadow: none;
}

.nectar-step-number {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--nectar-pink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.nectar-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* =========================================
   Page hero (inner pages)
   ========================================= */

.nectar-page-hero {
  background: var(--nectar-bg-alt);
  border-bottom: 1px solid var(--nectar-border-soft);
  padding: 48px 0 32px;
}

.nectar-page-hero h1 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nectar-page-hero p {
  margin: 0;
  max-width: 620px;
  color: var(--nectar-soft-ink);
  font-size: 14px;
}

/* =========================================
   BLOG HERO – NECTAR JOURNAL
   ========================================= */

.nectar-blog-hero {
  background: var(--nectar-bg-alt);
  border-bottom: 1px solid var(--nectar-border-soft);
  padding: 40px 0 32px;
}

.nectar-blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.nectar-blog-hero-copy h1 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nectar-blog-hero-copy p {
  margin: 0;
  max-width: 520px;
  color: var(--nectar-soft-ink);
  font-size: 14px;
}

/* Right-hand masthead card */
.nectar-blog-hero-meta {
  justify-self: end;
}

.nectar-blog-hero-meta-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--nectar-border-soft);
  box-shadow: 0 14px 40px rgba(10, 10, 25, 0.06);
  padding: 18px 20px;
  max-width: 260px;
}

.nectar-blog-hero-meta-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.nectar-blog-hero-meta-card p {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--nectar-soft-ink);
}

.nectar-blog-hero-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nectar-blog-hero-meta-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--nectar-border-soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* =========================================
   Forms
   ========================================= */

.nectar-form {
  display: grid;
  gap: 18px;
  max-width: 540px;
}

.nectar-form-row {
  display: flex;
  gap: 16px;
}

.nectar-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nectar-form label {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--nectar-soft-ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nectar-form input,
.nectar-form select,
.nectar-form textarea {
  border-radius: 14px;
  border: 1px solid var(--nectar-border-soft);
  padding: 10px 12px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color var(--nectar-transition),
    box-shadow var(--nectar-transition), background var(--nectar-transition);
}

.nectar-form input:focus,
.nectar-form select:focus,
.nectar-form textarea:focus {
  border-color: var(--nectar-pink);
  box-shadow: 0 0 0 1px rgba(234, 24, 159, 0.16);
  background: #ffffff;
}

.nectar-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* FAQ */
.nectar-faq-item {
  border-radius: 18px;
  border: 1px solid var(--nectar-border-soft);
  background: #ffffff;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(20, 15, 45, 0.06);
}

.nectar-faq-item + .nectar-faq-item {
  margin-top: 12px;
}

.nectar-faq-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.nectar-faq-item p {
  margin: 0;
  color: var(--nectar-soft-ink);
  font-size: 14px;
}

/* =========================================
   Footer
   ========================================= */

.nectar-footer {
  padding: 50px 0 30px;
  background: var(--nectar-bg);
  border-top: 1px solid var(--nectar-border-soft);
}

.nectar-footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr;
  gap: 30px;
}

.nectar-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.nectar-footer-links a {
  text-decoration: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--nectar-soft-ink);
}

.nectar-footer-links a:hover {
  color: var(--nectar-pink);
}

.nectar-footer-meta {
  font-size: 12px;
  color: var(--nectar-soft-ink);
  text-align: right;
}

.nectar-footer-meta p {
  margin: 0 0 4px;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 900px) {
  .nectar-header-inner {
    padding: 10px 0 4px;
  }

  .nectar-logo {
    height: 70px;
  }

  .nectar-logo img {
    height: 120px;
    transform: translateY(10px);
  }

  .nectar-logo-tagline {
    display: none;
  }

  .nectar-nav {
    gap: 18px;
  }

  .nectar-nav a {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .nectar-hero-inner {
    grid-template-columns: 1fr;
  }

  .nectar-grid.two-cols,
  .nectar-grid.three-cols {
    grid-template-columns: 1fr;
  }

  .nectar-blog-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nectar-blog-hero-meta {
    justify-self: flex-start;
  }

  .nectar-footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .nectar-footer-meta {
    text-align: left;
  }

  .nectar-form-row {
    flex-direction: column;
  }

  .nectar-video-frame iframe {
    height: 230px;
  }

  .nectar-hero-search {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .nectar-nav {
    display: none; /* until a mobile menu is added */
  }

  .nectar-logo {
    height: 56px;
  }

  .nectar-logo img {
    height: 90px;
    transform: translateY(6px);
  }
}

@media (max-width: 600px) {
  .nectar-hero-copy h1 {
    font-size: 32px;
  }

  .nectar-section {
    padding: 60px 0;
  }

  .nectar-blog-hero {
    padding: 30px 0 24px;
  }

  .nectar-blog-hero-copy h1 {
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .nectar-search-form {
    border-radius: 22px;
  }

  .nectar-search-main {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nectar-btn.search-submit {
    width: 100%;
    justify-content: center;
  }

  .nectar-search-filters {
    max-height: 300px;
  }
}
/* Footer tweaks */
.nectar-footer-logo {
  height: 44px !important;              /* larger than the original 32px */
  display: block;
}

.nectar-footer-brand {
  max-width: 260px;
}

.nectar-footer-tagline {
  margin: 10px 0 0;
  color: #6c6a7a;
  font-size: 13px;
}

.nectar-footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.nectar-footer-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.nectar-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.nectar-footer-social span {
  color: #6c6a7a;
}

.nectar-footer-social a {
  text-decoration: none;
  font-size: 13px;
  color: #141318;
  border-bottom: 1px solid rgba(20, 19, 24, 0.12);
  padding-bottom: 1px;
}

.nectar-footer-social a:hover {
  border-bottom-color: rgba(20, 19, 24, 0.35);
}

.nectar-footer-meta {
  font-size: 12px;
  color: #9a98a6;
}

@media (max-width: 768px) {
  .nectar-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nectar-footer-side {
    align-items: flex-start;
    text-align: left;
  }
}
/* =========================================
   Nectar Journal – Article layout & styling
   ========================================= */

/* Overall article spacing */
.nectar-article {
  margin-top: 24px;
}

/* Breadcrumb */
.nectar-breadcrumb {
  font-size: 12px;
  color: var(--nectar-soft-ink);
  margin-bottom: 10px;
}

.nectar-breadcrumb a {
  color: var(--nectar-soft-ink);
  text-decoration: none;
}

.nectar-breadcrumb a:hover {
  color: var(--nectar-ink);
}

.nectar-breadcrumb span {
  margin: 0 6px;
}

/* Header typography – make it look expensive */
.nectar-article-header {
  margin-bottom: 10px;
}

.nectar-article-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 6px 0 6px;
  line-height: 1.3;
}

.nectar-article-meta {
  font-size: 12px;
  color: var(--nectar-soft-ink);
}

/* Top layout: details card + intro + image */
.nectar-article-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 36px;
  align-items: flex-start;
  margin-top: 26px;
  margin-bottom: 34px;
}

/* Dark details card */
.nectar-article-details-card {
  background: #141318;
  color: #f5f5f7;
  padding: 22px 24px;
  border-radius: 24px;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
  max-width: 340px;
}

.nectar-article-details-card h2 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #a9a7b6;
}

.nectar-article-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nectar-article-details-list li + li {
  margin-top: 12px;
}

.nectar-article-details-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a9a7b6;
  margin-bottom: 2px;
}

.nectar-article-details-value {
  font-size: 14px;
  line-height: 1.4;
}

/* Intro text + hero image */
.nectar-article-top-main p:first-of-type {
  font-size: 16px;
  line-height: 1.8;
}

/* Containerised hero image */
.nectar-article-figure {
  margin: 22px 0 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--nectar-shadow-soft);
}

.nectar-article-figure img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Article body – width + typography */
.nectar-article-body {
  max-width: 760px;
  margin: 0 auto;
}

.nectar-article-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 32px 0 10px;
}

.nectar-article-body p {
  font-size: 15px;
  color: var(--nectar-ink);
  margin: 0 0 14px;
}

.nectar-article-body ul {
  padding-left: 20px;
  margin: 0 0 18px;
  color: var(--nectar-soft-ink);
  font-size: 14px;
}

.nectar-article-body li {
  margin-bottom: 6px;
}

/* Soft highlight quote block */
.nectar-quote-block {
  margin: 30px auto;
  padding: 24px 24px;
  border-radius: 26px;
  background: #fffdf9;
  border: 1px solid rgba(234, 24, 159, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  max-width: 720px;
}

.nectar-quote-block blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  color: #c38a40; /* warm muted gold */
}

/* Article footer CTA */
.nectar-article-footer {
  margin: 40px auto 0;
  max-width: 760px;
  padding-top: 26px;
  border-top: 1px solid var(--nectar-border-soft);
}

.nectar-article-footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.nectar-article-footer p {
  margin: 0 0 14px;
  color: var(--nectar-soft-ink);
  font-size: 14px;
}

/* Responsive tweaks for article layout */
@media (max-width: 900px) {
  .nectar-article-top {
    grid-template-columns: minmax(0, 1fr);
  }

  .nectar-article-details-card {
    max-width: 100%;
  }

  .nectar-article-body,
  .nectar-article-footer {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .nectar-article-header h1 {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .nectar-article-figure img {
    height: 220px;
  }
}
/* =========================================
   UI chrome stays in Inter
   ========================================= */

   .nectar-nav a,
   .nectar-btn,
   .nectar-btn-nav,
   .nectar-pill,
   .nectar-form label,
   .nectar-form input,
   .nectar-form select,
   .nectar-form textarea,
   .nectar-footer-links a,
   .nectar-footer-meta,
   .nectar-breadcrumb {
     font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
       "Segoe UI", sans-serif;
     font-size: 12px;
   }
   
   /* Slightly larger paragraph styling for premium feel */
   .nectar-article-body p,
   .nectar-article-body li {
     font-size: 16px;
   }
   /* TO MAKE FONT BOLDER */
   /* === Readability upgrades === */

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px !important;              /* base size */
  line-height: 1.7;             /* looser lines = easier reading */
  color: var(--nectar-ink);     /* use the deep ink, not the soft grey */
}

/* General paragraph text */
p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nectar-ink);
}

/* Hero / lede text under big headings */
.nectar-hero-text,
.nectar-hero p,
.nectar-lede,
.nectar-section-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 48rem;
}

/* Lists (e.g. How Nectar Works steps) */
.nectar-section li {
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Keep “soft ink” only for subtle meta info */
.nectar-meta,
.nectar-caption,
.nectar-badge,
.nectar-footer small {
  color: var(--nectar-soft-ink);
}

