/* ========================================
   DOLVINO LIMITED — GLOBAL STYLES
   ======================================== */

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

:root {
  --amber-600: #D97706;
  --amber-700: #B45309;
  --stone-900: #1C1917;
  --stone-800: #292524;
  --stone-600: #57534E;
  --stone-100: #F5F5F4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
#navbar {
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: #292524;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.logo-mark:hover { transform: rotate(-5deg); }
.logo-mark span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #F59E0B;
  line-height: 1;
}
.logo-mark-sm {
  width: 32px; height: 32px;
  background: #292524;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark-sm span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: #F59E0B;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #292524;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #78716C;
  line-height: 1;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #57534E;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: #D97706;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: #292524; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; }
.hamburger-icon span {
  display: block; width: 24px; height: 1.5px;
  background: #292524;
  transition: all 0.3s ease;
}
.hamburger-icon.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger-icon.open span:nth-child(2) { opacity: 0; }
.hamburger-icon.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  background: white;
  border-top: 1px solid #E7E5E4;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 480px; }
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #292524;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #D97706; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #292524;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #1C1917;
  transform: translateY(-1px);
}

.btn-primary-lg {
  display: inline-block;
  background: #292524;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary-lg:hover {
  background: #1C1917;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-lg {
  display: inline-block;
  background: transparent;
  color: #292524;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: 1.5px solid #D6D3D1;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline-lg:hover {
  border-color: #292524;
  background: #F5F5F4;
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn-outline-amber {
  display: inline-block;
  background: transparent;
  color: #B45309;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: 1.5px solid #FCD34D;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-amber:hover {
  border-color: #B45309;
  background: #FEF3C7;
}

.btn-form-submit {
  background: #292524;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-form-submit:hover:not(:disabled) {
  background: #1C1917;
  transform: translateY(-1px);
}
.btn-form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(135deg, #FAFAF9 0%, #F5F0E8 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(217,119,6,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(41,37,36,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.badge-pill {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(217,119,6,0.2);
  color: #92400E;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: #1C1917;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: #D97706;
  font-weight: 300;
}

.hero-body {
  font-size: 1.1rem;
  color: #78716C;
  line-height: 1.7;
}

.hero-stats { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 2rem; }
.stat-item {}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1C1917;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A8A29E;
  margin-top: 6px;
}

.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.hero-card-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hero-deco-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(217,119,6,0.15);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}

/* ---- SECTION TYPOGRAPHY ---- */
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #D97706;
}
.section-tag-light {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FCD34D;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #1C1917;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: #D97706;
}
.section-title-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
}
.section-title-light em { font-style: italic; color: #FCD34D; }
.section-body { font-size: 1rem; color: #78716C; line-height: 1.7; }

/* ---- SERVICE CARDS (HOME) ---- */
.service-card {
  background: white;
  border: 1px solid #E7E5E4;
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.service-card:hover {
  border-color: #D97706;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  background: #FEF3C7;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #B45309;
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1C1917;
  margin-bottom: 10px;
}
.service-body { font-size: 0.875rem; color: #78716C; line-height: 1.6; }
.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D97706;
  text-decoration: none;
  transition: color 0.2s;
}
.service-link:hover { color: #B45309; }

/* ---- WHY US SECTION ---- */
.why-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.02) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(245,158,11,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.why-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.08); }
.why-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(245,158,11,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #FCD34D;
}
.why-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 6px;
}
.why-body { font-size: 0.85rem; color: #A8A29E; line-height: 1.6; }

/* ---- CTA ---- */
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #1C1917;
  line-height: 1.15;
}
.cta-body { font-size: 1rem; color: #78716C; line-height: 1.7; }

/* ---- FOOTER ---- */
.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #78716C;
}
.footer-link {
  color: #A8A29E;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #F5F5F4; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, #FAFAF9 0%, #F5F0E8 100%);
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: #1C1917;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-hero-body {
  font-size: 1.1rem;
  color: #78716C;
  line-height: 1.7;
}

/* ---- ABOUT PAGE ---- */
.about-image-wrap { position: relative; }
.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.about-accent-box {
  position: absolute;
  bottom: -28px; right: -28px;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  max-width: 220px;
  border: 1px solid #F5F5F4;
}

.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.2s;
}
.value-card:hover { background: rgba(255,255,255,0.1); }
.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(245,158,11,0.5);
  line-height: 1;
  margin-bottom: 12px;
}
.value-title {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 10px;
}
.value-body { font-size: 0.875rem; color: #A8A29E; line-height: 1.6; }

.contact-icon-wrap {
  width: 52px; height: 52px;
  background: #FEF3C7;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A8A29E;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1C1917;
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-value:hover { color: #D97706; }

/* ---- SERVICES DETAIL ---- */
.service-detail-row { position: relative; }
.service-detail-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: #F5F5F4;
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}
.service-detail-icon {
  width: 64px; height: 64px;
  background: #FEF3C7;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #B45309;
}
.service-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #1C1917;
  line-height: 1.2;
}
.service-detail-body { font-size: 1rem; color: #78716C; line-height: 1.7; }
.service-detail-list { list-style: none; padding: 0; margin: 0; space-y: 8px; }
.service-detail-list li {
  padding: 8px 0;
  border-bottom: 1px solid #F5F5F4;
  font-size: 0.9rem;
  color: #57534E;
  padding-left: 22px;
  position: relative;
}
.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D97706;
}
.service-detail-img-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.service-detail-img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-detail-img:hover { transform: scale(1.03); }
.service-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #E7E5E4, transparent);
}

/* ---- CONTACT PAGE ---- */
.contact-form-card {
  background: white;
  border: 1px solid #E7E5E4;
  border-radius: 24px;
  padding: 40px;
}
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: #FEF3C7;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A8A29E;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1C1917;
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-info-value:hover { color: #D97706; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #44403C;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E7E5E4;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: #1C1917;
  background: #FAFAF9;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: #D97706;
  background: white;
  box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}
.form-input::placeholder { color: #A8A29E; }
textarea.form-input { resize: vertical; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .about-accent-box { display: none; }
  .contact-form-card { padding: 24px; }
  .hero-headline { font-size: 2.8rem; }
}
