/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
strong { font-weight: 700; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.2;
  color: #1a1a1a;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 36px;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-dark {
  background: #1e1e1e;
  color: #fff;
}
.btn-dark:hover { background: #3a3a3a; color: #fff; }

.btn-outline {
  background: transparent;
  color: #1e1e1e;
  border: 1px solid #1e1e1e;
}
.btn-outline:hover { background: #1e1e1e; color: #fff; }

.btn-sm {
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.btn-group {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 82px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
#header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 5px;
  color: #1a1a1a;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #999;
  font-weight: 400;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  height: 82px;
}
.nav-item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #333;
  padding: 0 16px;
  height: 82px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.nav-item:hover { color: #000; }

/* Dropdown trigger arrow */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #555;
  margin-left: 7px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Dropdown menu */
.dropdown {
  display: none;
  position: absolute;
  top: 82px;
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  min-width: 220px;
  padding: 10px 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.3px;
  transition: background 0.15s;
  height: auto;
}
.dropdown a:hover { background: #f5f5f5; color: #000; }

/* Contact button in nav */
.nav-contact {
  background: #1e1e1e;
  color: #fff !important;
  padding: 0 28px !important;
  height: 46px !important;
  margin-left: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}
.nav-contact:hover { background: #3a3a3a !important; color: #fff !important; }

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #222;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 82px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}
.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(43px, 6.5vw, 86px);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-arrow {
  position: absolute;
  bottom: 43px;
  left: 48px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); }
.hero-arrow svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* ============================================================
   QUOTE / INTRO
   ============================================================ */
.intro-section {
  padding: 108px 48px;
  display: flex;
  justify-content: center;
}
.intro-inner {
  max-width: 980px;
  text-align: center;
  position: relative;
}
.quote-open,
.quote-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: #ddd;
  line-height: 0;
  display: block;
}
.quote-open { margin-bottom: 36px; padding-top: 36px; }
.quote-close { margin-top: 24px; padding-bottom: 12px; }

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.7;
  color: #222;
}
.quote-author {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #999;
  font-weight: 400;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 0 96px 0;
}
.services-header {
  display: grid;
  grid-template-columns: 336px 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 38px;
  padding-bottom: 24px;
}
.services-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #555;
  padding-top: 6px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 72px 24px 26px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
}

/* ============================================================
   CONNECT WITH US
   ============================================================ */
.connect-section {
  background: #fff;
  padding: 96px;
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 96px;
  align-items: center;
  margin-top: 0;
}
.connect-right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #444;
  margin-bottom: 38px;
  max-width: 700px;
}

/* ============================================================
   THE DEMO WAY
   ============================================================ */
.way-section {
  background: #e8e5e1;
  padding: 120px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.way-title { margin-bottom: 26px; }
.way-title em {
  font-style: italic;
  display: block;
}
.way-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #555;
  margin-bottom: 42px;
}

/* Icons grid */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.icon-card {
  padding: 43px 19px;
  text-align: center;
  border: 1px solid #e0e0e0;
  margin: 0 -1px -1px 0;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.icon-card:hover { background: #f9f9f9; }
.icon-card svg {
  width: 62px;
  height: 62px;
  stroke: #222;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-card span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* ============================================================
   SIGNATURE PROJECTS
   ============================================================ */
.projects-section {
  background: #eeece8;
  padding: 96px;
}
.projects-heading {
  margin-bottom: 43px;
}

/* Mosaic grid */
.projects-mosaic {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 0;
}

/* Individual project blocks */
.project-block {
  position: relative;
  overflow: hidden;
  background: #e2dfd9;
}

.p-penthouse { grid-column: 1; grid-row: 1; }
.p-lunaria   { grid-column: 2; grid-row: 1 / 3; }
.p-interior  { grid-column: 3; grid-row: 1; }
.p-landscape { grid-column: 1; grid-row: 2; }
.p-all       { grid-column: 3; grid-row: 2; }

.project-img-wrap {
  height: 264px;
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.project-block:hover .project-img-wrap img { transform: scale(1.05); }

.project-info {
  padding: 26px 29px 31px;
}
.project-cat {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
  font-weight: 500;
}
.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 22px;
  line-height: 1.2;
}

/* Lunaria large card */
.p-lunaria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.p-lunaria:hover img { transform: scale(1.04); }
.project-overlay-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 72px 31px 31px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.project-overlay-info .project-cat { color: rgba(255,255,255,0.75); }
.project-overlay-info .project-name { color: #fff; }

/* Bottom-right: same style as other corner cards */
.p-all .project-info { padding: 26px 29px 31px; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  background: #1e1e1e;
  padding: 96px 96px;
  text-align: center;
}
.video-inner {
  max-width: 960px;
  margin: 0 auto;
}
.video-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}
.video-section p {
  font-size: 15px;
  color: #888;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}
.video-wrap {
  position: relative;
  width: 100%;
  background: #000;
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 540px;
  object-fit: contain;
}
/* 16:9 responsive iframe */
.video-wrap--iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrap--iframe iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: #e8e5e1;
  padding: 96px 24px;
  display: flex;
  justify-content: center;
}
.newsletter-inner {
  width: 100%;
  max-width: 900px;
  text-align: center;
}
.newsletter-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(29px, 3.6vw, 46px);
  color: #1a1a1a;
  margin-bottom: 12px;
}
.newsletter-inner > p {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-bottom: 46px;
}
.newsletter-form {
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  margin-bottom: 19px;
}
.form-field {
  width: 100%;
  padding: 17px 19px;
  background: #fff;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field:focus { border-color: #888; }
.form-field::placeholder { color: #bbb; }
.form-field.full { margin-bottom: 19px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 34px;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1e1e1e;
}
.newsletter-form .btn { display: block; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1e1e1e;
  color: #aaa;
  padding: 72px 96px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 216px 1fr 360px;
  gap: 0;
  border-bottom: 1px solid #2e2e2e;
  padding-bottom: 60px;
}
.footer-logo-col {
  padding-right: 48px;
}
.footer-logo .logo-main { color: #fff; }
.footer-logo .logo-sub { color: #666; }

.footer-contact-col {
  border-left: 1px solid #2e2e2e;
  padding-left: 72px;
  padding-right: 48px;
}
.footer-address {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #888;
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  gap: 34px;
  margin-bottom: 34px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.social-icons {
  display: flex;
  gap: 14px;
}
.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #383838;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.social-icon:hover { border-color: #fff; color: #fff; }
.social-icon svg { width: 19px; height: 19px; }

.footer-nav-col {
  border-left: 1px solid #2e2e2e;
  padding-left: 72px;
  display: flex;
  gap: 60px;
}
.footer-nav-group h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 22px;
}
.footer-nav-group ul { list-style: none; }
.footer-nav-group ul li { margin-bottom: 12px; }
.footer-nav-group ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  transition: color 0.2s;
  word-break: break-word;
}
.footer-nav-group ul li a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0;
  font-size: 13px;
  color: #555;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 34px;
  right: 34px;
  z-index: 9999;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
}
.whatsapp-float svg { width: 36px; height: 36px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .services-header { grid-template-columns: 240px 1fr; gap: 48px; }
  .services-section { padding: 0 48px; }
  .connect-section { padding: 72px 48px; gap: 60px; }
  .way-section { padding: 96px 48px; gap: 60px; }
  .projects-section { padding: 72px 48px; }
  .site-footer { padding: 60px 48px 0; }
  .newsletter-section { padding: 80px 24px; }
}

@media (max-width: 900px) {
  #header { padding: 0 28px; height: 72px; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .hero { height: 70vh; margin-top: 72px; }

  .services-section { padding: 0 28px; }
  .services-header { grid-template-columns: 1fr; gap: 18px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .connect-section { grid-template-columns: 1fr; gap: 32px; padding: 60px 28px; }
  .way-section { grid-template-columns: 1fr; padding: 72px 28px; gap: 48px; }

  .projects-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .p-penthouse { grid-column: 1; grid-row: 1; }
  .p-lunaria   { grid-column: 1 / 3; grid-row: 2; height: 380px; }
  .p-interior  { grid-column: 2; grid-row: 1; }
  .p-landscape { grid-column: 1; grid-row: 3; }
  .p-all       { grid-column: 2; grid-row: 3; }
  .projects-section { padding: 72px 28px; }

  .newsletter-section { padding: 72px 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-contact-col { border-left: none; padding-left: 0; border-top: 1px solid #2e2e2e; padding-top: 36px; }
  .footer-nav-col { border-left: none; padding-left: 0; border-top: 1px solid #2e2e2e; padding-top: 36px; }
  .site-footer { padding: 48px 28px 0; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .icons-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-mosaic { grid-template-columns: 1fr; }
  .p-lunaria   { grid-column: 1; grid-row: 2; height: 320px; }
  .p-interior  { grid-column: 1; grid-row: 3; }
  .p-landscape { grid-column: 1; grid-row: 4; }
  .p-all       { grid-column: 1; grid-row: 5; }
  .footer-nav-col { flex-direction: column; gap: 36px; }
}
