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

:root {
  --brown:       #3b1f0a;
  --brown-mid:   #6b3a1f;
  --brown-light: #b8895a;
  --brown-pale:  #e8d5c0;
  --cream:       #faf7f3;
  --white:       #ffffff;
  --dark:        #111111;
  --grey:        #666666;
  --light-grey:  #f4f0eb;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background: var(--brown);
  transition: padding 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  padding: 14px 50px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: var(--brown-pale);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--brown-pale);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--brown-pale);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--brown-light) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 1.5px !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--brown-mid) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 65%;
  height: 65%;
  background: var(--brown);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
}

.mobile-menu .btn-mobile-cta {
  background: var(--brown-light);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 2px;
  letter-spacing: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}

/* ===== TICKER ===== */

.ticker-wrap {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 998;
  background: var(--brown-light);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 40px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HOME / HERO ===== */
/* ===== HOME / HERO ===== */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 80px 80px;
  background: var(--cream);
  gap: 60px;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 520px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--brown-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 2px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--brown-light);
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--grey);
  letter-spacing: 0.5px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
  padding: 15px 38px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--white);
}

/* ===== HERO ART ===== */
.hero-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.house-drawing {
  width: 100%;
  max-width: 500px;
  opacity: 0.12;
  animation: floatUp 3s ease-in-out infinite alternate;
}

.house-drawing svg {
   width: 100%;
  height: auto;
}

@keyframes floatUp {
  from { transform: translateY(0px); }
  to   { transform: translateY(-12px); }
}

/* Remove old hero elements */
.hero-bg, .hero-img, .hero-overlay, .hero-scroll-hint { display: none; }

@media (max-width: 768px) {
  #home {
    flex-direction: column;
    padding: 120px 24px 60px;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-art { display: none; }
}


/* ===== BUTTONS ===== */
.btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-light {
  background: var(--white);
  color: var(--brown);
}

.btn-light:hover {
  background: var(--brown-pale);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
}

/* ===== STATS ===== */
#stats {
  background: #3b1f0a;
  padding: 60px 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--brown-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color:  rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header.light h2,
.section-header.light .section-desc {
  color: var(--white);
}

.section-header.light .section-eyebrow {
  color: var(--brown-pale);
}

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--brown-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== SERVICES ===== */
#services {
  padding: 100px 50px;
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(59,31,10,0.12);
}

.service-img-wrap {
  height: 200px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-info {
  padding: 24px 26px;
}

.service-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.service-info p {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}

.service-card-plain {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--brown);
}

.service-card-plain .service-icon {
  font-size: 2.5rem;
  padding: 30px 26px 10px;
}

.service-card-plain .service-info h3 {
  color: var(--white);
}

.service-card-plain .service-info p {
  color: var(--brown-pale);
}

/* ===== QUOTE BANNER ===== */
#quote-banner {
  background: var(--brown);
  padding: 90px 50px;
  text-align: center;
}

.quote-inner {
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--brown-light);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}

#quote-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  letter-spacing: 1px;
}

.quote-attr {
  margin-top: 24px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--brown-pale);
  letter-spacing: 3px;
  text-transform: uppercase;
}



/* ===== ABOUT ===== */
#about {
  padding: 100px 50px;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img-col {
  position: relative;
}

.about-img-col img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-col::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--brown-pale);
  border-radius: 4px;
  z-index: -1;
}

.about-text-col .section-eyebrow { text-align: left; }

.about-text-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-divider {
  width: 50px;
  height: 2px;
  background: var(--brown-light);
  margin-bottom: 28px;
}

.about-text-col p {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 16px;
  font-weight: 300;
}

.about-text-col strong { color: var(--brown); font-weight: 500; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 34px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 400;
}

.h-icon {
  color: var(--brown-light);
  font-size: 1rem;
  font-weight: 600;
}

/* ===== CONTACT ===== */
#contact {
  padding: 100px 50px;
  background: var(--brown);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.c-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-icon { font-size: 1.3rem; margin-top: 2px; }

.c-info-item strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.c-info-item p {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--brown-pale);
  line-height: 1.7;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 15px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: var(--white);
  outline: none;
  transition: border 0.3s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }

.contact-form select option { background: var(--brown); color: var(--white); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brown-light);
}

.contact-form .btn-light { width: 100%; text-align: center; }

.form-success {
  display: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-align: center;
}

/* * ===== FOOTER ===== */
footer {
  background: #1a0a02;
  padding: 70px 50px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--brown-pale);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: -10px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-weight: 300;
}

.footer-links,
.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.footer-areas strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--brown-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}

.footer-links a:hover { color: var(--white); }

.footer-areas p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

.footer-contact-line {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 16px 0 12px;
}

.footer-contact-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.footer-icon-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-icon-link:hover { color: var(--brown-light); }

.footer-icon { font-size: 1rem; }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 15px;
  width: 48px;
  height: 48px;
  z-index: 9999;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.25));
}
.whatsapp-btn:hover { transform: scale(1.12); }
.whatsapp-btn img { width: 100%; height: 100%; }

/* ===== RESPONSIVE ===== */


@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-col img { height: 350px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 18px 24px; }
  #navbar.scrolled { padding: 14px 24px; }
  .nav-links, .nav-tagline { display: none; }
  .hamburger { display: flex; }
  .ticker-wrap { top: 70px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-column: span 2; grid-row: span 1; min-height: 250px; }
  #services, #gallery, #about, #contact { padding: 70px 24px; }
  #stats { padding: 50px 24px; }
  #quote-banner { padding: 70px 24px; }
  footer { padding: 50px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
}