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

:root {
  --color-limestone: #ede7de;
  --color-off-white: #fafaf8;
  --color-sage-gray: #aeb8ae;
  --color-warm-stone: #bfaf9e;
  --color-terracotta: #c97a5b;
  --color-sky-blue: #bfd6e2;
  --color-text-dark: #2c2c2c;
  --color-text-light: #5a5a5a;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-off-white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 800px;
}

.site-header {
  background-color: var(--color-off-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--color-limestone);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--color-terracotta);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  position: relative;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: all 0.3s ease;
}

.mobile-menu-close {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
  font-size: 32px;
  color: var(--color-text-dark);
  line-height: 1;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  color: var(--color-terracotta);
}

.main-nav.mobile-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-off-white);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  overflow-y: auto;
}

.main-nav.mobile-open ul {
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.main-nav.mobile-open li {
  width: 100%;
  border-bottom: 1px solid var(--color-limestone);
}

.main-nav.mobile-open a {
  display: block;
  padding: 20px 0;
  font-size: 18px;
  width: 100%;
}

.main-nav.mobile-open ~ .mobile-menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-off-white);
  max-width: 700px;
  padding: 48px 24px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--color-limestone);
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--color-terracotta);
  color: var(--color-off-white);
  text-decoration: none;
  border-radius: 2px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: #b06a4d;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--color-terracotta);
  text-decoration: none;
  border: 2px solid var(--color-terracotta);
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--color-terracotta);
  color: var(--color-off-white);
}

section {
  padding: 80px 0;
}

h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-text-dark);
  line-height: 1.3;
}

h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.what-we-design {
  background-color: var(--color-limestone);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-block {
  padding-right: 32px;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.featured-projects {
  background-color: var(--color-off-white);
}

.featured-projects h2 {
  text-align: center;
  margin-bottom: 48px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.project-card {
  background-color: var(--color-off-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

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

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.cta-link {
  text-align: center;
  margin-top: 32px;
}

.cta-link a {
  color: var(--color-terracotta);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 2px solid var(--color-terracotta);
  transition: border-color 0.3s ease;
}

.cta-link a:hover {
  border-color: var(--color-text-dark);
}

.comparison-section {
  background-color: var(--color-limestone);
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.comparison-item {
  text-align: center;
}

.comparison-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 24px;
}

.comparison-item a {
  color: var(--color-terracotta);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.comparison-item a:hover {
  color: var(--color-text-dark);
}

.philosophy {
  text-align: center;
  background-color: var(--color-off-white);
}

.cta-section {
  background-color: var(--color-sky-blue);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
}

.site-footer {
  background-color: var(--color-warm-stone);
  color: var(--color-text-dark);
  padding: 64px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-column h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.footer-column a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-terracotta);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-light);
}

.page-hero {
  background-color: var(--color-limestone);
  text-align: center;
  padding: 100px 0 60px;
}

.page-hero.balcony-hero,
.page-hero.flower-beds-hero {
  position: relative;
  padding: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero.balcony-hero .hero-image,
.page-hero.flower-beds-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero.balcony-hero .hero-image img,
.page-hero.flower-beds-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.balcony-hero .container,
.page-hero.flower-beds-hero .container {
  position: relative;
  z-index: 1;
  color: var(--color-off-white);
  background: rgba(0, 0, 0, 0.4);
  padding: 48px 64px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.page-hero.balcony-hero h1,
.page-hero.flower-beds-hero h1 {
  color: var(--color-off-white);
}

.page-hero.balcony-hero p,
.page-hero.flower-beds-hero p {
  color: var(--color-limestone);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 20px;
}

.services-grid-section {
  background-color: var(--color-off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  padding: 32px;
  background-color: var(--color-limestone);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  color: var(--color-terracotta);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.process-section {
  background-color: var(--color-sky-blue);
}

.process-section h2 {
  text-align: center;
  margin-bottom: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.process-step {
  text-align: center;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-terracotta);
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.projects-gallery {
  background-color: var(--color-off-white);
}

.project-feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.project-feature.reverse {
  grid-template-columns: 1fr 1.5fr;
}

.project-feature.reverse .project-image-large {
  order: 2;
}

.project-feature.reverse .project-details {
  order: 1;
}

.project-image-large img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.project-details h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.project-card-small {
  background-color: var(--color-limestone);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card-small:hover {
  transform: translateY(-4px);
}

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

.project-card-small h3 {
  padding: 20px 20px 8px;
  font-size: 22px;
}

.project-card-small p {
  padding: 0 20px 20px;
}

.vertical-story {
  background-color: var(--color-limestone);
  text-align: center;
}

.image-text-alternate {
  background-color: var(--color-off-white);
}

.image-showcase-section {
  background-color: var(--color-off-white);
}

.sustainability-section {
  background-color: var(--color-limestone);
}

.service-showcase-section {
  background-color: var(--color-limestone);
}

.maintenance-section {
  background-color: var(--color-off-white);
}

.team-philosophy-section {
  background-color: var(--color-off-white);
}

.client-focus-section {
  background-color: var(--color-limestone);
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.content-row:last-child {
  margin-bottom: 0;
}

.content-row.reverse .content-image {
  order: 2;
}

.content-row.reverse .content-text {
  order: 1;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.benefits-section {
  background-color: var(--color-limestone);
}

.benefits-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
}

.benefit-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-terracotta);
}

.design-styles {
  background-color: var(--color-off-white);
}

.design-styles h2 {
  text-align: center;
  margin-bottom: 48px;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.style-card {
  background-color: var(--color-limestone);
  border-radius: 2px;
  overflow: hidden;
}

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

.style-card h3 {
  padding: 20px 20px 8px;
  font-size: 24px;
}

.style-card p {
  padding: 0 20px 24px;
}

.process-detail {
  background-color: var(--color-limestone);
  text-align: center;
}

.about-story {
  background-color: var(--color-limestone);
  text-align: center;
}

.approach-section {
  background-color: var(--color-off-white);
}

.approach-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.approach-item {
  text-align: center;
}

.approach-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-terracotta);
}

.values-section {
  background-color: var(--color-limestone);
  text-align: center;
}

.expertise-section {
  background-color: var(--color-off-white);
}

.expertise-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.expertise-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.expertise-column h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-terracotta);
}

.expertise-column ul {
  list-style: none;
}

.expertise-column ul li {
  padding: 8px 0;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-limestone);
}

.location-section {
  background-color: var(--color-limestone);
}

.location-section h2 {
  text-align: center;
  margin-bottom: 24px;
}

.location-section > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.map-container {
  border-radius: 2px;
  overflow: hidden;
  margin-top: 32px;
}

.contact-section {
  background-color: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-terracotta);
}

.info-block p {
  line-height: 1.8;
}

.info-block a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--color-terracotta);
}

.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

.contact-form {
  background-color: var(--color-limestone);
  padding: 32px;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-sage-gray);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 15px;
  background-color: var(--color-off-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.checkbox-group a {
  color: var(--color-terracotta);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.map-section {
  background-color: var(--color-limestone);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.thankyou-section {
  background-color: var(--color-limestone);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-content {
  text-align: center;
}

.thankyou-content h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  margin-bottom: 24px;
}

.thankyou-content p {
  font-size: 18px;
  margin-bottom: 16px;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.legal-content {
  background-color: var(--color-off-white);
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-terracotta);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: var(--color-sage-gray);
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .split-layout,
  .comparison-grid,
  .content-row,
  .project-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .project-feature.reverse .project-image-large,
  .project-feature.reverse .project-details,
  .content-row.reverse .content-image,
  .content-row.reverse .content-text {
    order: 0;
  }

  .projects-grid,
  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .project-feature.reverse {
    grid-template-columns: 1fr;
  }
  .main-nav:not(.mobile-open) {
    display: none;
  }

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

  .main-nav.mobile-open ~ .mobile-menu-toggle {
    display: none !important;
  }

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

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  section {
    padding: 48px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 16px;
  }

  .logo a {
    font-size: 20px;
  }

  .hero {
    min-height: 400px;
    height: 70vh;
  }

  .hero-content {
    padding: 32px 16px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .page-hero {
    padding: 60px 0 40px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 16px;
  }

  section {
    padding: 40px 0;
  }

  .split-layout {
    gap: 32px;
  }

  .content-block {
    padding-right: 0;
  }

  .projects-grid,
  .project-grid,
  .services-grid,
  .comparison-grid,
  .approach-grid,
  .expertise-columns,
  .benefits-grid,
  .styles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-card img,
  .comparison-item img,
  .style-card img {
    height: 200px;
  }

  .project-info,
  .style-card h3,
  .style-card p {
    padding: 16px;
  }

  .service-card {
    padding: 24px;
  }

  .process-steps {
    gap: 32px;
  }

  .step-number {
    font-size: 36px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-column h4 {
    font-size: 18px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
  }

  .mobile-menu-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .main-nav.mobile-open {
    padding: 60px 16px 16px;
  }

  .main-nav.mobile-open a {
    padding: 16px 0;
    font-size: 16px;
  }
}
