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

:root {
  --primary: #c9a86a;
  --secondary: #2d3e50;
  --accent: #e8d5b7;
  --dark: #1a1a1a;
  --light: #faf8f5;
  --white: #ffffff;
  --text: #4a4a4a;
  --border: #e5dfd5;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.header {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  position: relative;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 85vh;
  background: var(--light);
  overflow: hidden;
}

.hero-split {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: center;
  gap: 60px;
  padding: 0 40px;
}

.hero-text {
  padding: 40px 0;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--dark);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-small, .btn-accept {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid var(--dark);
  color: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

.btn-small {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-accept {
  background: var(--primary);
  color: var(--white);
  padding: 10px 25px;
}

.btn-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-text:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 10px 30px var(--shadow);
}

.features {
  padding: 60px 0;
  background: var(--white);
}

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

.feature-card {
  text-align: center;
  padding: 25px;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

.about {
  padding: 100px 0;
  background: var(--secondary);
  color: var(--white);
}

.about h2,
.about .section-label {
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-text .btn-secondary {
  margin-top: 15px;
  border-color: var(--white);
  color: var(--white);
}

.about-text .btn-secondary:hover {
  background: var(--white);
  color: var(--secondary);
}

.about-image {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 8px;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  color: var(--dark);
  padding: 15px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px var(--shadow);
}

.signature {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.signature h2 {
  margin-bottom: 60px;
}

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

.signature-card {
  background: var(--light);
  padding: 40px 35px;
  border-radius: 6px;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.signature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.signature-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.signature-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
}

.signature-card h3 {
  font-size: 1.8rem;
  margin: 10px 0;
  width: 100%;
}

.signature-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
}

.signature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.services {
  padding: 100px 0;
  background: var(--light);
  text-align: center;
}

.services h2 {
  margin-bottom: 60px;
}

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

.service-item {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-item h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

.process {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.process h2 {
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

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

.process-number {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process-step p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

.testimonials {
  padding: 100px 0;
  background: var(--light);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 6px;
  text-align: left;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-author strong {
  font-size: 14px;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text);
}

.visit {
  padding: 100px 0;
  background: var(--secondary);
  color: var(--white);
}

.visit .section-label,
.visit h2 {
  color: var(--white);
}

.visit-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.visit-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  text-align: left;
}

.visit-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
}

.visit-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.1rem;
}

.delivery-info {
  padding: 70px 0;
  background: var(--white);
}

.delivery-info h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.step {
  text-align: center;
  padding: 25px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 13px;
  line-height: 1.6;
}

.delivery-areas {
  padding: 70px 0;
  background: var(--light);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.areas-text h2 {
  margin-bottom: 20px;
}

.areas-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.coverage-list {
  list-style: none;
  margin: 20px 0;
}

.coverage-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.areas-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: var(--white);
  padding: 25px;
  border-radius: 5px;
  text-align: center;
}

.feature-box h4 {
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 12px;
}

.delivery-cta {
  padding: 70px 0;
  background: var(--white);
  text-align: center;
}

.delivery-cta h2 {
  margin-bottom: 15px;
}

.delivery-cta p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.wedding-intro {
  padding: 70px 0;
  background: var(--white);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  margin-bottom: 25px;
}

.intro-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.wedding-services {
  padding: 70px 0;
  background: var(--light);
}

.wedding-services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

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

.service-card p {
  font-size: 13px;
  line-height: 1.6;
}

.wedding-process {
  padding: 70px 0;
  background: var(--white);
}

.wedding-process h2 {
  text-align: center;
  margin-bottom: 50px;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 35px;
}

.timeline-item {
  grid-template-columns: 80px 1fr;
  gap: 25px;
  align-items: start;
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 13px;
  line-height: 1.7;
}

.wedding-styles {
  padding: 70px 0;
  background: var(--light);
}

.wedding-styles h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.style-item {
  background: var(--white);
  padding: 25px;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
}

.style-item:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.style-item h4 {
  margin-bottom: 10px;
}

.style-item p {
  font-size: 12px;
}

.wedding-cta {
  padding: 70px 0;
  background: var(--white);
  text-align: center;
}

.wedding-cta h2 {
  margin-bottom: 15px;
}

.wedding-cta p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.contact-section {
  padding: 70px 0;
  background: var(--white);
}

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

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
  line-height: 1.7;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: start;
}

.info-item h4 {
  margin-bottom: 5px;
}

.info-item p {
  font-size: 13px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 40px;
  border-radius: 5px;
}

.contact-form-wrapper h2 {
  margin-bottom: 15px;
}

.contact-form-wrapper > p {
  margin-bottom: 25px;
  font-size: 13px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

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

.checkbox-group {
  flex-direction: row;
  align-items: start;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 70px 0;
  background: var(--light);
}

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

.map-wrapper {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

.thankyou-section, .error-section {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: var(--light);
}

.thankyou-content, .error-content {
  text-align: center;
  max-width: 600px;
}

.thankyou-icon, .error-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.thankyou-content h1, .error-content h1 {
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 4rem;
  color: var(--primary);
}

.error-content h2 {
  margin-bottom: 15px;
}

.thankyou-content p, .error-content p {
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 15px;
}

.thankyou-actions, .error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  padding: 60px 0;
  background: var(--white);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 10px;
}

.policy-date {
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
}

.policy-content h2 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.policy-content h3 {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.policy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin: 15px 0 15px 25px;
  line-height: 1.8;
}

.policy-content li {
  margin-bottom: 8px;
}

.footer {
  background: var(--dark);
  color: var(--light);
  padding: 30px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: var(--light);
  transition: color 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -5px 20px var(--shadow);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  font-size: 13px;
  flex: 1;
  min-width: 250px;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-buttons a {
  font-size: 13px;
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-split {
    padding: 0 30px;
    gap: 40px;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: 5px 0 20px var(--shadow);
    transition: left 0.3s ease;
    z-index: 99;
  }

  .nav.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    height: 50vh;
  }

  .hero-image img {
    height: 50vh;
  }

  .hero-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
  }

  .about-grid,
  .contact-grid,
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .areas-features {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .timeline-icon {
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-accept {
    width: 100%;
  }

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

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero-split {
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .feature-grid,
  .signature-grid,
  .services-grid,
  .styles-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
  }

  .signature-card {
    padding: 30px 25px;
  }

  .about,
  .signature,
  .services,
  .process,
  .testimonials,
  .visit {
    padding: 60px 0;
  }
}

@media (max-width: 320px) {
  .logo {
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

.delivery-intro {
  padding: 80px 0;
  background: var(--white);
}

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

.delivery-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 40px var(--shadow);
}

.delivery-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .delivery-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.wedding-showcase {
  padding: 80px 0;
  background: var(--light);
}

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

.wedding-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 40px var(--shadow);
}

.wedding-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.wedding-text .btn-primary {
  margin-top: 15px;
}

@media (max-width: 768px) {
  .wedding-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .wedding-image {
    order: -1;
  }
}

.timeline-icon {
  font-size: 1.5rem;
}
