:root {
  --gold: #b8956a;
  --gold-dark: #9a7b55;
  --gold-light: #d4bc96;
  --cream: #f5ede0;
  --champagne: #f7e7ce;
  --blush: #e8d5c4;
  --dark: #2a2522;
  --medium: #5c524d;
  --light: #fefcf9;
  --white: #ffffff;
  --border: #e5ddd4;
  --shadow: 0 2px 12px rgba(42, 37, 34, 0.07);
  --font-head: "Cormorant Garamond", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --header-h: 54px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 10px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.section {
  padding: 52px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 32px;
}
.section-title h2 {
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.section-title p {
  color: var(--medium);
  font-size: 0.85rem;
  max-width: 480px;
  margin: 12px auto 0;
}
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    transform 0.4s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  background: transparent;
  height: var(--header-h);
      background: rgb(105 89 65 / 96%);
}
.site-header.scrolled {
  background: rgba(254, 252, 249, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 6px rgba(42, 37, 34, 0.06);
}
.site-header.hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 24px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.brand {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  white-space: nowrap;
}
.site-header:not(.scrolled) .brand {
  color: var(--white);
}
.main-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  color: var(--medium);
}
.site-header:not(.scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.85);
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1002;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition:
    transform 0.3s var(--ease),
    opacity 0.25s var(--ease);
  border-radius: 2px;
}
.site-header:not(.scrolled) .menu-toggle span {
  background: var(--white);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menu-toggle.active span {
  background: var(--dark);
}
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(42, 37, 34, 0.55) 0%,
    rgba(42, 37, 34, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 540px;
  padding: 0 24px;
}
.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.sub-hero {
  min-height: 40vh;
  padding-top: calc(var(--header-h) + 30px);
}
.sub-hero .hero-content {
  max-width: 600px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
  font-size: 1.2rem;
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--medium);
  margin-bottom: 12px;
}
.features-section {
  background: var(--cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.feature-item i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.feature-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}
.feature-item p {
  font-size: 0.8rem;
  color: var(--medium);
  margin-bottom: 0;
}
.process-section .process-steps {
  display: flex;
  gap: 20px;
  counter-reset: step;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 20px 14px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}
.process-step h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--medium);
  margin-bottom: 0;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -10px;
  width: 20px;
  height: 1px;
  background: var(--border);
}
.process-step:last-child::after {
  display: none;
}
.testimonials-section {
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--gold-light);
  position: absolute;
  top: 8px;
  left: 18px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--medium);
  margin-bottom: 12px;
  padding-top: 28px;
}
.testimonial-card .author {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--dark);
}
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  text-align: center;
  padding: 48px 0;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 440px;
  margin: 0 auto 20px;
}
.cta-section .btn {
  background: var(--white);
  color: var(--gold-dark);
}
.cta-section .btn:hover {
  background: var(--cream);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-card .product-body {
  padding: 20px;
}
.product-card .product-icon {
  height: 120px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gold);
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.product-card .price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.8rem;
  color: var(--medium);
  margin-bottom: 14px;
}
.product-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.78rem;
  padding: 8px 16px;
}
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.content-split.reverse {
  direction: rtl;
}
.content-split.reverse > * {
  direction: ltr;
}
.content-split .text-block h2 {
  margin-bottom: 10px;
}
.content-split .text-block p {
  font-size: 0.88rem;
  color: var(--medium);
}
.content-split .image-block {
  border-radius: var(--radius);
  overflow: hidden;
}
.content-split .image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-card i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.value-card h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.value-card p {
  font-size: 0.8rem;
  color: var(--medium);
  margin-bottom: 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-form-block {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.info-card i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 0.88rem;
  margin-bottom: 3px;
}
.info-card p {
  font-size: 0.82rem;
  color: var(--medium);
  margin-bottom: 0;
}
.info-card a {
  color: var(--gold);
  font-weight: 500;
}
.info-card a:hover {
  color: var(--gold-dark);
}
.form-group {
  margin-bottom: 16px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--medium);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--light);
  font-size: 0.85rem;
  transition: border-color 0.25s var(--ease);
  outline: none;
  color: var(--dark);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}
.consent-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.consent-group label {
  font-size: 0.76rem;
  color: var(--medium);
  line-height: 1.5;
  cursor: pointer;
}
.consent-group a {
  color: var(--gold);
  text-decoration: underline;
}
.map-block {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-block iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 20px 0;
  font-size: 0.75rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-inner .copyright {
  font-size: 0.75rem;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover {
  color: var(--gold);
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 16px rgba(42, 37, 34, 0.1);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  padding: 16px 0;
}
.cookie-popup.show {
  transform: translateY(0);
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.8rem;
  color: var(--medium);
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-inner a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-actions button {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.cookie-accept {
  background: var(--gold);
  color: var(--white);
}
.cookie-accept:hover {
  background: var(--gold-dark);
}
.cookie-decline {
  border: 1.5px solid var(--border);
  color: var(--medium);
}
.cookie-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.error-page,
.thankyou-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100vh;
}
.error-page .error-code {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.error-page h1,
.thankyou-page h1 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.error-page p,
.thankyou-page p {
  color: var(--medium);
  max-width: 400px;
  margin-bottom: 20px;
}
.thankyou-page .thankyou-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.policy-page {
  padding-top: calc(var(--header-h) + 30px);
  padding-bottom: 40px;
}
.policy-content {
  max-width: 760px;
  margin: 0 auto;
}
.policy-content h1 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.policy-content h2 {
  font-size: 1.3rem;
  margin: 24px 0 10px;
}
.policy-content h3 {
  font-size: 1.05rem;
  margin: 16px 0 8px;
}
.policy-content p,
.policy-content li {
  font-size: 0.85rem;
  color: var(--medium);
  line-height: 1.75;
}
.policy-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.policy-content ul li {
  list-style: disc;
  margin-bottom: 4px;
}
.page-limiter {
  min-height: calc(100vh - var(--header-h) - 60px);
}
.about-story {
  background: var(--cream);
}
.contact-top-section {
  padding-top: calc(var(--header-h) + 30px);
}
.wedding-features .features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.wedding-features .feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.wedding-features .feat i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.wedding-features .feat h4 {
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.wedding-features .feat p {
  font-size: 0.8rem;
  color: var(--medium);
  margin-bottom: 0;
}
.contact-hero-visual {
  position: relative;
  text-align: center;
}
.contact-hero-visual .deco-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
  display: block;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--medium);
}
@media (max-width: 968px) {
  .services-grid,
  .products-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--light);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s var(--ease),
      visibility 0.35s var(--ease);
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .main-nav a {
    font-size: 1rem;
    color: var(--dark);
  }
  .site-header:not(.scrolled) .main-nav a {
    color: var(--dark);
  }
  .hero {
    min-height: 70vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .features-grid,
  .testimonials-grid,
  .wedding-features .features-list {
    grid-template-columns: 1fr;
  }
  .process-section .process-steps {
    flex-direction: column;
    gap: 12px;
  }
  .process-step::after {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .footer-links {
    justify-content: center;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .services-grid,
  .products-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 36px 0;
  }
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}
@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  .header-inner {
    padding: 0 12px;
  }
  .container {
    padding: 0 12px;
  }
  .hero-content {
    padding: 0 12px;
  }
}
