@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #FAF8F5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #B8860B;
}

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

.cg-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 0.5rem;
  transition: top 0.15s ease;
}
.cg-skip-link:focus {
  top: 1rem;
}

.cg-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.cg-header__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.cg-header__brand {
  flex-shrink: 0;
}
.cg-header__logo-link {
  display: block;
  line-height: 0;
}
.cg-header__image, .cg-header__logo-link img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .cg-header__image, .cg-header__logo-link img {
    max-height: 56px;
  }
}
.cg-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .cg-header__nav {
    display: block;
  }
}
.cg-header__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cg-header__menu .current-menu-item a {
  color: #D4AF37;
  font-weight: 600;
}
.cg-header__menu a {
  color: #1a1a1a;
  padding: 0.5rem 0;
  font-weight: 500;
}
.cg-header__menu a:hover {
  color: #D4AF37;
}
.cg-header__listen {
  position: relative;
  flex-shrink: 0;
}
.cg-header__listen-trigger {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: #D4AF37;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.cg-header__listen-trigger:hover {
  background: #B8860B;
}
.cg-header__listen-trigger[aria-expanded=true] {
  background: #B8860B;
}
.cg-header__listen-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  min-width: 180px;
  padding: 0.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.cg-header__listen:hover .cg-header__listen-dropdown, .cg-header__listen-trigger[aria-expanded=true] + .cg-header__listen-dropdown, .cg-header__listen-dropdown.cg-header__listen-dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cg-header__listen-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: color 0.15s ease, background 0.15s ease;
}
.cg-header__listen-link:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
}
.cg-header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .cg-header__mobile-toggle {
    display: none;
  }
}
.cg-header__mobile-toggle-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
}
.cg-header__mobile-toggle-icon::before, .cg-header__mobile-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
}
.cg-header__mobile-toggle-icon::before {
  top: -8px;
}
.cg-header__mobile-toggle-icon::after {
  top: 8px;
}
.cg-header__nav--open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.cg-header__nav--open .cg-header__menu {
  flex-direction: column;
  align-items: stretch;
}

.cg-footer {
  background: #1a1a1a;
  color: #ffffff;
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
}
.cg-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.cg-footer__content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cg-footer__content {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}
.cg-footer__brand {
  max-width: 280px;
}
.cg-footer__image {
  max-height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.cg-footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.cg-footer__nav {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .cg-footer__nav {
    margin-top: 0;
  }
}
.cg-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.cg-footer__menu a {
  color: rgba(255, 255, 255, 0.85);
}
.cg-footer__menu a:hover {
  color: #D4AF37;
}
.cg-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cg-footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cg-main {
  min-height: 50vh;
  padding-bottom: 3rem;
}

.cg-front-page__content,
.entry-content,
.wp-block-post-content,
.is-root-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

[class*=wp-block]:not(.alignwide):not(.alignfull) {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

[class*=wp-block].alignwide,
.alignwide {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

[class*=wp-block].alignfull,
.alignfull {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  align-self: stretch;
}

.alignfull [class*=wp-block]:not(.alignwide):not(.alignfull),
.alignwide [class*=wp-block]:not(.alignwide):not(.alignfull) {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  align-self: auto;
}

.cg-block--padding-none {
  padding-top: 0;
  padding-bottom: 0;
}

.cg-block--padding-small {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.cg-block--padding-medium {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.cg-block--padding-large {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.cg-block--padding-xlarge {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.cg-content {
  padding: 2rem 0;
}
.cg-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.cg-content__header {
  margin-bottom: 2rem;
}
.cg-content__title {
  margin: 0 0 1rem;
}
.cg-content__empty {
  text-align: center;
  padding: 4rem 1rem;
}

.cg-posts {
  display: grid;
  gap: 2rem;
}

.cg-post-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .cg-post-card {
    display: grid;
    grid-template-columns: 300px 1fr;
  }
}
.cg-post-card__media {
  aspect-ratio: 16/10;
}
@media (min-width: 768px) {
  .cg-post-card__media {
    aspect-ratio: auto;
  }
}
.cg-post-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cg-post-card__body {
  padding: 1.5rem;
}
.cg-post-card__header {
  margin-bottom: 1rem;
}
.cg-post-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
}
.cg-post-card__title a {
  color: #1a1a1a;
}
.cg-post-card__title a:hover {
  color: #D4AF37;
}
.cg-post-card__meta {
  font-size: 0.875rem;
  color: #6b6b6b;
}
.cg-post-card__date {
  margin-right: 1rem;
}
.cg-post-card__excerpt {
  margin-bottom: 1rem;
  color: #2c2c2c;
}
.cg-post-card__link {
  font-weight: 600;
}
.cg-post-card__link::after {
  content: " →";
}

.cg-page,
.cg-single {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.cg-page__header {
  margin-bottom: 2rem;
}
.cg-page__title {
  margin: 0;
}
.cg-page__media {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.cg-page__image {
  width: 100%;
  height: auto;
}
.cg-page__body > *:last-child {
  margin-bottom: 0;
}

.cg-single__header {
  margin-bottom: 2rem;
}
.cg-single__title {
  margin: 0 0 1rem;
}
.cg-single__meta {
  font-size: 0.9375rem;
  color: #6b6b6b;
}
.cg-single__date {
  margin-right: 1rem;
}
.cg-single__media {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.cg-single__image {
  width: 100%;
  height: auto;
}
.cg-single__body > *:last-child {
  margin-bottom: 0;
}
.cg-single__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F0EDE8;
}
.cg-single__tags {
  font-size: 0.875rem;
  color: #6b6b6b;
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #F0EDE8;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cg-single-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px) {
  .cg-single-layout {
    grid-template-columns: 1fr 300px;
  }
}
.cg-single-layout__main {
  min-width: 0;
}
@media (min-width: 992px) {
  .cg-single-layout__sidebar {
    position: sticky;
    top: 2rem;
  }
}

.cg-sidebar-latest {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.cg-sidebar-latest__heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #D4AF37;
  color: #1a1a1a;
}
.cg-sidebar-latest__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cg-sidebar-latest__item:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid #F0EDE8;
}
.cg-sidebar-latest__link {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  text-decoration: none;
  color: #2c2c2c;
  transition: color 0.15s ease;
}
.cg-sidebar-latest__link:hover {
  color: #D4AF37;
}
.cg-sidebar-latest__link:hover .cg-sidebar-latest__title {
  color: #D4AF37;
}
.cg-sidebar-latest__thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 0.25rem;
  overflow: hidden;
}
.cg-sidebar-latest__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cg-sidebar-latest__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.cg-sidebar-latest__title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #1a1a1a;
  transition: color 0.15s ease;
}
.cg-sidebar-latest__date {
  font-size: 0.8rem;
  color: #6b6b6b;
}

.cg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.cg-btn--primary {
  background: #D4AF37;
  color: #1a1a1a;
}
.cg-btn--primary:hover {
  background: #B8860B;
  color: #ffffff;
}
.cg-btn--secondary {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}
.cg-btn--secondary:hover {
  background: #D4AF37;
  color: #1a1a1a;
}

.cg-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}
.cg-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.cg-hero__content {
  max-width: 600px;
  margin: 0 auto;
}
.cg-hero__logo {
  max-height: 80px;
  width: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.cg-hero__title {
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .cg-hero__title {
    font-size: 3rem;
  }
}
.cg-hero__tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
}
.cg-hero__cta {
  margin-top: 1.5rem;
}

.wp-block-heading {
  padding-left: 1rem;
}

.wp-block-contact-form-7-contact-form-selector {
  max-width: 100%;
}

.wpcf7 {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wpcf7-form > p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wpcf7-form label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}
.wpcf7-form label br {
  display: none;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 1rem;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #2c2c2c;
  background: #ffffff;
  border: 2px solid #F0EDE8;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-email::placeholder {
  color: #6b6b6b;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.wpcf7-form .wpcf7-text.wpcf7-not-valid,
.wpcf7-form .wpcf7-email.wpcf7-not-valid {
  border-color: #c0392b;
}
.wpcf7-form .wpcf7-textarea {
  width: 100%;
  max-width: 100%;
  min-height: 140px;
  padding: 1rem;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c2c2c;
  background: #ffffff;
  border: 2px solid #F0EDE8;
  border-radius: 0.5rem;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wpcf7-form .wpcf7-textarea::placeholder {
  color: #6b6b6b;
}
.wpcf7-form .wpcf7-textarea:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.wpcf7-form .wpcf7-textarea.wpcf7-not-valid {
  border-color: #c0392b;
}
.wpcf7-form .wpcf7-submit {
  align-self: flex-start;
  padding: 0.5rem 2rem;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #D4AF37;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.wpcf7-form .wpcf7-submit:hover {
  background: #B8860B;
  color: #ffffff;
}
.wpcf7-form .wpcf7-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}
.wpcf7-form > p:has(.wpcf7-submit) {
  position: relative;
  padding-top: 0.25rem;
}
.wpcf7-form .wpcf7-spinner {
  margin-left: 0.5rem;
  vertical-align: middle;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.875rem;
  color: #c0392b;
  margin-top: 0.25rem;
}
.wpcf7-form .wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  border: 2px solid #F0EDE8;
  background: #ffffff;
  color: #2c2c2c;
}
.wpcf7-form.sent .wpcf7-response-output {
  background: rgba(39, 174, 96, 0.1);
  border-color: #27ae60;
  color: #1e8449;
}
.wpcf7-form.failed .wpcf7-response-output, .wpcf7-form.aborted .wpcf7-response-output {
  background: rgba(192, 57, 43, 0.08);
  border-color: #c0392b;
  color: #922b21;
}
.wpcf7-form.invalid .wpcf7-response-output {
  background: rgba(243, 156, 18, 0.1);
  border-color: #f39c12;
  color: #b7791f;
}
.wpcf7-form .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cg-front-page .cg-front-page__content {
  padding: 3rem 0;
  overflow-x: visible;
}

.cg-content__container,
.entry-content,
.cg-page__body,
.cg-single__body {
  overflow-x: visible;
}

.pagination,
.nav-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination a, .pagination span,
.nav-links a,
.nav-links span {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 0.5rem;
  font-weight: 500;
}
.pagination .current,
.nav-links .current {
  background: #D4AF37;
  color: #1a1a1a;
}

/*# sourceMappingURL=main.css.map */
