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

body {
  overflow-wrap: anywhere;
  font-family: "Playfair Display", Georgia, serif;
  background-color: #1a0a0f;
  color: #e8d5c4;
  line-height: 1.7;
  overflow-x: hidden;
}

.main-header {
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  border-bottom: 2px solid #b8860b;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  border-radius: 50%;
  border: 3px solid #b8860b;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b8860b;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.primary-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: #e8d5c4;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #b8860b;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #b8860b;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 17, 20, 0.85) 0%,
    rgba(26, 10, 15, 0.9) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  color: #b8860b;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.6rem;
  color: #e8d5c4;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-cta {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #1a0a0f;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.6);
  background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
}

.welcome-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #1a0a0f 0%, #2d1114 100%);
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;

  gap: 4rem;
  align-items: center;
}

.section-heading {
  font-size: 3.5rem;
  color: #b8860b;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #d4c5b9;
}

.welcome-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 3px solid #b8860b;
}

.features-showcase {
  padding: 6rem 2rem;
  background: #2d1114;
}

.section-heading.centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #1a0a0f 0%, #2d1114 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 2px solid #b8860b;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
  border-color: #d4a017;
}

.feature-icon {
  font-size: 4rem;
  color: #b8860b;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.8rem;
  color: #b8860b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.feature-description {
  font-size: 1.1rem;
  color: #d4c5b9;
}

.inspiration-block {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #2d1114 0%, #1a0a0f 100%);
}

.inspiration-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(45, 17, 20, 0.6);
  border: 3px solid #b8860b;
  border-radius: 12px;
  padding: 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.inspiration-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.inspiration-icon {
  font-size: 3rem;
  color: #b8860b;
}

.inspiration-title {
  font-size: 2.8rem;
  color: #b8860b;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.inspiration-letter {
  background: rgba(26, 10, 15, 0.5);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid #b8860b;
}

.letter-greeting {
  font-size: 1.4rem;
  color: #b8860b;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.letter-body {
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
  color: #d4c5b9;
  line-height: 1.8;
}

.letter-signature {
  font-size: 1.2rem;
  color: #e8d5c4;
  margin-top: 2rem;
  text-align: right;
  font-style: italic;
}

.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 3.5rem;
  color: #b8860b;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.cta-text {
  font-size: 1.3rem;
  color: #d4c5b9;
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1.3rem 3.5rem;
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #1a0a0f;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.6);
  background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
}

.site-footer {
  background: linear-gradient(135deg, #1a0a0f 0%, #0d0508 100%);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid #b8860b;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 1.5rem;
  color: #b8860b;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-text {
  color: #d4c5b9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-logo {
  border-radius: 50%;
  border: 2px solid #b8860b;
  margin-top: 1rem;
}

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

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

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

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

.footer-contact {
  color: #d4c5b9;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #b8860b;
  color: #d4c5b9;
}

.blog-hero {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  text-align: center;
}

.page-title {
  font-size: 4rem;
  color: #b8860b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.page-subtitle {
  font-size: 1.4rem;
  color: #d4c5b9;
  font-style: italic;
}

.blog-posts-section {
  padding: 4rem 2rem 6rem;
  background: #1a0a0f;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.blog-post-card {
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  border: 2px solid #b8860b;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 400px 1fr;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
}

.post-image-wrapper {
  overflow: hidden;
}

.post-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-post-card:hover .post-thumbnail {
  transform: scale(1.05);
}

.post-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-date {
  color: #b8860b;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.post-title {
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-excerpt {
  color: #d4c5b9;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.read-more-link {
  color: #b8860b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more-link:hover {
  color: #d4a017;
  transform: translateX(5px);
}

.about-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 10, 15, 0.7);
}

.about-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-main-title {
  font-size: 4.5rem;
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.6rem;
  color: #e8d5c4;
  font-style: italic;
}

.our-story-section {
  padding: 6rem 2rem;
  background: #1a0a0f;
}

.story-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-heading {
  font-size: 3rem;
  color: #b8860b;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.story-paragraph {
  font-size: 1.15rem;
  color: #d4c5b9;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 3px solid #b8860b;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.team-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #2d1114 0%, #1a0a0f 100%);
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-main-heading {
  font-size: 3.5rem;
  color: #b8860b;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #d4c5b9;
  margin-bottom: 4rem;
  font-style: italic;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 3rem;
}

.team-member-card {
  background: linear-gradient(135deg, #1a0a0f 0%, #2d1114 100%);
  border: 2px solid #b8860b;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
}

.team-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #b8860b;
  margin-bottom: 1.5rem;
}

.member-name {
  font-size: 1.8rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-position {
  font-size: 1.2rem;
  color: #d4a017;
  margin-bottom: 1rem;
  font-style: italic;
}

.member-bio {
  font-size: 1.05rem;
  color: #d4c5b9;
  line-height: 1.7;
}

.values-section {
  padding: 6rem 2rem;
  background: #2d1114;
}

.values-content {
  max-width: 1400px;
  margin: 0 auto;
}

.values-heading {
  font-size: 3.5rem;
  color: #b8860b;
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 3rem;
}

.value-item {
  background: linear-gradient(135deg, #1a0a0f 0%, #2d1114 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid #b8860b;
  text-align: center;
  transition: all 0.4s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.3);
}

.value-icon {
  font-size: 3.5rem;
  color: #b8860b;
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.8rem;
  color: #b8860b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.value-description {
  font-size: 1.1rem;
  color: #d4c5b9;
  line-height: 1.7;
}

.contact-hero {
  padding: 5rem 2rem 3rem;
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  text-align: center;
}

.contact-title {
  font-size: 4rem;
  color: #b8860b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.contact-subtitle {
  font-size: 1.4rem;
  color: #d4c5b9;
  font-style: italic;
}

.contact-main-section {
  padding: 4rem 2rem 6rem;
  background: #1a0a0f;
}

.contact-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-panel {
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid #b8860b;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.info-heading {
  font-size: 2.5rem;
  color: #b8860b;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-block {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.info-block:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 2rem;
  color: #b8860b;
}

.info-label {
  font-size: 1.3rem;
  color: #b8860b;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-text {
  color: #d4c5b9;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-text a {
  color: #b8860b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #d4a017;
}

.contact-form-panel {
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid #b8860b;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.form-heading {
  font-size: 2.5rem;
  color: #b8860b;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.form-label {
  display: block;
  color: #b8860b;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(26, 10, 15, 0.8);
  border: 1px solid #b8860b;
  border-radius: 6px;
  color: #e8d5c4;
  font-size: 1.05rem;
  font-family: "Playfair Display", Georgia, serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d4a017;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

.form-submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #1a0a0f;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.6);
  background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  border: 3px solid #b8860b;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.modal-icon {
  font-size: 5rem;
  color: #b8860b;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 2.5rem;
  color: #b8860b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal-message {
  font-size: 1.2rem;
  color: #d4c5b9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-close-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #1a0a0f;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.modal-close-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
}

.post-article {
  background: #1a0a0f;
}

.post-header-section {
  padding: 5rem 2rem 3rem;
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  text-align: center;
}

.post-meta-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.post-category,
.post-date-published {
  color: #b8860b;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-main-title {
  font-size: 3.5rem;
  color: #b8860b;
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.post-intro-text {
  font-size: 1.3rem;
  color: #d4c5b9;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

.post-featured-image {
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}

.post-featured-image img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: cover;
}

.post-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.post-body-text {
  font-size: 1.15rem;
  color: #d4c5b9;
  line-height: 1.9;
}

.post-body-text p {
  margin-bottom: 1.8rem;
}

.post-body-text h2 {
  font-size: 2.2rem;
  color: #b8860b;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.post-footer-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #b8860b;
}

.back-to-blog-link {
  color: #b8860b;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-to-blog-link:hover {
  color: #d4a017;
  transform: translateX(-5px);
}

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d1114 0%, #1a0a0f 100%);
  border-top: 3px solid #b8860b;
  padding: 2rem;
  z-index: 1500;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-title {
  font-size: 1.8rem;
  color: #b8860b;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cookie-text {
  color: #d4c5b9;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
  color: #1a0a0f;
}

.accept-all:hover {
  background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
  transform: translateY(-2px);
}

.customize {
  background: transparent;
  border: 2px solid #b8860b;
  color: #b8860b;
}

.customize:hover {
  background: rgba(184, 134, 11, 0.1);
}

.decline {
  background: transparent;
  border: 2px solid #999;
  color: #999;
}

.decline:hover {
  background: rgba(153, 153, 153, 0.1);
}

.cookie-policy-link {
  color: #b8860b;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.cookie-policy-link:hover {
  color: #d4a017;
}

@media (max-width: 968px) {
  .header-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-form-panel,
  .contact-info-panel,
  .post-content,
  .feature-card,
  .inspiration-container,
  .inspiration-letter {
    padding: 1rem;
  }
  .primary-nav .nav-list {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .content-wrapper,
  .story-wrapper,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .blog-post-card {
    grid-template-columns: 1fr;
  }
  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  }
  .section-heading,
  .cta-heading,
  .about-main-title {
    font-size: 2.5rem;
  }
  .post-main-title {
    font-size: 2.2rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
}
