@charset "UTF-8";
/*
 * Emily's Nook — static reconstruction stylesheet
 * Reproduces the look of the original site (WordPress + Twenty Twelve child theme
 * by Webempresa) as clean, hand-written CSS. No archived theme code is copied
 * verbatim; the values below were measured from the archived snapshot.
 *
 * Palette taken from the archive:
 *   page background  #ff0000  (WordPress custom background)
 *   container        #ccff00  (child theme .site background)
 *   body text        #444
 *   nav / links      #5e5e5e / #21759b
 *   captions         #757575
 */

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

html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure, ul, ol, dl, dd, table, form, fieldset {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

table { border-collapse: collapse; border-spacing: 0; }

/* ------------------------------------------------------------ typography */
body {
  background-color: #ff0000;
  color: #444;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.714285714;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { clear: both; font-weight: bold; line-height: 1.4; }

p { margin-bottom: 24px; }

a { color: #21759b; text-decoration: none; }
a:visited { color: #9f9f9f; }
a:hover,
a:focus { color: #0f3647; text-decoration: underline; }

strong, b { font-weight: bold; }
em, i { font-style: italic; }

/* skip link, visible on focus only */
.assistive-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  width: 1px;
  height: 1px;
}
.assistive-text:focus {
  clip: auto !important;
  display: block;
  top: 5px;
  left: 5px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font-size: 12px;
  text-decoration: none;
}

/* ------------------------------------------------------------- container */
.site {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  background: #ccff00 url("../images/arriba.gif") left top no-repeat;
}

@media screen and (min-width: 960px) {
  .site {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 0 40px;
    box-shadow: 0 2px 6px rgba(100, 100, 100, .3);
  }
}

/* the bottom-right page-curl graphic (was #abajo in the original theme) */
#abajo {
  height: 91px;
  margin: 0 -40px 0 0;
  background: #ccff00 url("../images/abajo.gif") right bottom no-repeat;
}
@media screen and (max-width: 959px) {
  #abajo { margin-right: -24px; height: 60px; background-size: auto 60px; }
}

/* ---------------------------------------------------------------- header */
.site-header { padding: 24px 0; }

/* The original hid the text title/description: the wordmark lives inside
   arriba.gif. Kept in the markup for SEO + screen readers. */
.site-title,
.site-description {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.site-header .header-spacer { height: 76px; }

/* ------------------------------------------------------------ navigation */
.main-navigation {
  margin-top: 24px;
  text-align: center;
}

.main-navigation .nav-menu {
  display: inline-block;
  width: 100%;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  text-align: left;
}

.main-navigation li {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.42857143;
}

.main-navigation li a {
  display: inline-block;
  padding: 0 12px 0 0;
  color: #5e5e5e;
  text-decoration: none;
  white-space: nowrap;
}

.main-navigation li a:hover,
.main-navigation li a:focus { color: #21759b; }

.main-navigation .current-menu-item > a { font-weight: bold; color: #444; }

/* dropdowns */
.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  display: none;
  min-width: 220px;
  margin: 0;
  padding: 0;
  border: 1px solid #ededed;
  background-color: #ccff00;
  box-shadow: 0 2px 6px rgba(100, 100, 100, .3);
}

.main-navigation ul ul ul { top: 0; left: 100%; }

.main-navigation ul li:hover > ul,
.main-navigation ul li:focus-within > ul { display: block; }

.main-navigation ul ul li {
  display: block;
  margin: 0;
  float: none;
}

.main-navigation ul ul li a {
  display: block;
  padding: 8px 12px;
  white-space: normal;
}

.main-navigation ul ul li a:hover,
.main-navigation ul ul li a:focus {
  background: #d9ff4d;
  color: #444;
}

.main-navigation .menu-item-has-children > a::after {
  content: " \25be";
  font-size: 10px;
}

/* mobile menu button */
.menu-toggle {
  display: none;
  margin: 0 auto;
  padding: 6px 10px;
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  background-color: #e6e6e6;
  color: #7c7c7c;
  font-family: inherit;
  font-size: 11px;
  line-height: 1.428571429;
  cursor: pointer;
}
.menu-toggle:hover { color: #5e5e5e; }

/* --------------------------------------------------------------- content */
.site-content { margin: 24px 0 0; }

.entry-header .entry-title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  color: #444;
}

.entry-content { margin-bottom: 24px; }

.entry-content h2 {
  margin: 24px 0 12px;
  font-size: 16px;
  line-height: 1.5;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 24px 24px;
  list-style: disc;
}
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 6px; }

.entry-content table { margin-bottom: 24px; width: 100%; }
.entry-content td { padding: 0; vertical-align: top; }

/* home page two-column intro (was a table in the original) */
.home-intro { display: table; width: 100%; }
.home-intro .col-visual,
.home-intro .col-text { display: table-cell; vertical-align: top; }
.home-intro .col-visual { width: 55%; padding-right: 24px; }
.home-intro .col-text { width: 45%; text-align: justify; font-size: 16px; }
.home-intro .col-text p { margin-bottom: 16px; }

.home-intro .promo { display: block; margin-bottom: 24px; text-decoration: none; }
.home-intro .promo strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #21759b;
}
.home-intro .promo:hover strong { color: #0f3647; }
.home-intro .promo img { display: block; }

/* captioned product images (WordPress .wp-caption) */
.wp-caption {
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 4px;
  text-align: center;
}
.wp-caption img { display: inline-block; height: auto; }
.wp-caption-text {
  margin: 0;
  padding: 8px 0 0;
  color: #757575;
  font-size: 12px;
  font-style: italic;
  line-height: 2;
}

/* thumbnail galleries */
.thumb-gallery {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 0;
}
.thumb-gallery li {
  display: inline-block;
  margin: 0 12px 12px 0;
  vertical-align: top;
}
.thumb-gallery a { display: block; line-height: 0; }
.thumb-gallery img {
  display: block;
  border: 1px solid rgba(0, 0, 0, .12);
}
.thumb-gallery a:hover img,
.thumb-gallery a:focus img { border-color: #444; }

/* address / contact blocks */
.contact-block p { margin-bottom: 12px; }
.legal-note { font-size: 12px; line-height: 1.8; color: #555; }

.map-embed { margin-bottom: 24px; }
.map-embed iframe {
  display: block;
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: 0;
}

/* ----------------------------------------------------------------- forms */
.contact-form { max-width: 620px; }
.contact-form p { margin-bottom: 16px; }

.contact-form label {
  display: block;
  font-size: 13px;
  line-height: 1.8;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  max-width: 400px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fafafa;
  color: #333;
  font-family: inherit;
  font-size: 14px;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #21759b;
  outline-offset: 1px;
  background: #fff;
}

.contact-form .field-consent { font-size: 13px; }
.contact-form .field-consent input { margin-right: 6px; }

.contact-form .radio-row {
  margin: 0 0 20px;
  padding: 10px 12px;
  border: 1px solid #d7d7d7;
  background: rgba(255, 255, 255, .35);
}

.contact-form .radio-row legend {
  padding: 0 4px;
  font-size: 12px;
  color: #555;
}

.contact-form .radio-row label {
  display: inline-block;
  margin-right: 16px;
  font-size: 13px;
}

.contact-form input[type="submit"] {
  padding: 6px 14px;
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  background-color: #e6e6e6;
  color: #7c7c7c;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
}
.contact-form input[type="submit"]:hover { color: #5e5e5e; }

.form-error {
  display: block;
  margin-top: 4px;
  color: #a00;
  font-size: 12px;
}
.form-status {
  margin: 16px 0 0;
  padding: 10px 12px;
  border: 1px solid #ededed;
  background: #fff;
  font-size: 13px;
}
.form-status[hidden] { display: none; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  clear: both;
  margin-top: 24px;
  padding: 24px 0 0;
  font-size: 12px;
  line-height: 2;
  color: #444;
  text-align: center;
}
.site-footer a { color: #686868; }
.site-footer .footer-legal { display: block; margin-top: 4px; }
.site-footer .footer-legal a { margin-right: 10px; }

/* ------------------------------------------------------------ cookie bar */
.cookie-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 12px 16px;
  background: rgba(0, 0, 0, .85);
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar .cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar a { color: #ccff00; text-decoration: underline; }
.cookie-bar button {
  padding: 6px 16px;
  border: 0;
  border-radius: 3px;
  background: #ccff00;
  color: #222;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

/* ------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .82);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, .5);
}
.lightbox .lb-close {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 4px 12px;
  border: 0;
  border-radius: 3px;
  background: #ccff00;
  color: #222;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  cursor: pointer;
}
.lightbox .lb-caption {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  padding: 0 24px;
  color: #fff;
  font-size: 12px;
  font-style: italic;
  text-align: center;
}
