/* ═══════════════════════════════════════════════════════════════════
   DÉCO FLEURISTE — page.css  · Styles partagés pages intérieures
   Importer après styles.css
   ═══════════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO BANNER ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(280px, 42vw, 480px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 12s linear;
}
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 40, 18, .85) 0%,
    rgba(20, 40, 18, .35) 60%,
    rgba(20, 40, 18, .18) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: var(--sp-2xl) var(--sp-lg) var(--sp-xl);
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  animation: heroFadeUp .7s var(--ease-out) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (min-width: 960px) {
  .page-hero-content { padding: var(--sp-2xl) var(--sp-3xl) var(--sp-2xl); }
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .4rem; margin-bottom: var(--sp-md);
  font-size: var(--t-xs); letter-spacing: .06em;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold-pale); }
.breadcrumb span { color: rgba(255,255,255,.35); }
.breadcrumb strong { color: var(--gold-pale); font-weight: 500; }

/* Page H1 */
.page-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--white);
  line-height: 1.12; letter-spacing: -.01em;
}
.page-title em { font-style: italic; color: var(--gold-pale); }

/* ─── PAGE WRAPPER ──────────────────────────────────────────────── */
.page-body {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg);
}
@media (min-width: 960px) { .page-body { padding: var(--sp-4xl) var(--sp-3xl); } }

/* ─── INTRO SPLIT (text + image) ────────────────────────────────── */
.intro-split {
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-2xl); align-items: center;
  margin-bottom: var(--sp-3xl);
}
@media (min-width: 768px) {
  .intro-split { grid-template-columns: 1fr 1fr; gap: var(--sp-3xl); }
  .intro-split--reverse .intro-img-wrap { order: 2; }
  .intro-split--reverse .intro-copy    { order: 1; }
}
.intro-img-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; background: var(--ivory-deep);
  box-shadow: 0 20px 60px rgba(42,69,39,.1);
}
.intro-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.intro-img-wrap:hover img { transform: scale(1.04); }
.intro-copy .eyebrow { margin-bottom: .5rem; }
.intro-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400; color: var(--forest);
  line-height: 1.22; margin-bottom: var(--sp-md);
}
.intro-copy p {
  font-size: var(--t-sm); color: var(--charcoal-50);
  line-height: 1.85; margin-bottom: var(--sp-md);
}
.intro-copy p:last-of-type { margin-bottom: var(--sp-xl); }

/* ─── FEATURES LIST (icon + text) ───────────────────────────────── */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-3xl);
}
@media (min-width: 640px)  { .features-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .features-list { grid-template-columns: repeat(4, 1fr); } }

.fl-card {
  padding: var(--sp-xl) var(--sp-lg);
  background: var(--white);
  border: 1px solid var(--sage-pale);
  border-radius: var(--r-xl);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.fl-card:hover {
  box-shadow: 0 12px 40px rgba(42,69,39,.09);
  transform: translateY(-3px);
}
.fl-card-icon {
  width: 48px; height: 48px;
  background: var(--sage-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); margin-bottom: var(--sp-md);
  font-size: 1.4rem;
}
.fl-card h3 {
  font-family: var(--serif);
  font-size: var(--t-lg); font-weight: 400;
  color: var(--forest); margin-bottom: .5rem;
}
.fl-card p { font-size: var(--t-sm); color: var(--charcoal-50); line-height: 1.75; }

/* ─── IMAGE GALLERY GRID ────────────────────────────────────────── */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-3xl);
}
@media (min-width: 768px) { .img-gallery { grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); } }

.img-gallery figure {
  margin: 0; border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 1;
  background: var(--ivory-deep); cursor: zoom-in;
}
.img-gallery figure:first-child {
  grid-column: span 2; aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .img-gallery figure:first-child { grid-column: span 2; aspect-ratio: 4/3; }
}
.img-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.img-gallery figure:hover img { transform: scale(1.06); }

/* ─── CTA BANNER ────────────────────────────────────────────────── */
.cta-banner {
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl) var(--sp-xl);
  text-align: center;
  margin-bottom: var(--sp-3xl);
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p {
  color: rgba(255,255,255,.75); font-size: var(--t-sm);
  margin-bottom: var(--sp-xl); max-width: 50ch; margin-left: auto; margin-right: auto;
}
.cta-banner .btn-row {
  display: flex; flex-wrap: wrap; gap: var(--sp-md); justify-content: center;
}
.cta-banner .btn-primary { background: var(--gold); color: var(--forest-deep); }
.cta-banner .btn-primary:hover { background: var(--gold-pale); }
.cta-banner .btn-outline  { border-color: rgba(255,255,255,.4); color: var(--white); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.12); }

/* ─── RELATED SERVICES ──────────────────────────────────────────── */
.related-services {
  padding: var(--sp-3xl) var(--sp-lg);
  background: var(--ivory-warm);
}
@media (min-width: 960px) { .related-services { padding: var(--sp-4xl) var(--sp-3xl); } }

.related-services .section-head { margin-bottom: var(--sp-2xl); }
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 640px)  { .related-grid { grid-template-columns: repeat(4, 1fr); } }

.related-card {
  background: var(--white);
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--sage-pale);
  text-decoration: none; display: block;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.related-card:hover { box-shadow: 0 12px 36px rgba(42,69,39,.1); transform: translateY(-3px); }
.related-card-img {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--ivory-deep);
}
.related-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.related-card:hover .related-card-img img { transform: scale(1.07); }
.related-card-body { padding: var(--sp-md) var(--sp-lg) var(--sp-lg); }
.related-card-body h3 {
  font-family: var(--serif); font-size: var(--t-lg);
  font-weight: 400; color: var(--forest); margin-bottom: .4rem;
}
.related-card-body span {
  font-size: var(--t-xs); color: var(--sage-dark);
  letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
}

/* ─── BLOG GRID ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-3xl);
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid var(--sage-pale);
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.blog-card:hover { box-shadow: 0 16px 48px rgba(42,69,39,.1); transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/10; overflow: hidden;
  background: var(--ivory-deep);
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
  padding: var(--sp-lg) var(--sp-xl) var(--sp-xl);
  flex: 1; display: flex; flex-direction: column;
}
.blog-tag {
  display: inline-block; padding: .25rem .75rem;
  background: var(--sage-pale); color: var(--sage-dark);
  border-radius: var(--r-pill); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}
.blog-card-body h3 {
  font-family: var(--serif); font-size: var(--t-xl);
  font-weight: 400; color: var(--forest); line-height: 1.3;
  margin-bottom: .6rem;
}
.blog-card-body p {
  font-size: var(--t-sm); color: var(--charcoal-50);
  line-height: 1.75; flex: 1;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--sp-lg); padding-top: var(--sp-md);
  border-top: 1px solid var(--sage-pale);
}
.blog-date { font-size: var(--t-xs); color: var(--sage-dark); }
.blog-read { font-size: var(--t-sm); font-weight: 500; color: var(--forest); }
.blog-read:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ─── ABOUT PAGE ────────────────────────────────────────────────── */
.about-page-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-2xl);
  margin-bottom: var(--sp-3xl);
}
@media (min-width: 900px) {
  .about-page-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--sp-3xl); }
}
.about-page-img {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(42,69,39,.12);
}
.about-page-img img { width: 100%; height: 100%; object-fit: cover; }
.about-page-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--forest); line-height: 1.2;
  margin-bottom: var(--sp-lg);
}
.about-page-copy p {
  font-size: var(--t-sm); color: var(--charcoal-50);
  line-height: 1.85; margin-bottom: var(--sp-md);
}
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-md); margin: var(--sp-xl) 0 var(--sp-2xl);
}
.value-item {
  padding: var(--sp-lg);
  background: var(--ivory-warm);
  border-radius: var(--r-lg); border-left: 3px solid var(--sage);
}
.value-item strong {
  display: block; font-family: var(--serif);
  font-size: var(--t-lg); color: var(--forest); margin-bottom: .3rem;
}
.value-item span { font-size: var(--t-xs); color: var(--charcoal-50); }

/* ─── CONTACT PAGE ──────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-2xl); margin-bottom: var(--sp-3xl);
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: var(--sp-3xl); } }

.contact-info h2 {
  font-family: var(--serif); font-size: var(--t-2xl);
  font-weight: 400; color: var(--forest); margin-bottom: var(--sp-md);
}
.contact-info > p {
  font-size: var(--t-sm); color: var(--charcoal-50);
  line-height: 1.85; margin-bottom: var(--sp-xl);
}
.info-block {
  display: flex; gap: var(--sp-md);
  padding: var(--sp-lg); margin-bottom: var(--sp-md);
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--sage-pale);
}
.info-block-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--sage-pale); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-block strong { display: block; font-size: var(--t-sm); font-weight: 600; color: var(--forest); margin-bottom: .2rem; }
.info-block span, .info-block a {
  font-size: var(--t-sm); color: var(--charcoal-50);
}
.info-block a:hover { color: var(--forest); }

/* Contact form */
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--sage-pale);
  border-radius: var(--r-xl); padding: var(--sp-2xl);
}
.contact-form-wrap h3 {
  font-family: var(--serif); font-size: var(--t-2xl);
  font-weight: 400; color: var(--forest); margin-bottom: var(--sp-xl);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-md); margin-bottom: var(--sp-md); }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: var(--sp-md); }
.form-field label {
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--charcoal-50);
}
.form-field input, .form-field select, .form-field textarea {
  padding: .875rem 1.1rem;
  border: 1.5px solid var(--sage-pale);
  border-radius: var(--r-md);
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 300;
  color: var(--charcoal); background: var(--ivory);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  min-height: 50px;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139,168,136,.2);
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: rgba(85,85,85,.45);
}
.form-submit { width: 100%; justify-content: center; }

/* Map */
.contact-map {
  border-radius: var(--r-xl); overflow: hidden;
  height: 300px; background: var(--ivory-deep);
  border: 1px solid var(--sage-pale); margin-bottom: var(--sp-2xl);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }
