/* ============================================================
   MAISON SÈVRES — Private Image Advisory
   monika-style.css
   ============================================================ */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* VARIABLES */
:root {
  --cream: #F5F2EE;
  --white: #E8E0D5;
  --dark: #2C2520;
  --mid: #8A7A6A;
  --accent: #C4A882;
  --accent-light: #D4C4B0;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white); color: var(--dark);
  font-size: 15px; line-height: 1.7; overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: rgba(250,250,248,0.93); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139,115,85,0.12); transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--dark); text-decoration: none; text-transform: uppercase;
}
.nav-logo span { font-weight: 300; letter-spacing: 0.18em; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--mid); transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--dark); color: var(--white);
  padding: 10px 24px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(250,250,248,0.99); backdrop-filter: blur(12px);
  opacity: 0; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu-close-row { display: none; }
.mobile-close {
  display: none; position: fixed; top: 16px; right: 18px;
  background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--dark); line-height: 1;
  padding: 6px; z-index: 1000;
}
.mobile-menu.open .mobile-close { display: block; }
.mobile-nav-list {
  list-style: none; margin: 0; padding: 0;
  position: absolute; top: 10%; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; width: 100%;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--dark);
  text-decoration: none; letter-spacing: 0.06em;
  transition: color 0.2s; line-height: 1.2;
  display: block; text-align: center;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  background: var(--dark); color: var(--white) !important;
  padding: 13px 34px; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-top: 6px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 38fr 62fr;
  padding-top: 80px; width: 100%;
  padding-left: 0; padding-right: 0; padding-bottom: 0;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 32px 80px 32px;
}
.hero-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
  line-height: 2;
}
.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px); font-weight: 300; line-height: 1.1;
  color: var(--dark); margin-bottom: 28px;
}
.hero-left h1 em { font-style: italic; color: var(--accent); }
.hero-left p { font-size: 15px; color: var(--mid); max-width: 420px; margin-bottom: 44px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--dark); color: var(--white);
  padding: 14px 32px; font-size: 17px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent); }
.btn-outline {
  border: 1px solid var(--dark); color: var(--dark);
  padding: 14px 32px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.hero-right { position: relative; overflow: hidden; background: var(--cream); }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 70% top; display: block;
  padding-bottom: 25px; background-color: #e8e0d5;
}

/* ── VALUES ── */
.values-strip {
  background: var(--dark); color: var(--white);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--accent);
}
.value-item { padding: 40px 48px; border-right: 1px solid rgba(255,255,255,0.08); }
.value-item:last-child { border-right: none; }
.value-icon { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 14px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.value-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── SECTION COMMONS ── */
section { padding: 100px 80px; }
.section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.15; color: var(--dark); margin-bottom: 20px; }
.section-title em { font-style: italic; }
.section-sub { font-size: 15px; color: var(--mid); max-width: 560px; line-height: 1.8; margin-bottom: 60px; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(139,115,85,0.15); }
.service-card { background: var(--white); padding: 52px 44px; transition: background 0.3s; position: relative; overflow: hidden; }
.service-card:hover { background: var(--cream); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300; color: rgba(139,115,85,0.12); position: absolute; top: 16px; right: 24px; line-height: 1; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 18px; color: var(--dark); }
.service-card > p { font-size: 13px; color: var(--mid); line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.service-features { list-style: none; margin-bottom: 32px; }
.service-features li { font-size: 12px; color: var(--mid); padding: 7px 0 7px 20px; border-bottom: 1px solid rgba(139,115,85,0.12); position: relative; }
.service-features li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-size: 10px; }
.service-link { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.service-detail { font-size: 12px; color: var(--accent); line-height: 1.7; font-style: italic; margin-top: -16px; margin-bottom: 24px; border-left: 2px solid var(--accent-light); padding-left: 12px; }

/* ── PORTFOLIO / BEFORE-AFTER ── */
#portfolio { background: var(--cream); }
.portfolio-header { text-align: center; margin-bottom: 60px; }
.portfolio-header .section-sub { margin: 0 auto; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ba-slider { position: relative; overflow: hidden; cursor: ew-resize; user-select: none; -webkit-user-select: none; }
.ba-img-base { display: block; width: 100%; aspect-ratio: 2/3; object-fit: cover; object-position: center top; }
.ba-clip { position: absolute; top: 0; left: 0; bottom: 0; width: 50%; overflow: hidden; pointer-events: none; }
.ba-clip img { position: absolute; top: 0; left: 0; height: 100%; object-fit: cover; object-position: center top; }
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: white; transform: translateX(-50%); pointer-events: none; z-index: 10; }
.ba-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; z-index: 11; pointer-events: none; box-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.ba-btn svg { display: block; }
.ba-tag-l, .ba-tag-r { position: absolute; bottom: 14px; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: white; background: rgba(26,26,24,0.55); padding: 6px 12px; z-index: 10; }
.ba-tag-l { left: 14px; }
.ba-tag-r { right: 14px; }
.ba-caption-slider { padding: 14px 0; font-size: 19px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid rgba(139,115,85,0.2); margin-top: 4px; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-inner > div:first-child { min-height: 580px; overflow: hidden; }
.about-inner > div:first-child img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; object-position: center top; display: block; }
.about-single-img { width: 100%; }
.about-single-img img { width: 100%; height: auto; display: block; object-fit: contain; }
.about-section { background: var(--cream); }
.about-content p { font-size: 20px; color: var(--mid); line-height: 1.9; margin-bottom: 18px; }
.about-content p em { font-style: italic; color: var(--dark); }
.about-btn { margin-top: 32px; display: inline-block; }

/* ── PROCESS ── */
#process { background: var(--cream); }
.process-section { background: var(--white); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; max-width: 780px; margin: 0 auto; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: var(--accent-light); z-index: 0; }
.step { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin: 0 auto 28px; }
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 12px; color: var(--dark); }
.step p { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ── BOOKING ── */
#booking { background: var(--dark); color: var(--white); padding-bottom: 40px; }
.booking-section { background: var(--dark); color: var(--white); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.booking-left .section-title { color: var(--white); }
.booking-left .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.booking-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.booking-perks li { display: flex; align-items: center; gap: 12px; font-size: 19px; color: rgba(255,255,255,0.75); }
.booking-perks li::before { content: '✓'; color: var(--accent-light); font-weight: 700; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 15px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--white); padding: 14px 16px; font-size: 15px; font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-light); }
.form-group select option { background: #2a2a28; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--accent); color: var(--white); border: none; padding: 16px 32px; font-size: 16px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: opacity 0.2s; width: 100%; margin-top: 8px; }
.form-submit:hover { opacity: 0.85; }
.form-note { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; }

/* ── SUBSCRIBE ── */




.btn-subscribe { background: #C4A882; color: #fff; border: none; padding: 16px 48px; font-size: 27px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.btn-subscribe:hover { background: #b89c6e; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 60px 80px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-brand span { font-weight: 300; }
.footer-desc { font-size: 15px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 16px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE: TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 60px 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 72px 24px 40px; }
  .hero-right { height: 70vw; min-height: 300px; margin: 0 24px; border-radius: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-slider-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-inner > div:first-child { min-height: unset !important; }
  .about-inner > div:first-child img { min-height: unset !important; height: auto !important; }
  .about-single-img img { width: 100%; height: auto; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .booking-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE: MOBILE (max 640px) ── */
@media (max-width: 640px) {
  nav { padding: 14px 18px; }
  section { padding: 48px 18px; }

  /* Hero */
  .hero-left { padding: 20px 18px 36px; }
  .hero-tag { font-size: 17px !important; letter-spacing: 0.15em; margin-bottom: 14px; }
  .hero-tag br { display: none; }
  .hero-left h1 { margin-bottom: 16px; }
  .hero-left p { margin-bottom: 28px; }
  .hero-right { height: 100vw; margin: 0; }
  .hero-right img { object-fit: cover; object-position: center top; padding-bottom: 25px; background-color: #e8e0d5; }

  /* Section commons */
  .section-label { font-size: 20px; }
  .section-title { font-size: 35px; }
  .section-sub { font-size: 19px; line-height: 1.7; }

  /* Values */
  .value-item { padding: 28px 24px; }
  .value-icon { font-size: 17px; }
  .value-title { font-size: 20px; }
  .value-text { font-size: 18px; line-height: 1.7; }

  /* Services */
  .service-card { padding: 25px 44px; }
  .service-card h3 { font-size: 28px; }
  .service-card > p { font-size: 18px; }
  .service-features li { font-size: 17px; }
  .service-link { font-size: 17px; }

  /* Before & After */
  .ba-caption-slider { font-size: 15px; }

  /* About */
  .about-content p { font-size: 18px; }

  /* Process */
  .process-steps h3 { font-size: 40px; }
  .process-steps p { font-size: 20px; line-height: 1.7; }

  /* Booking */
  .booking-perks li { font-size: 17px; }
  .form-group label { font-size: 15px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 15px; }
  .form-submit { font-size: 16px; }

  /* Subscribe */



  .btn-subscribe { font-size: 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 40px 18px 28px; }
  .footer-desc { font-size: 15px; }
  .footer-col ul a { font-size: 16px; }

  /* Buttons edge to edge */
  .btn-primary, .btn-outline, .btn-subscribe, .form-submit {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* All buttons same font family */
.btn-primary, .btn-outline, .btn-subscribe, .form-submit, .nav-cta, .mobile-cta {
  font-family: 'Montserrat', sans-serif !important;
}

/* About image full width on mobile */
@media (max-width: 640px) {
  .about-inner > div:first-child { width: 100vw; margin-left: -18px; margin-right: -18px; }
  .about-inner > div:first-child img { width: 100%; height: 80vw; object-fit: cover; object-position: center top; }
}

/* btn-outline mobile */
@media (max-width: 640px) {
  .btn-outline { font-size: 20px !important; }
}

/* Service NEU badge */
.service-new {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 3px 10px;
  margin-bottom: 14px;
}

/* MailerLite embedded form styling */
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: transparent !important;
  border: none !important;
}
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
  padding: 0 !important;
}
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader {
  display: none !important;
}
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
  display: none !important;
}
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p {
  display: none !important;
}
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: rgba(255,255,255,0.1) !important;
  border-color: #C4A882 !important;
  color: #E8E0D5 !important;
  border-radius: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px !important;
  padding: 14px 16px !important;
}
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #C4A882 !important;
  border-radius: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  padding: 14px !important;
}
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #2C2520 !important;
}
/* MailerLite embedded form styling */
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper { background-color: transparent !important; border: none !important; }
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody { padding: 0 !important; }
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader { display: none !important; }
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 { display: none !important; }
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p { display: none !important; }
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input { background-color: rgba(255,255,255,0.1) !important; border-color: #C4A882 !important; color: #E8E0D5 !important; border-radius: 0 !important; font-family: 'Montserrat', sans-serif !important; font-size: 14px !important; padding: 14px 16px !important; }
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button { background-color: #C4A882 !important; border-radius: 0 !important; font-family: 'Montserrat', sans-serif !important; font-size: 13px !important; letter-spacing: 0.16em !important; text-transform: uppercase !important; padding: 14px !important; }
#mlb2-42657983.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover { background-color: #2C2520 !important; }

/* ── SUBSCRIBE SECTION (consolidated) ── */
.subscribe-label-bar {
  background: #E8E0D5;
  padding: 24px 0;
  text-align: center;
}
.subscribe-label-bar .subscribe-label {
  display: block;
  width: 100%;
  margin: 0;
  color: #1a1a1a;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

#subscribe.subscribe-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  min-height: auto;
}
#subscribe .subscribe-photo-area {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#subscribe .subscribe-photo-area::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #E8E0D5 0%, rgba(232,224,213,0) 100%);
  z-index: 2;
  pointer-events: none;
}
#subscribe .subscribe-bg-img {
  position: absolute;
  top: -101px; left: 0;
  width: 100%; height: 116%;
  object-fit: contain;
  object-position: center top;
  z-index: 0;
  background: #E8E0D5;
  filter: brightness(1) contrast(1.05);
}
#subscribe .subscribe-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18) !important;
  z-index: 1;
}
#subscribe .subscribe-inner {
  position: relative;
  z-index: 2;
  width: 42%;
  text-align: left;
  padding: 60px 40px;
}
.subscribe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: none;
}
.subscribe-title em { font-style: italic; color: #C4A882; }
.subscribe-text {
  font-size: 15px;
  color: #E8E0D5;
  line-height: 1.8;
  margin-bottom: 32px;
  text-shadow: none;
}
.subscribe-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 0;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  outline: none;
  text-align: left;
}
.subscribe-field input::placeholder { color: rgba(255,255,255,0.6); }
.subscribe-btn {
  background: #C4A882;
  color: #fff;
  border: none;
  width: 100%;
  padding: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.subscribe-btn:hover { background: #b89c6e; }
.subscribe-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 640px) {
  #subscribe.subscribe-section { min-height: 550px; height: 550px; }
  #subscribe .subscribe-photo-area { min-height: 550px; }
  #subscribe .subscribe-inner { width: 90%; padding: 24px; position: relative; top: -20px; text-align: left; }
  .subscribe-title { font-size: 36px; }
}
