@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fff1eb, #ace0f9);
  color: #ff9a9e;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8f9f6;
  color: #2e4a37;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0f4ef;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}

.loader-container {
  text-align: center;
}

.loader-logo {
  width: 60px;
  animation: float 1.6s ease-in-out infinite;
  margin-bottom: 1rem;
}

.loader-text {
  color: #3b6d4f;
  font-size: 1rem;
  font-style: italic;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(248, 249, 246, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  z-index: 1000;
  border-bottom: 1px solid #dde4da;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 36px;
  height: 36px;
}

.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #2e4a37;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  color: #4f6657;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #3b6d4f;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #3b6d4f;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f0f4ef;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 5% 4rem;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  box-shadow: 0 8px 32px rgba(46, 74, 55, 0.1);
}

.hero-overlay h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #2e4a37;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #4a5a4f;
  margin-bottom: 2rem;
}

.cta-button {
  background: #3b6d4f;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: #2c513a;
}

@media (max-width: 768px) {
  .hero-overlay h2 {
    font-size: 2rem;
  }

  .hero-overlay {
    padding: 2rem;
  }
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0f4ef;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
}

.cookies-section p {
  font-size: 0.95rem;
  color: #2e4a37;
  margin: 0;
}

.cookies-button {
  background: #3b6d4f;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookies-button:hover {
  background: #2c513a;
}

@media (max-width: 600px) {
  .cookies-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookies-button {
    width: 100%;
  }
}

.site-footer {
  background: #f4f6f2;
  padding: 4rem 5% 2rem;
  color: #2e4a37;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #4a5a4f;
  line-height: 1.6;
}

.footer-contact h3,
.footer-hours h3 {
  font-family: "Playfair Display", serif;
  color: #3b6d4f;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-contact p,
.footer-hours p {
  color: #4a5a4f;
  margin-bottom: 0.5rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.footer-socials img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.footer-links {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
}

.footer-links a {
  color: #3b6d4f;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2c513a;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #7c8e80;
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #3b6d4f;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.scroll-to-top.show {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 640px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-overlay h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #2e4a37;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  color: #4a5a4f;
  margin-bottom: 2rem;
}

.cta-button {
  background: #3b6d4f;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #2c513a;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-overlay h2 {
    font-size: 2rem;
  }

  .hero-overlay {
    padding: 2rem 1.5rem;
  }
}

.design-types-section {
  background: #f8f9f6;
  padding: 6rem 5% 4rem;
  text-align: center;
}

.design-types-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #2e4a37;
  margin-bottom: 3.5rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.design-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.design-item h3 {
  font-size: 1.3rem;
  color: #3b6d4f;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.design-item p {
  font-size: 1rem;
  color: #4a5a4f;
  line-height: 1.8;
  max-width: 360px;
  margin: 0 auto;
}

.horizontal-gallery {
  background: #f4f6f2;
  padding: 6rem 5% 4rem;
  overflow: hidden;
  position: relative;
}

.horizontal-gallery h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  color: #2e4a37;
  margin-bottom: 2rem;
  text-align: center;
}

.gallery-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 2rem;
}

.gallery-track {
  display: flex;
  gap: 3rem;
  padding: 1rem 0;
}

.project-card {
  flex: 0 0 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease;
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-card p {
  padding: 1rem;
  font-size: 1rem;
  color: #4a5a4f;
  text-align: center;
}

.about-designer-section {
  background: #f8f9f6;
  padding: 6rem 5% 6rem;
  display: flex;
  justify-content: center;
}

.about-wrapper {
  max-width: 1200px;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.about-text {
  flex: 1 1 400px;
  color: #2e4a37;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #3b6d4f;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #4a5a4f;
}

.design-principles-section {
  background: #ffffff;
  padding: 6rem 5% 6rem;
  text-align: center;
}

.design-principles-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #2e4a37;
  margin-bottom: 3.5rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.principle-item {
  padding: 2rem 1.5rem;
  background: #f8f9f6;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.principle-item h3 {
  font-size: 1.4rem;
  color: #3b6d4f;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.principle-item p {
  font-size: 1rem;
  color: #4a5a4f;
  line-height: 1.7;
}

.principle-item:hover {
  transform: translateY(-6px);
}

.contact-section {
  background: #f0f4ef;
  padding: 6rem 5% 6rem;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.contact-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #2e4a37;
  margin-bottom: 1rem;
}

.contact-intro p {
  font-size: 1.05rem;
  color: #4a5a4f;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #cfd9cd;
  border-radius: 12px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #2e4a37;
  resize: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b6d4f;
}

.contact-form button {
  background: #3b6d4f;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #2d4f3a;
}

.portfolio-section {
  background: #fff;
  padding: 6rem 5% 6rem;
}

.portfolio-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.portfolio-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  color: #2e4a37;
  margin-bottom: 0.5rem;
}

.portfolio-intro p {
  font-size: 1.05rem;
  color: #4a5a4f;
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-gallery {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.caption.right {
  left: auto;
  right: 2rem;
  text-align: right;
}

.caption h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #02c72d;
}

.caption p {
  font-size: 1.95rem;
  font-weight: 300;
  color: #06ac40;
}

@media (max-width: 768px) {
  .caption,
  .caption.right {
    position: static;
    text-align: center;
    padding-top: 1rem;
    color: #2e4a37;
    text-shadow: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay {
  transition-delay: 0.2s;
}

.designer-bio-section {
  background: #f8f9f6;
  padding: 6rem 5% 6rem;
}

.designer-bio-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.designer-photo {
  flex: 1 1 380px;
  max-width: 480px;
}

.designer-photo img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.designer-text {
  flex: 1 1 480px;
  color: #2e4a37;
}

.designer-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #3b6d4f;
}

.designer-text .subtitle {
  font-size: 1rem;
  font-style: italic;
  color: #6e7e72;
  margin-bottom: 2rem;
}

.designer-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: #4a5a4f;
}

@media (max-width: 768px) {
  .designer-bio-content {
    flex-direction: column;
    gap: 3rem;
  }

  .designer-text h2 {
    text-align: center;
  }

  .designer-text .subtitle {
    text-align: center;
  }
}

.designer-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #3b6d4f;
  border-left: 4px solid #cfe2d1;
  padding-left: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.title_background {
  background-color: #f0f4ef;
  padding: 6rem 5% 2rem;
  text-align: center;
  border-bottom: 1px dashed #cfe2d1;
}

.title_background .title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #3b6d4f;
  letter-spacing: 0.5px;
}

.text_background {
  background-color: #ffffff;
  padding: 4rem 5% 6rem;
}

.text_background .text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4a5a4f;
  background: #f9fbf8;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid #e2eae0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.7rem;
  }

  .text_background .text {
    font-size: 1rem;
    padding: 2rem;
  }
}
