


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

:root {
  --terracotta-primary: #C75B45;
  --terracotta-dark: #A34835;
  --terracotta-light: #E08B7D;
  --charcoal-deep: #2D2D2D;
  --charcoal-medium: #404040;
  --charcoal-light: #5A5A5A;
  --warm-cream: #FDF6F0;
  --soft-white: #FFFCF9;
  --natural-wood: #8B7355;
  --forest-green: #4A6741;
  --golden-accent: #D4A574;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 20px rgba(45, 45, 45, 0.08);
  --shadow-medium: 0 8px 32px rgba(45, 45, 45, 0.12);
  --shadow-strong: 0 12px 48px rgba(45, 45, 45, 0.16);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--soft-white);
  color: var(--charcoal-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

strong, p, b, i, em, span {
  color: inherit;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-text {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

a {
  color: var(--terracotta-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--terracotta-dark);
}


.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.container-wide {
  max-width: 1600px;
}


.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-loose {
  padding: clamp(5rem, 10vw, 10rem) 0;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  min-height: 52px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--terracotta-primary);
  color: var(--soft-white);
  border-color: var(--terracotta-primary);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal-deep);
  border-color: var(--charcoal-deep);
}

.btn-secondary:hover {
  background: var(--charcoal-deep);
  color: var(--soft-white);
}

.btn-accent {
  background: var(--natural-wood);
  color: var(--soft-white);
  border-color: var(--natural-wood);
}

.btn-accent:hover {
  background: var(--charcoal-deep);
  border-color: var(--charcoal-deep);
  color: var(--soft-white);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--soft-white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal-deep);
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta-primary);
  color: var(--soft-white);
  border-radius: 8px;
  font-size: 1.5rem;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--charcoal-medium);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--terracotta-primary);
  background: rgba(199, 91, 69, 0.08);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal-deep);
  transition: var(--transition-smooth);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--soft-white);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

.mobile-nav-link {
  display: block;
  padding: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal-deep);
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--charcoal-deep);
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal-deep);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('../assets/visuals/hero-craftsmanship.webp');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(45, 45, 45, 0.7) 50%, rgba(199, 91, 69, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 4rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(199, 91, 69, 0.2);
  border: 1px solid var(--terracotta-primary);
  color: var(--terracotta-light);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--soft-white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 252, 249, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}


.feature-card {
  background: var(--soft-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(45, 45, 45, 0.06);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.service-card {
  background: var(--soft-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}

.service-image {
  height: 240px;
  overflow: hidden;
  background: var(--charcoal-light);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-content {
  padding: 1.75rem;
}

.service-title {
  margin-bottom: 0.75rem;
  color: var(--charcoal-deep);
}

.service-description {
  color: var(--charcoal-light);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta-primary);
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--terracotta-primary);
}

.service-link:hover {
  gap: 0.75rem;
}


.advantage-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--warm-cream);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.advantage-card:hover {
  background: rgba(199, 91, 69, 0.08);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta-primary);
  color: var(--soft-white);
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.advantage-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal-deep);
}

.advantage-text {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}


.review-card {
  background: var(--soft-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.review-quote {
  font-size: 3rem;
  color: var(--terracotta-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  color: var(--charcoal-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--charcoal-light);
}

.review-name {
  font-weight: 700;
  color: var(--charcoal-deep);
}

.review-location {
  font-size: 0.875rem;
  color: var(--charcoal-light);
}


.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(199, 91, 69, 0.12);
  color: var(--terracotta-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--charcoal-deep);
}

.section-subtitle {
  color: var(--charcoal-light);
  font-size: 1.1rem;
}


.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.split-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.split-image img {
  width: 100%;
  height: auto;
  display: block;
}


.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--charcoal-deep);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--charcoal-deep);
  background: var(--soft-white);
  border: 2px solid rgba(45, 45, 45, 0.12);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--terracotta-primary);
  box-shadow: 0 0 0 4px rgba(199, 91, 69, 0.12);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}


.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--warm-cream);
  border-radius: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta-primary);
  color: var(--soft-white);
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
  color: var(--charcoal-deep);
}

.contact-value a {
  color: inherit;
}


.site-footer {
  background: var(--charcoal-deep);
  color: rgba(255, 252, 249, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-white);
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 252, 249, 0.6);
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--soft-white);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 252, 249, 0.7);
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 252, 249, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 252, 249, 0.5);
  font-size: 0.875rem;
}

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


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal-deep);
  color: rgba(255, 252, 249, 0.9);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: var(--terracotta-primary);
  color: var(--soft-white);
  border-color: var(--terracotta-primary);
}

.cookie-btn-accept:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 252, 249, 0.8);
  border-color: rgba(255, 252, 249, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 252, 249, 0.1);
  border-color: rgba(255, 252, 249, 0.5);
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--warm-cream);
  border-radius: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--terracotta-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--charcoal-medium);
}


.team-card {
  text-align: center;
}

.team-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--charcoal-light);
  margin: 0 auto 1.25rem;
  border: 4px solid var(--terracotta-primary);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal-deep);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--terracotta-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}


.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--soft-white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta-primary);
  color: var(--soft-white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}


.faq-item {
  background: var(--soft-white);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--charcoal-deep);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--terracotta-primary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--terracotta-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--charcoal-medium);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}


.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/3;
  background: var(--charcoal-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--soft-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gallery-category {
  color: var(--terracotta-light);
  font-weight: 600;
  font-size: 0.9rem;
}


.cta-section {
  background: var(--charcoal-deep);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(199, 91, 69, 0.15) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  color: var(--soft-white);
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255, 252, 249, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}


.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background: var(--warm-cream);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.legal-content {
  padding: 2rem 0;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal-deep);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--charcoal-medium);
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--charcoal-medium);
}


.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta-primary);
  color: var(--soft-white);
  font-size: 3rem;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

.thank-you-title {
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.25rem;
  color: var(--charcoal-medium);
  max-width: 600px;
  margin: 0 auto 2rem;
}


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

.text-terracotta {
  color: var(--terracotta-primary);
}

.bg-warm {
  background: var(--warm-cream);
}

.bg-charcoal {
  background: var(--charcoal-deep);
  color: var(--soft-white);
}

.bg-charcoal strong,
.bg-charcoal p {
  color: inherit;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }


@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: block;
  }

  .mobile-toggle {
    display: none;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-text {
    max-width: 60%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-section.reverse .split-content {
    order: 2;
  }

  .split-section.reverse .split-image {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}


@media (min-width: 1280px) {
  .container {
    max-width: 1440px;
    padding: 0 3rem;
  }
}


.pure-button {
  font-family: var(--font-body);
  border-radius: 8px;
}

.pure-form input,
.pure-form textarea,
.pure-form select {
  border-radius: 12px;
}