/*
 * theme.css  —  CloudNineSaddlePads.net
 * Last tweaked: sometime in the fall, I think
 * Notes: merged old layout.css + colors.css into one file to simplify things
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=Oswald:wght@400;500;600&display=swap');

/* =============================================
   ROOT VARIABLES
   ============================================= */
:root {
  --brown-dark:    #6B3410;
  --brown-mid:     #8B4513;    /* saddlebrown, classic */
  --brown-light:   #A0522D;
  --tan:           #C68642;
  --cream:         #F5EDD6;
  --parchment:     #EDE0C4;
  --offwhite:      #FAF6EE;
  --charcoal:      #2C2015;
  --text:          #3A2810;
  --text-muted:    #7A6050;
  --border:        #D4B896;
  --shadow:        rgba(107, 52, 16, 0.14);
  --gold:          #C9A227;
  --sage:          #4A6741;
}

/* =============================================
   RESET / BASE
   ============================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  background-color: var(--offwhite);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.18s;
}

a:hover {
  color: var(--brown-dark);
  text-decoration: underline;
}

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

p { margin-bottom: 1.1rem; }

/* =============================================
   TOP BAR
   ============================================= */

.topbar {
  background-color: var(--charcoal);
  color: rgba(245, 237, 214, 0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 0;
}

.topbar a {
  color: var(--tan);
}

.topbar a:hover {
  color: var(--cream);
  text-decoration: none;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar-uws {
  background-color: var(--brown-dark) !important;
  box-shadow: 0 3px 14px var(--shadow);
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-uws .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream) !important;
  padding: 13px 0;
  letter-spacing: -0.01em;
}

.navbar-uws .navbar-brand span {
  color: var(--tan);
}

.navbar-uws .nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245, 237, 214, 0.82) !important;
  padding: 20px 13px !important;
  border-bottom: 3px solid transparent;
  transition: all 0.18s;
}

.navbar-uws .nav-link:hover,
.navbar-uws .nav-link.active {
  color: var(--cream) !important;
  border-bottom-color: var(--gold);
  background-color: rgba(0, 0, 0, 0.12);
}

/* dropdown */
.navbar-uws .dropdown-menu {
  background-color: var(--charcoal);
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  min-width: 215px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
  padding: 6px 0;
}

.navbar-uws .dropdown-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--parchment);
  padding: 10px 20px;
  text-transform: uppercase;
  transition: background 0.14s;
}

.navbar-uws .dropdown-item:hover {
  background-color: var(--brown-dark);
  color: var(--cream);
}

.navbar-uws .dropdown-divider {
  border-color: rgba(255,255,255,0.09);
}

.navbar-uws .navbar-toggler {
  border-color: rgba(245,237,214,0.45) !important;
}

.navbar-uws .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245%2C237%2C214%2C0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =============================================
   HERO BANNER
   ============================================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: linear-gradient(
    138deg,
    var(--charcoal)  0%,
    var(--brown-dark) 48%,
    var(--brown-light) 100%
  );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 22px,
    rgba(255,255,255,0.022) 22px,
    rgba(255,255,255,0.022) 24px
  );
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center 38%;
  opacity: 0.33;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--cream);
  text-shadow: 0 2px 14px rgba(0,0,0,0.52);
  line-height: 1.13;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.18rem);
  color: var(--parchment);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.88;
  max-width: 520px;
}

.hero-search {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 1.4rem;
  max-width: 560px;
}

.hero-search .form-control {
  border: none;
  background: var(--cream);
  color: var(--text);
  font-family: 'Source Serif 4', serif;
  padding: 11px 16px;
  font-size: 0.95rem;
  border-radius: 4px 0 0 4px;
}

.hero-search .btn-hsearch {
  background-color: var(--gold);
  border: none;
  color: var(--charcoal);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 11px 22px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.18s;
}

.hero-search .btn-hsearch:hover {
  background-color: var(--tan);
}

/* =============================================
   BREADCRUMB
   ============================================= */

.breadbar {
  background-color: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}

.breadcrumb {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb-item + .breadcrumb-item:before {
  color: var(--text-muted);
}

.breadcrumb-item a { color: var(--brown-light); }

.breadcrumb-item.active { color: var(--text-muted); }

/* =============================================
   PAGE HEADER BAND
   ============================================= */

.page-header-band {
  background: linear-gradient(135deg, var(--charcoal), var(--brown-dark));
  padding: 2.4rem 0;
}

.page-header-band h1 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0;
}

.page-header-band p {
  color: var(--parchment);
  opacity: 0.78;
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
}

/* =============================================
   SECTION TITLES
   ============================================= */

.sec-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.25rem;
}

.sec-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--tan));
  margin: 0 0 1.5rem;
  border-radius: 2px;
}

/* =============================================
   CATEGORY CARDS (homepage grid)
   ============================================= */

.cat-card {
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
  height: 100%;
  transition: transform 0.22s, box-shadow 0.22s;
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 26px var(--shadow);
}

.cat-card .cat-icon {
  background: linear-gradient(135deg, var(--brown-dark), var(--tan));
  color: var(--cream);
  font-size: 2rem;
  padding: 1.4rem;
  text-align: center;
}

.cat-card .cat-body {
  padding: 1rem;
}

.cat-card .cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.25rem;
}

.cat-card .cat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   ARTICLE CARDS
   ============================================= */

.art-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s;
}

.art-card:hover {
  box-shadow: 0 6px 20px var(--shadow);
}

.art-card .art-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--parchment), var(--cream));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--border);
  font-size: 2.8rem;
}

.art-card .art-body {
  padding: 1.15rem;
}

.art-meta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.art-card h5 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.art-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   CONTENT ARTICLE (inner pages)
   ============================================= */

.content-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.content-body h2 {
  font-size: 1.55rem;
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--parchment);
  color: var(--brown-dark);
}

.content-body h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.content-body h3 {
  font-size: 1.22rem;
  color: var(--brown-light);
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}

.content-body p {
  margin-bottom: 1.15rem;
}

.content-body ul,
.content-body ol {
  padding-left: 1.6rem;
  margin-bottom: 1.15rem;
}

.content-body li {
  margin-bottom: 0.35rem;
}

.content-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--parchment);
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--text-muted);
}

.content-body img {
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
  margin: 1rem 0;
}

/* tip / info box */
.tip-box {
  background: linear-gradient(135deg, #f0f7ee, #e8f3e6);
  border: 1px solid var(--sage);
  border-left: 4px solid var(--sage);
  border-radius: 6px;
  padding: 1rem 1.35rem;
  margin: 1.5rem 0;
}

.tip-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.warn-box {
  background: #fdf6e8;
  border: 1px solid var(--tan);
  border-left: 4px solid var(--tan);
  border-radius: 6px;
  padding: 1rem 1.35rem;
  margin: 1.5rem 0;
}

.warn-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tan);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

/* =============================================
   SIDEBAR
   ============================================= */

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.35rem;
  margin-bottom: 1.4rem;
}

.sidebar-widget h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  color: var(--brown-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.55rem;
  margin-bottom: 0.9rem;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  padding: 5px 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.88rem;
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: var(--text);
}

.sidebar-widget ul li a:hover {
  color: var(--brown-dark);
  text-decoration: none;
}

.sidebar-widget ul li:before {
  content: '\203A';
  color: var(--gold);
  margin-right: 7px;
  font-weight: bold;
}

/* =============================================
   FAQ
   ============================================= */

.faq-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brown-dark);
  background: var(--parchment);
  border-left: 4px solid var(--gold);
  padding: 0.7rem 1rem;
  margin: 2rem 0 0.8rem;
  border-radius: 0 5px 5px 0;
}

.accordion-button {
  font-family: 'Source Serif 4', serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--brown-dark) !important;
  background-color: var(--offwhite) !important;
  border: none;
  padding: 1rem 1.2rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--parchment) !important;
  color: var(--brown-dark) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(107,52,16,0.18) !important;
}

.accordion-button:after {
  filter: sepia(1) hue-rotate(335deg) saturate(0.8);
}

.accordion-item {
  border: 1px solid var(--border) !important;
  margin-bottom: 6px;
  border-radius: 6px !important;
  overflow: hidden;
}

.accordion-body {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 1rem 1.2rem;
  background: #fff;
  line-height: 1.72;
}

/* =============================================
   SEARCH PAGE
   ============================================= */

.search-result {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.18s;
}

.search-result:hover {
  box-shadow: 0 4px 16px var(--shadow);
}

.search-result h5 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.search-result h5 a {
  color: var(--brown-dark);
}

.result-path {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  color: var(--sage);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.result-snippet {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.portrait-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  border: 4px solid var(--parchment);
  max-width: 310px;
  width: 100%;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brown-dark), var(--tan));
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

.stat-box {
  text-align: center;
  padding: 1.1rem;
  background: var(--parchment);
  border-radius: 8px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
}

.stat-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.cinfo-row {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--parchment);
}

.cinfo-row:last-child {
  border-bottom: none;
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brown-dark), var(--tan));
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  line-height: 42px;
  color: var(--cream);
  font-size: 1.05rem;
  margin-right: 0.8rem;
  vertical-align: middle;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.clabel {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cvalue {
  font-size: 0.93rem;
  color: var(--text);
}

.form-label-uws {
  font-family: 'Oswald', sans-serif;
  font-size: 0.77rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brown-light);
  box-shadow: 0 0 0 0.19rem rgba(139,69,19,0.19);
}

.captcha-wrap {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.9rem 1.15rem;
}

.captcha-q {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text);
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

/* =============================================
   SITEMAP PAGE
   ============================================= */

.smap-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--brown-dark);
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 0.75rem;
}

.smap-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.smap-section ul li {
  padding: 4px 0;
  font-size: 0.88rem;
}

.smap-section ul li:before {
  content: '\203A';
  color: var(--gold);
  font-weight: bold;
  margin-right: 7px;
}

.smap-section ul li a {
  color: var(--text);
}

.smap-section ul li a:hover {
  color: var(--brown-dark);
  text-decoration: none;
}

/* =============================================
   ALERTS / MESSAGES
   ============================================= */

.alert-uws {
  background: var(--parchment);
  border: 1px solid var(--tan);
  border-left: 4px solid var(--brown-dark);
  color: var(--text);
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.alert-ok {
  background: #edf5ec;
  border: 1px solid #82b878;
  border-left: 4px solid var(--sage);
  color: var(--text);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.alert-err {
  background: #fdf0ef;
  border: 1px solid #e08080;
  border-left: 4px solid #b53030;
  color: var(--text);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn-uws {
  display: inline-block;
  background-color: var(--brown-dark);
  border: none;
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s, transform 0.13s;
  text-decoration: none !important;
}

.btn-uws:hover {
  background-color: var(--brown-light);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-uws-outline {
  display: inline-block;
  border: 2px solid var(--brown-dark);
  color: var(--brown-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none !important;
}

.btn-uws-outline:hover {
  background-color: var(--brown-dark);
  color: var(--cream);
}

.btn-gold {
  display: inline-block;
  background-color: var(--gold);
  border: none;
  color: var(--charcoal);
  font-family: 'Oswald', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none !important;
}

.btn-gold:hover {
  background-color: var(--tan);
  color: var(--charcoal);
}

/* =============================================
   TRUST BAR (homepage)
   ============================================= */

.trust-bar {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}

.trust-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--brown-dark);
  margin-right: 5px;
}

/* =============================================
   PAGINATION
   ============================================= */

.pagination .page-link {
  font-family: 'Oswald', sans-serif;
  color: var(--brown-dark);
  border-color: var(--border);
  font-size: 0.83rem;
}

.pagination .page-link:hover {
  background: var(--parchment);
  color: var(--brown-dark);
}

.pagination .page-item.active .page-link {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--cream);
}

/* =============================================
   FOOTER
   ============================================= */

.footer-main {
  background-color: var(--charcoal);
  color: var(--parchment);
  padding: 2.8rem 0 0;
}

.footer-main h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-main p,
.footer-main li {
  font-size: 0.87rem;
  color: rgba(237, 224, 196, 0.72);
}

.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main ul li {
  padding: 4px 0;
}

.footer-main a {
  color: rgba(237, 224, 196, 0.72);
  transition: color 0.15s;
}

.footer-main a:hover {
  color: var(--cream);
  text-decoration: none;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-brand span {
  color: var(--tan);
}

.footer-bottom {
  background: rgba(0,0,0,0.28);
  padding: 13px 0;
  margin-top: 2.2rem;
  font-size: 0.76rem;
  color: rgba(237, 224, 196, 0.45);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
}

.footer-bottom a {
  color: rgba(237, 224, 196, 0.55);
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--cream);
  font-size: 0.88rem;
  transition: background 0.18s;
  margin-right: 5px;
}

.social-links a:hover {
  background: var(--brown-light);
  text-decoration: none;
  color: var(--cream);
}

/* =============================================
   DIVIDER
   ============================================= */

.divider-fancy {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 2.2rem 0;
}

/* =============================================
   MISC UTILITY
   ============================================= */

.text-brown   { color: var(--brown-dark) !important; }
.text-tan     { color: var(--tan) !important; }
.text-gold    { color: var(--gold) !important; }
.bg-cream     { background-color: var(--cream) !important; }
.bg-parchment { background-color: var(--parchment) !important; }

.img-placeholder {
  background: linear-gradient(135deg, var(--parchment), var(--cream));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--border);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 991px) {

  .navbar-uws .nav-link {
    padding: 10px 14px !important;
    border-bottom: none;
  }

}

@media (max-width: 767px) {

  .hero { min-height: 330px; }
  .hero-title { font-size: 1.75rem; }
  .portrait-wrap { max-width: 230px; }

}

@media (max-width: 575px) {

  .hero-search { padding: 1rem; }
  .sec-title { font-size: 1.45rem; }

}

/*
 * TODO: dark mode toggle — maybe someday
 * .dark-mode body { background: #1a1209; color: #e8dfc8; }
 * .dark-mode .navbar-uws { background: #0f0a05 !important; }
 */
