/* ─────────────────────────────────────────
   Lumière & Co. — style.css
───────────────────────────────────────── */

/* ── VARIABLES ── */
:root {
  --gold:      #c9a84c;
  --gold-lt:   #e8d5a3;
  --rose:      #c9897a;
  --deep-rose: #9b5c52;
  --ivory:     #fdf8f2;
  --champagne: #f7e8d4;
  --dark:      #2a1f1a;
  --mid:       #5c4a42;
  --light:     #8a7060;
  --white:     #ffffff;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--ivory); color: var(--dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ── CONTAINER ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ── SHARED SECTION ── */
.section { padding: 110px 0; }
.label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 12px;
  display: block;
}
.title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--dark);
}
.title em { font-style: italic; color: var(--deep-rose); }
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-header .title { margin-bottom: 14px; }
.sec-sub { color: var(--light); font-size: .92rem; font-weight: 300; margin-top: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-size: .77rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
  font-family: var(--sans);
  transition: all .28s;
  cursor: pointer;
}
.btn-dark {
  background: var(--dark);
  color: var(--champagne);
  border: none;
}
.btn-dark:hover {
  background: var(--deep-rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,31,26,.22);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
}
.btn-outline:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(253,248,242,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(42,31,26,.1);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  transition: color .35s;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav.scrolled .nav-logo { color: var(--dark); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--mid); }
.nav.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 3px;
}
.nav.scrolled .nav-cta { border-color: var(--rose); color: var(--deep-rose) !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}
.nav.scrolled .hamburger span { background: var(--dark); }

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 99;
  background: rgba(253,248,242,.97);
  backdrop-filter: blur(16px);
  padding: 28px 32px;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
  box-shadow: 0 6px 24px rgba(42,31,26,.1);
}
.mob-menu.open { transform: translateY(0); }
.mob-menu li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(232,201,193,.3);
}
.mob-menu a {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dark);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1600&q=80') center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,12,10,.48);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero-tag {
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 300;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  margin-inline: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px 72px 2px 2px;
  box-shadow: 0 20px 64px rgba(42,31,26,.18);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 106px;
  height: 106px;
  background: var(--dark);
  color: var(--gold-lt);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 28px rgba(42,31,26,.24);
}
.about-badge small {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(232,213,163,.55);
}
.about-text .title { margin-bottom: 22px; }
.body-p {
  color: var(--light);
  font-size: .94rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 16px;
}
.stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--deep-rose);
  line-height: 1;
}
.stat small {
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-top: 6px;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services {
  background: linear-gradient(160deg, #f5ede3, var(--champagne), #f0e4d4);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid rgba(232,201,193,.4);
  border-radius: 3px;
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 14px 48px rgba(42,31,26,.14); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 18px; }
.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.svc-card p {
  color: var(--light);
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}
.svc-link {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--deep-rose);
  transition: color .2s;
}
.svc-link:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gitem { border-radius: 3px; overflow: hidden; }
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gitem:hover img { transform: scale(1.05); }
.g1 { grid-column: 1 / 3; grid-row: 1; }
.g2 { grid-column: 3;     grid-row: 1; }
.g3 { grid-column: 4;     grid-row: 1 / 3; }
.g4 { grid-column: 1;     grid-row: 2; }
.g5 { grid-column: 2 / 4; grid-row: 2; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  background: linear-gradient(155deg, var(--champagne), #f0e4d4, var(--champagne));
  text-align: center;
  padding: 100px 0;
}
.t-slider {
  max-width: 660px;
  margin: 0 auto 32px;
  min-height: 120px;
  position: relative;
}
.t-item {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.t-item.active { opacity: 1; pointer-events: auto; }
.t-item blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 18px;
}
.t-item cite {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light);
}
.t-dots { display: flex; justify-content: center; gap: 10px; }
.tdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(155,92,82,.25);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.tdot.active { background: var(--deep-rose); transform: scale(1.3); }

/* ─────────────────────────────────────────
   INQUIRY FORM
───────────────────────────────────────── */
.inquiry { background: var(--white); }
.inquiry-form {
  max-width: 780px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid rgba(232,201,193,.4);
  border-radius: 3px;
  padding: 52px;
  box-shadow: 0 8px 56px rgba(42,31,26,.1);
  position: relative;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.f-group { display: flex; flex-direction: column; gap: 7px; }
.f-group.full { margin-bottom: 22px; }
label {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mid);
}
input, textarea, select {
  padding: 12px 16px;
  border: 1px solid rgba(232,201,193,.6);
  border-radius: 3px;
  background: var(--white);
  color: var(--dark);
  font-size: .9rem;
  font-weight: 300;
  font-family: var(--sans);
  outline: none;
  transition: border-color .22s, box-shadow .22s;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(138,112,96,.42); }
input:focus, textarea:focus, select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,136,122,.1);
}
input.err, textarea.err { border-color: var(--deep-rose); }
textarea { resize: vertical; min-height: 120px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9897a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.ferr { font-size: .7rem; color: var(--deep-rose); min-height: 14px; }
.f-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  flex-wrap: wrap;
  gap: 14px;
}
.f-note { font-size: .73rem; color: var(--light); font-weight: 300; font-style: italic; }
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 14px;
  position: absolute;
  inset: 0;
  background: var(--ivory);
  border-radius: 3px;
  z-index: 10;
  animation: fadeUp .5s var(--ease);
}
.success-msg.show { display: flex; }
.success-msg .ico { font-size: 2.8rem; color: var(--gold); }
.success-msg h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 300; }
.success-msg p {
  color: var(--light);
  font-size: .92rem;
  font-weight: 300;
  max-width: 380px;
  line-height: 1.7;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--dark); color: var(--champagne); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,232,212,.1);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.brand-p { color: rgba(247,232,212,.45); font-size: .84rem; font-weight: 300; line-height: 1.8; }
.footer h4 {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(247,232,212,.5); font-size: .86rem; font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact p { color: rgba(247,232,212,.5); font-size: .86rem; font-weight: 300; margin-bottom: 7px; }
.socials { display: flex; gap: 16px; margin-top: 18px; }
.socials a { font-size: 1.1rem; color: rgba(247,232,212,.32); transition: color .2s; }
.socials a:hover { color: var(--gold); }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { color: rgba(247,232,212,.22); font-size: .7rem; letter-spacing: .1em; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g1, .g2, .g3, .g4, .g5 { grid-column: auto; grid-row: auto; height: 240px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 32px 22px; }
  .stats { gap: 22px; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gitem { height: 220px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
