:root {
  --ivory: #FAF7F2;
  --ivory-deep: #F4EFE7;
  --powder: #EDD6DA;
  --powder-light: rgba(237,214,218,.26);
  --gold: #B89A5C;
  --gold-light: rgba(184,154,92,.16);
  --gold-line: rgba(184,154,92,.36);
  --wine: #5C1038;
  --wine-muted: rgba(92,16,56,.68);
  --wine-soft: rgba(92,16,56,.42);
  --wine-faint: rgba(92,16,56,.10);
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Raleway', 'Segoe UI', Arial, sans-serif;
  --max: 1160px;
  --r: 12px;
  --card: rgba(255,255,255,.70);
  --shadow-sm: 0 4px 24px rgba(92,16,56,.055);
  --shadow-md: 0 8px 40px rgba(92,16,56,.08);
}

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

html {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--wine);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

[class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  max-width: 100%;
  flex: 0 0 100%;
}

.col-6 {
  max-width: 50%;
  flex: 0 0 50%;
}

.col-4 {
  max-width: 33.33%;
  flex: 0 0 33.33%;
}

.col-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

@media (min-width: 768px) {
  .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-md-4 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }
  .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-6 {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .col-lg-4 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }
  .col-lg-3 {
    max-width: 25%;
    flex: 0 0 25%;
  }
  .col-lg-12 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.1;
  color: var(--wine);
  font-family: var(--font-serif);
}

h2 {
  font-size: 40px;
  margin: 0 0 18px;
}

h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

h2 em, h3 em {
  font-style: italic;
}

p {
  color: var(--wine-muted);
  margin: 0 0 12px;
}

section {
  padding: 96px 0;
}

section + section {
  border-top: 1px solid var(--wine-faint);
}

.site-main > section:nth-child(even) {
  background: var(--ivory-deep);
}

.center {
  text-align: center;
}

.center .narrow {
  max-width: 740px;
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand .logo {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1.5px solid var(--gold-line);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}
.brand .logo svg, .brand .logo img {
  width: 38px;
  height: 38px;
  display: block;
  margin: 0;
}

.brand-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-muted);
}

.menu {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.04em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li {
  margin: 0;
  padding: 0;
}
.menu a {
  display: block;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--wine-muted);
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
}
.menu a:hover {
  color: var(--wine);
  background: var(--powder-light);
  text-decoration: none;
}
.menu .current-menu-item > a,
.menu .current-page-ancestor > a {
  background: var(--powder-light);
  color: var(--wine);
  font-weight: 600;
}

.account {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wine-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.account:hover {
  color: var(--wine);
  background: var(--powder-light);
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-inner {
    grid-template-columns: auto 1fr;
    padding: 14px 0;
  }
  .menu {
    justify-content: flex-start;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  border: none;
}
.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: #FAF7F2;
  border: none;
  box-shadow: 0 4px 18px rgba(184, 154, 92, 0.26);
}
.btn-gold:hover {
  background: #a88a50;
}

.btn-transparent {
  background: transparent;
  border: 1.5px solid var(--gold-line);
}
.btn-transparent:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--gold-line);
}
.btn-outline:hover {
  background: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--wine-muted);
  border: 1px solid var(--wine-faint);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--powder-light);
  color: var(--wine);
}

.d-flex {
  display: flex;
}

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

.site-main {
  min-height: calc(100vh - 90px);
}

.footer, .site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--wine-faint);
  background: var(--ivory);
  color: var(--wine-muted);
  font-size: 0.9rem;
}

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

.footer-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--wine);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 {
  transition-delay: 0.1s;
}
.reveal.delay-2 {
  transition-delay: 0.2s;
}
.reveal.left {
  transform: translateX(-20px);
  opacity: 0;
}
.reveal.left.in {
  transform: translateX(0);
  opacity: 1;
}
.reveal.right {
  transform: translateX(20px);
  opacity: 0;
}
.reveal.right.in {
  transform: translateX(0);
  opacity: 1;
}
.reveal.scale {
  transform: translateY(12px) scale(0.985);
}
.reveal.scale.in {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
textarea.wpcf7-form-control.wpcf7-textarea {
  max-height: 100px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--wine-faint);
  background: rgba(255, 255, 255, 0.88);
  color: var(--wine);
  font-size: 1rem;
  margin-bottom: 10px;
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 3px var(--gold-light);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 13px;
  color: var(--wine-muted);
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 18px;
  }
}

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