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

:root {
  --cream:    #FAF7F2;
  --blush:    #EDD9CC;
  --sage:     #B5C4B1;
  --mist:     #D6E0DC;
  --stone:    #8A8478;
  --ink:      #3D3830;
  --gold:     #C8A97E;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,126,0.35);
  box-shadow: 0 2px 16px rgba(61,56,48,0.07);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-logo-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.nav-logo-tagline em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--gold);
  font-weight: 400;
  margin-left: 0.4rem;
}
.feather-logo {
  height: 40px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.75;
  filter: sepia(0.3) saturate(0.6);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.is-active { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url('/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at center,
      rgba(250,247,242,0.45) 0%,
      rgba(250,247,242,0.18) 55%,
      rgba(250,247,242,0) 100%),
    linear-gradient(180deg,
      rgba(250,247,242,0.1) 0%,
      transparent 20%,
      transparent 80%,
      rgba(61,56,48,0.2) 100%);
  z-index: 1;
}
.hero h1,
.hero .hero-tag,
.hero .hero-sub {
  text-shadow: 0 1px 24px rgba(250,247,242,0.85), 0 1px 3px rgba(250,247,242,0.6);
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.hero-sub { margin-left: auto; margin-right: auto; }

.hero .btn {
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(61,56,48,0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.hero .btn:hover {
  background: var(--gold);
  color: var(--cream);
  box-shadow: 0 6px 24px rgba(200,169,126,0.35);
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1.12;
  color: var(--ink);
  animation: fadeUp 1s 0.15s ease both;
}
h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 1.8rem;
  max-width: 460px;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--stone);
  animation: fadeUp 1s 0.3s ease both;
}

.hero-cta {
  margin-top: 3rem;
  animation: fadeUp 1s 0.45s ease both;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: var(--gold); color: var(--cream); }

.hero-right {
  position: relative;
  background: var(--mist);
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 60% 40%, rgba(237,217,204,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(181,196,177,0.4) 0%, transparent 70%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}
.orb-1 {
  width: 340px; height: 340px;
  top: 10%; left: 10%;
  background: radial-gradient(circle, var(--blush), transparent);
  animation: drift 8s ease-in-out infinite;
}
.orb-2 {
  width: 200px; height: 200px;
  bottom: 20%; right: 15%;
  background: radial-gradient(circle, var(--sage), transparent);
  animation: drift 11s 2s ease-in-out infinite reverse;
}
.orb-3 {
  width: 120px; height: 120px;
  top: 55%; left: 40%;
  background: radial-gradient(circle, var(--gold), transparent);
  animation: drift 7s 1s ease-in-out infinite;
}

.hero-right-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  z-index: 2;
  padding: 3rem;
}
.hero-right-text .big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  color: var(--ink);
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1.2s 0.6s ease forwards;
}
.hero-right-text .quote-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeUp 1.2s 0.8s ease forwards;
}
.hero-right-text .quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  animation: fadeUp 1.2s 1s ease forwards;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 6rem;
  background: var(--cream);
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 4rem;
}
.services > .section-label,
.services > .section-title {
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(200,169,126,0.2);
  background: var(--cream);
  position: relative;
  transition: box-shadow 0.4s, transform 0.4s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(140,120,90,0.1); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  display: block;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.card p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--stone);
}
.card-details {
  margin-top: 1.2rem;
}
.card-details summary {
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  list-style: none;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(200,169,126,0.3);
  transition: color 0.3s, letter-spacing 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-details summary::-webkit-details-marker { display: none; }
.card-details summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 0.8;
}
.card-details[open] summary::after { content: '–'; }
.card-details summary:hover { color: var(--ink); }
.card-details-content {
  padding: 0.5rem 0 0.5rem;
}
.card-details-content > p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 0.9rem;
}
.card-details-content strong {
  color: var(--ink);
  font-weight: 500;
}
.card-details-content video {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(61,56,48,0.12);
  display: block;
}
.card-video-caption {
  display: block;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-align: center;
  margin-top: -0.2rem !important;
  margin-bottom: 1rem !important;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif !important;
  letter-spacing: 0.05em !important;
}
.card-details-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin: 1.1rem 0 0.4rem;
  letter-spacing: 0.02em;
}
.card-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold) !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  margin: -0.3rem 0 0.9rem !important;
  letter-spacing: 0.02em;
}
.card-coming {
  opacity: 0.85;
}
.card-coming .card-icon {
  color: var(--gold);
  opacity: 0.7;
}
.card-meta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,169,126,0.3);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  line-height: 1.2;
}
.card-footer {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}
.card-cta {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.card-cta:hover { background: var(--gold); color: var(--cream); transform: translateY(-1px); }
.card-cta.is-disabled {
  border-color: rgba(200,169,126,0.4);
  color: rgba(122,117,108,0.7);
  cursor: default;
}
.card-cta.is-disabled:hover { background: transparent; color: rgba(122,117,108,0.7); transform: none; }

/* ── ABOUT ── */
.about {
  padding: 8rem 6rem;
  background: var(--mist);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-feather-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.85;
  filter: sepia(0.15) saturate(0.7);
  transform: rotate(-5deg);
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1rem;
}
.about-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.about-role::before,
.about-role::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.about-role::after { flex: 1; }
.about-text p {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--stone);
  margin-bottom: 1.2rem;
}
.about-text .btn { margin-top: 1.5rem; }

.about-details {
  margin: 0.6rem 0 0.4rem;
}
.about-details summary {
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  list-style: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(200,169,126,0.35);
  border-bottom: 1px solid rgba(200,169,126,0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s, letter-spacing 0.3s;
}
.about-details summary::-webkit-details-marker { display: none; }
.about-details summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 0.8;
}
.about-details[open] summary::after { content: '–'; }
.about-details[open] summary { border-bottom-color: transparent; }
.about-details summary:hover { color: var(--ink); letter-spacing: 0.3em; }
.about-details-content {
  padding-top: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.about-details-content strong {
  color: var(--ink);
  font-weight: 500;
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 7rem 6rem;
  background: var(--cream);
  text-align: center;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.testimonial cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.divider {
  display: block;
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 2.5rem auto;
}

/* ── CONTACT ── */
.contact {
  padding: 8rem 6rem;
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
}
.contact > div:first-child p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--stone);
  margin-bottom: 2rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info a {
  font-size: 0.85rem;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.contact-info a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  align-items: center;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(122,117,108,0.35);
  border-radius: 50%;
  color: var(--stone);
  transition: all 0.35s ease;
  padding: 0;
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-field input,
.form-field textarea {
  background: rgba(250,247,242,0.6);
  border: 1px solid rgba(200,169,126,0.3);
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  padding: 2rem 6rem;
  background: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  opacity: 0.6;
}
footer .f-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--stone);
}
footer .social-links a {
  width: 32px;
  height: 32px;
  border-color: rgba(250,247,242,0.2);
  color: var(--cream);
  opacity: 0.55;
}
footer .social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}
footer .social-links svg { width: 13px; height: 13px; }

/* ── BLOG ── */
.blog-hero {
  padding: 9rem 6rem 4rem;
  background: var(--mist);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 40%, rgba(237,217,204,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 75% 65%, rgba(181,196,177,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero > * { position: relative; z-index: 1; }
.blog-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  margin-bottom: 1.2rem;
}
.blog-hero .blog-intro {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.blog-list {
  padding: 6rem 6rem 8rem;
  max-width: 980px;
  margin: 0 auto;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(200,169,126,0.3);
  align-items: start;
}
.blog-post-card:last-child { border-bottom: 1px solid rgba(200,169,126,0.3); }

.blog-post-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.4rem;
}
.blog-post-date {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.blog-post-author {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
}

.blog-post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.blog-post-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-post-content h2 a:hover { color: var(--gold); }
.blog-post-excerpt {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 1.4rem;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, gap 0.3s;
}
.blog-read-more::after {
  content: '→';
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform 0.3s;
}
.blog-read-more:hover {
  border-color: var(--gold);
}
.blog-read-more:hover::after { transform: translateX(4px); }

/* Blog post (single article) */
.blog-article {
  padding: 9rem 2rem 6rem;
  max-width: 720px;
  margin: 0 auto;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.3s;
}
.blog-back::before { content: '←'; font-size: 0.9rem; letter-spacing: 0; }
.blog-back:hover { color: var(--gold); }

.blog-article header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,169,126,0.3);
}
.blog-article header .blog-post-date,
.blog-article header .blog-post-author {
  display: inline-block;
}
.blog-article header .blog-post-author { margin-left: 1rem; }
.blog-article h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin: 1rem 0 0;
  line-height: 1.18;
}

.blog-body {
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--ink);
}
.blog-body p {
  margin-bottom: 1.5rem;
}
.blog-body p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  float: left;
  line-height: 0.9;
  margin: 0.4rem 0.6rem 0 0;
  color: var(--gold);
  font-weight: 400;
}
.blog-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.blog-body em {
  font-style: italic;
  color: var(--gold);
}
.blog-body blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.8rem;
  margin: 2rem 0;
}
.blog-signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,169,126,0.3);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--stone);
  text-align: center;
}
.blog-signature strong {
  display: block;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(12px, -16px) scale(1.04); }
  66%       { transform: translate(-8px, 10px) scale(0.97); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-logo-name { font-size: 1.05rem; letter-spacing: 0.1em; }
  .nav-logo-tagline { font-size: 0.5rem; letter-spacing: 0.12em; }
  .nav-logo-tagline em { font-size: 0.62rem; margin-left: 0.3rem; }
  .feather-logo { height: 34px; }
  .hero { min-height: 90vh; background-position: center; }
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(250,247,242,0.85) 0%,
        rgba(250,247,242,0.75) 60%,
        rgba(250,247,242,0.5) 100%);
  }
  .hero-left { padding: 7rem 1.8rem 4rem; max-width: 100%; }
  .services, .testimonial { padding: 5rem 2rem; }
  .cards { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .about-visual { height: 280px; }
  .contact { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  footer { padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }

  .blog-hero { padding: 7rem 1.5rem 3rem; }
  .blog-list { padding: 3rem 1.5rem 5rem; }
  .blog-post-card { grid-template-columns: 1fr; gap: 0.8rem; padding: 2.5rem 0; }
  .blog-article { padding: 7rem 1.5rem 4rem; }
  .blog-body p:first-of-type::first-letter {
    font-size: 2.8rem;
  }
}
