
:root {
  --burgundy:   #8C5252;
  --mauve:      #A985A9;
  --footer-bg:  #F5EBF5;
  --page-bg:    #FAFAFA;
  --text-dark:  #1a1a1a;
  --text-mid:   #555;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --radius-card: 22px;
  --ease: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--page-bg); color: var(--text-dark); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img   { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }
a      { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--burgundy);
  vertical-align: -0.1em;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--page-bg);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.capsule-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border: 1.5px solid var(--text-dark);
  border-radius: 999px;
  padding: 4px 16px;
}
.nav-link {
  background: none;
  border: none;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  transition: background var(--ease);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(0,0,0,0.07); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--text-dark);
  border-radius: 999px;
  padding: 8px 10px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 20px 16px;
  background: var(--page-bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mob-link {
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 12px 4px;
  font-size: 14px;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--ease);
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover { color: var(--burgundy); }

.hero {
  position: relative;
  min-height: 87vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image: url('assets/heroImage.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 5, 0.52);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero-typed-block { margin-bottom: 36px; }
.typed-word {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  min-height: 1.4em;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.cursor {
  background: rgba(255,255,255,0.85) !important;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity var(--ease), transform 0.15s;
  box-shadow: 0 4px 20px rgba(140,82,82,0.45);
}
.btn-primary:hover  { opacity: 0.88; }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 13px 34px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--ease), border-color var(--ease), transform 0.15s;
}
.btn-secondary:hover  { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-secondary:active { transform: scale(0.97); }

.about {
  background: var(--mauve);
  padding: 64px 28px;
}
.about-inner {
  display: block;
  max-width: 820px;
}

.about-h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

.about-rule {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.about-rule-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}

.about-p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  max-width: 720px;
}
.about-p:last-child { margin-bottom: 0; }

.services {
  padding: 64px 28px;
  background: var(--page-bg);
}
.sec-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 44px;
  line-height: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 4px 18px rgba(140,82,82,0.13);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 20px 42px rgba(140,82,82,0.28);
}
.service-card img { width: 100%; height: 100%; object-fit: cover; }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(140,82,82,0.88) 0%, rgba(140,82,82,0.06) 60%);
}
.card-label {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}

.gallery {
  padding: 64px 0 44px;
  background: var(--page-bg);
  overflow: hidden;
}
.gallery-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 36px;
  padding: 0 28px;
  line-height: 1.1;
}

.gallery-wrap {
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;           
  will-change: transform;
  cursor: grab;
}
.gallery-track.paused    { animation-play-state: paused; }
.gallery-track.dragging  { cursor: grabbing; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-distance, -50%)); }
}

.g-card {
  flex-shrink: 0;
  width: 220px;
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 18px rgba(0,0,0,0.11);
  transition: transform var(--ease), box-shadow var(--ease);
  user-select: none;
}
.g-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.2);
}
.g-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(140,82,82,0.76) 0%, transparent 52%);
}
.g-label {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 0 28px;
}
.arr-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.16);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 22px;
  color: var(--burgundy);
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}
.arr-btn:hover { background: #f5e8e8; box-shadow: 0 4px 14px rgba(0,0,0,0.16); }

.gallery-dots { display: flex; gap: 6px; align-items: center; }
.gallery-dots .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
  cursor: pointer;
}
.gallery-dots .dot.active { background: var(--burgundy); transform: scale(1.3); }

.see-more-row {
  display: flex;
  justify-content: flex-end;
  padding: 14px 28px 0;
}
.see-more-btn {
  background: none; border: none;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--text-dark);
  transition: gap var(--ease);
}
.see-more-btn:hover { gap: 13px; }
.triangle {
  display: inline-block; width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--text-dark);
}

.testimonials {
  padding: 100px 0;
  background: #faf8f6;
  overflow: hidden;
}

.testimonial-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #8C5252;
  margin-bottom: 50px;
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marqueeScroll 70s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-track img {
  height: 200px;     
  width: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact { padding: 64px 28px; background: var(--page-bg); }
.contact-head { max-width: 560px; margin: 0 auto 32px; text-align: center; }
.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400; color: var(--burgundy);
  margin-bottom: 10px; line-height: 1;
}
.contact-sub { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--text-dark); margin-bottom: 8px; }
.contact-desc { font-family: var(--sans); font-size: 14px; color: var(--text-mid); }

.form-box {
  max-width: 560px; margin: 0 auto;
  border: 1.5px solid #ddd; border-radius: 20px;
  background: #fff; padding: 36px 32px;
}
.form-hint { text-align: center; font-size: 12px; color: #bbb; font-family: var(--sans); margin-bottom: 24px; }
.form-field {
  display: block; width: 100%;
  border: 1px solid #e0e0e0; border-radius: 12px;
  padding: 12px 15px; font-family: var(--sans); font-size: 13px;
  color: #333; background: var(--page-bg);
  outline: none; margin-bottom: 13px; resize: none;
  transition: border-color var(--ease);
}
.form-field:focus { border-color: var(--burgundy); }
.form-field::placeholder { color: #bbb; }
textarea.form-field { height: 100px; }
.form-btn {
  width: 100%; padding: 14px; border-radius: 12px;
  background: var(--burgundy); border: none; color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  transition: opacity var(--ease), transform 0.1s;
}
.form-btn:hover  { opacity: 0.88; }
.form-btn:active { transform: scale(0.99); }

.footer { background: var(--footer-bg); padding: 48px 28px 22px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; padding-bottom: 28px;
  border-bottom: 1px solid #e0d0e0; margin-bottom: 18px;
}
.footer-col-title { font-size: 10px; color: #bbb; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--sans); }
.footer-link { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #666; font-family: var(--sans); margin-bottom: 10px; transition: color var(--ease); }
.footer-link:hover { color: var(--burgundy); }
.footer-contact-label { font-size: 10px; color: #aaa; font-family: var(--sans); margin-bottom: 4px; margin-top: 10px; }
.footer-contact-label:first-of-type { margin-top: 0; }
.footer-contact-val { font-size: 12px; color: #666; font-family: var(--sans); border-bottom: 1px solid #c8b8c8; padding-bottom: 4px; }
.copyright { text-align: center; font-size: 11px; color: #ccc; font-family: var(--sans); max-width: 1100px; margin: 0 auto; }

@media (max-width: 860px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .capsule-nav { display: none; }
  .burger      { display: flex; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 40px 20px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

  .about { padding: 48px 20px; }

  .services { padding: 48px 20px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .gallery { padding: 48px 0 36px; }
  .g-card { width: 180px; height: 220px; }

  .contact { padding: 48px 16px; }
  .form-box { padding: 28px 20px; }

  .footer { padding: 36px 20px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .cards-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta    { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px) scale(0.97); }
                     to   { opacity: 1; transform: translateY(0)    scale(1);    } }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
  animation: fadeIn 0.25s ease both;
}

.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 44px 36px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.3s ease both;
  position: relative;
  margin: auto;
}

.modal-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #8C5252;
  margin-bottom: 12px;
  line-height: 1.1;
}

.modal-msg {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-close-btn {
  background: #8C5252;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 36px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.modal-close-btn:hover { opacity: 0.88; }

.form-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}
.form-btn.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
