/* ==========================================================================
   DELGADO HERITAGE LLC — Family Heritage Register stylesheet
   Palette: album-linen #F4F0E6, walnut-ink #33291F, heritage-rose #9E4A44,
            vellum-white #FBF9F2, archive-oak #4A3B2C, sepia-taupe #96866F,
            album-rule #DCD3BE
   No rgba(), no opacity decimals, no gradients on text.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.65;
  color: #33291F;
  background-color: #F4F0E6;
  overflow-x: hidden;
}

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

a {
  color: #9E4A44;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #4A3B2C;
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: #33291F;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.1em;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #4A3B2C;
  color: #FBF9F2;
  padding: 10px 16px;
  z-index: 40;
}

.skip-to-content:focus {
  left: 12px;
}

/* ==========================================================================
   PORTRAIT GALLERY RAIL — navigation as a gallery wall of framed portraits
   ========================================================================== */

.portraitrail {
  position: relative;
  background-color: #FBF9F2;
  border-bottom: 3px solid #4A3B2C;
  padding: 20px 0 26px;
}

.portraitrail-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.namebanner {
  position: relative;
  flex: 0 0 auto;
  background-color: #4A3B2C;
  color: #FBF9F2;
  border: 2px solid #33291F;
  border-radius: 3px;
  padding: 14px 22px 14px 20px;
  box-shadow: 5px 6px 0 0 #DCD3BE;
}

.namebanner-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #FBF9F2;
}

.namebanner-sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #DCD3BE;
  margin-top: 4px;
}

.pressed-rose {
  position: absolute;
  top: -14px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 2px solid #FBF9F2;
  box-shadow: 0 0 0 2px #4A3B2C;
}

.pressed-rose::before,
.pressed-rose::after {
  content: "";
  position: absolute;
  background-color: #FBF9F2;
}

.pressed-rose::before {
  left: 50%;
  top: 5px;
  width: 2px;
  height: 22px;
  margin-left: -1px;
  transform: rotate(24deg);
}

.pressed-rose::after {
  left: 50%;
  top: 5px;
  width: 2px;
  height: 22px;
  margin-left: -1px;
  transform: rotate(-24deg);
}

.picturerail {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  padding-top: 30px;
}

.picturerail::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #4A3B2C;
}

.galleryframe {
  position: relative;
  display: block;
  width: 92px;
  padding: 7px;
  background-color: #FBF9F2;
  border: 2px solid #4A3B2C;
  border-radius: 2px;
  box-shadow: 3px 4px 0 0 #DCD3BE;
  text-align: center;
  color: #33291F;
  text-decoration: none;
}

.galleryframe::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 2px;
  height: 12px;
  margin-left: -1px;
  background-color: #96866F;
}

.galleryframe-inner {
  display: block;
  border: 1px solid #DCD3BE;
  padding: 5px 2px 4px;
  background-color: #FBF9F2;
}

.galleryframe-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: #33291F;
}

.galleryframe-portrait {
  display: block;
  width: 34px;
  height: 34px;
  margin: 6px auto 0;
  border-radius: 50%;
  background-color: #96866F;
  border: 2px solid #4A3B2C;
  position: relative;
  overflow: hidden;
}

.galleryframe-portrait::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background-color: #33291F;
}

.galleryframe-portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 22px;
  height: 15px;
  margin-left: -11px;
  border-radius: 11px 11px 0 0;
  background-color: #33291F;
}

.galleryframe:nth-child(1) {
  margin-top: 0;
}

.galleryframe:nth-child(2) {
  margin-top: 16px;
}

.galleryframe:nth-child(3) {
  margin-top: 4px;
}

.galleryframe:nth-child(4) {
  margin-top: 20px;
}

.galleryframe:nth-child(5) {
  margin-top: 8px;
}

.galleryframe:hover,
.galleryframe:focus {
  background-color: #9E4A44;
  color: #FBF9F2;
  text-decoration: none;
}

.galleryframe:hover .galleryframe-label,
.galleryframe:focus .galleryframe-label {
  color: #FBF9F2;
}

.galleryframe:hover .galleryframe-inner,
.galleryframe:focus .galleryframe-inner {
  border-color: #FBF9F2;
}

.navtoggle {
  display: none;
  background-color: #4A3B2C;
  color: #FBF9F2;
  border: 2px solid #33291F;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 2px;
}

/* ==========================================================================
   LINEAGE TREE BAY — hero
   ========================================================================== */

.treebay {
  background-color: #F4F0E6;
  border-bottom: 1px solid #DCD3BE;
  padding: 58px 0 64px;
}

.treebay-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 46px;
  align-items: center;
}

.treebay-copy {
  flex: 0 0 55%;
  max-width: 55%;
}

.treebay-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #4A3B2C;
  background-color: #DCD3BE;
  border: 1px solid #96866F;
  padding: 6px 12px;
  margin-bottom: 20px;
}

.treebay-headline {
  font-size: 3.15rem;
  line-height: 1.08;
  margin: 0 0 22px;
  color: #33291F;
  font-weight: 700;
}

.treebay-headline .roseword {
  color: #9E4A44;
}

.treebay-lede {
  font-size: 1.08rem;
  color: #33291F;
  max-width: 46ch;
  margin-bottom: 30px;
}

.heirloom-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.heirloom-tag {
  position: relative;
  display: inline-block;
  background-color: #9E4A44;
  color: #FBF9F2;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px 15px 42px;
  border: 2px solid #33291F;
  border-radius: 2px;
  box-shadow: 4px 4px 0 0 #DCD3BE;
}

.heirloom-tag::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  border: 2px solid #FBF9F2;
  border-radius: 50%;
}

.heirloom-tag:hover,
.heirloom-tag:focus {
  background-color: #4A3B2C;
  color: #FBF9F2;
  text-decoration: none;
}

.heirloom-tag.tag-alt {
  background-color: #FBF9F2;
  color: #33291F;
}

.heirloom-tag.tag-alt::before {
  border-color: #9E4A44;
}

.heirloom-tag.tag-alt:hover,
.heirloom-tag.tag-alt:focus {
  background-color: #9E4A44;
  color: #FBF9F2;
}

.treebay-plate {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  background-color: #4A3B2C;
  border: 3px solid #33291F;
  border-radius: 3px;
  padding: 30px 24px 40px;
  box-shadow: 8px 8px 0 0 #DCD3BE;
}

.treebay-plate-label {
  display: block;
  text-align: center;
  color: #DCD3BE;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lineagetree {
  position: relative;
  height: 300px;
}

.branch-v {
  position: absolute;
  background-color: #DCD3BE;
}

.branch-v.trunk {
  left: 50%;
  top: 96px;
  width: 3px;
  height: 64px;
  margin-left: -1px;
}

.branch-v.stem {
  left: 50%;
  top: 156px;
  width: 3px;
  height: 40px;
  margin-left: -1px;
}

.branch-v.leftleg {
  left: 25%;
  top: 196px;
  width: 3px;
  height: 34px;
}

.branch-v.rightleg {
  left: 75%;
  top: 196px;
  width: 3px;
  height: 34px;
}

.branch-h {
  position: absolute;
  background-color: #DCD3BE;
}

.branch-h.rail {
  left: 25%;
  top: 193px;
  width: 50%;
  height: 3px;
}

.marriageknot {
  position: absolute;
  left: 50%;
  top: 92px;
  width: 15px;
  height: 15px;
  margin-left: -7px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 3px solid #FBF9F2;
}

.portraitcard {
  position: absolute;
  width: 86px;
  background-color: #FBF9F2;
  border: 2px solid #DCD3BE;
  border-radius: 2px;
  padding: 5px;
  text-align: center;
}

.portraitcard-face {
  height: 54px;
  background-color: #96866F;
  border: 1px solid #4A3B2C;
  position: relative;
  overflow: hidden;
}

.portraitcard-face::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 50%;
  background-color: #33291F;
}

.portraitcard-face::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 30px;
  height: 20px;
  margin-left: -15px;
  border-radius: 15px 15px 0 0;
  background-color: #33291F;
}

.portraitcard-name {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #33291F;
  padding-top: 4px;
  text-transform: uppercase;
}

.card-one {
  left: 6%;
  top: 10px;
}

.card-two {
  left: 38%;
  top: 10px;
}

.card-three {
  left: 70%;
  top: 10px;
}

.genrosette {
  position: absolute;
  left: 50%;
  top: 232px;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  border-radius: 50%;
  background-color: #FBF9F2;
  border: 3px solid #9E4A44;
  color: #9E4A44;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 46px;
  text-align: center;
  text-transform: uppercase;
}

.rosejoint {
  position: absolute;
  left: 25%;
  top: 184px;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 2px solid #FBF9F2;
  z-index: 2;
}

.rosejoint::before,
.rosejoint::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 2px;
  height: 14px;
  margin-left: -1px;
  background-color: #FBF9F2;
}

.rosejoint::before {
  transform: rotate(28deg);
}

.rosejoint::after {
  transform: rotate(-28deg);
}

.cornerpocket {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26px;
  background-color: #33291F;
  border-top: 2px solid #DCD3BE;
}

.cornerpocket::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  border-left: 16px solid #F4F0E6;
  border-bottom: 16px solid #33291F;
  width: 0;
  height: 0;
}

.cornerpocket::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 0;
  border-right: 16px solid #F4F0E6;
  border-bottom: 16px solid #33291F;
  width: 0;
  height: 0;
}

.waxglyph {
  position: absolute;
  right: 16px;
  bottom: 34px;
  width: 40px;
  height: 46px;
  background-color: #FBF9F2;
  border: 2px solid #33291F;
  border-radius: 3px;
}

.waxglyph::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 2px solid #33291F;
}

.waxglyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 26px;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background-color: #33291F;
  box-shadow: 0 5px 0 0 #33291F, 0 10px 0 0 #33291F;
}

/* ==========================================================================
   GENERATION REGISTER BANDS
   ========================================================================== */

.genstack {
  position: relative;
  padding: 54px 0 20px;
}

.genstack-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.genstack-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.genstack-intro {
  max-width: 70ch;
  margin-bottom: 34px;
  color: #33291F;
}

.genrail {
  position: absolute;
  left: 24px;
  top: 150px;
  bottom: 40px;
  width: 3px;
  background-color: #4A3B2C;
}

.genband {
  position: relative;
  display: flex;
  align-items: stretch;
  margin: 0 0 22px 48px;
  border: 1px solid #DCD3BE;
  border-radius: 2px;
  background-color: #FBF9F2;
}

.genband.band-tint {
  background-color: #F4F0E6;
}

.genband.band-deep {
  background-color: #4A3B2C;
  border-color: #33291F;
}

.genband.band-deep .registerpanel-title,
.genband.band-deep .registerpanel-text,
.genband.band-deep .registerpanel-text a {
  color: #FBF9F2;
}

.genband.band-deep .registerpanel {
  border-left-color: #96866F;
}

.genbranchline {
  position: absolute;
  left: -48px;
  top: 50%;
  width: 48px;
  height: 3px;
  background-color: #4A3B2C;
}

.gennode {
  position: absolute;
  left: -54px;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -7px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 3px solid #F4F0E6;
}

.generationblock {
  flex: 0 0 210px;
  background-color: #4A3B2C;
  color: #FBF9F2;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 3px solid #33291F;
}

.generationblock-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FBF9F2;
  line-height: 1;
}

.generationblock-eratag {
  display: inline-block;
  margin-top: 12px;
  align-self: flex-start;
  background-color: #96866F;
  color: #33291F;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
}

.registerpanel {
  flex: 1 1 auto;
  padding: 24px 28px 26px;
  border-left: 1px solid #DCD3BE;
  position: relative;
}

.registerpanel-chip {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 42px;
  height: 48px;
  background-color: #FBF9F2;
  border: 2px solid #DCD3BE;
  border-radius: 2px;
}

.registerpanel-chip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 13px;
  height: 13px;
  margin-left: -7px;
  border-radius: 50%;
  background-color: #33291F;
}

.registerpanel-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 24px;
  height: 17px;
  margin-left: -12px;
  border-radius: 12px 12px 0 0;
  background-color: #33291F;
}

.registerpanel-flowerspot {
  position: absolute;
  right: 78px;
  top: 26px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 2px solid #FBF9F2;
}

.registerpanel-title {
  font-size: 1.3rem;
  margin: 0 0 8px;
  padding-right: 96px;
}

.registerpanel-text {
  margin: 0 0 0.8em;
  max-width: 82ch;
}

.registerpanel-link {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9E4A44;
  border-bottom: 2px solid #9E4A44;
  padding-bottom: 2px;
}

.genband.band-deep .registerpanel-link {
  color: #FBF9F2;
  border-bottom-color: #DCD3BE;
}

/* ==========================================================================
   KEEPERSHIP ACCENT STRIP
   ========================================================================== */

.keeperstrip {
  background-color: #9E4A44;
  color: #FBF9F2;
  border-top: 2px solid #DCD3BE;
  border-bottom: 2px solid #DCD3BE;
  padding: 34px 0;
}

.keeperstrip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.keeperstrip-rose {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #FBF9F2;
  border: 2px solid #4A3B2C;
  position: relative;
  flex: 0 0 auto;
}

.keeperstrip-rose::before,
.keeperstrip-rose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 2px;
  height: 18px;
  margin-left: -1px;
  background-color: #9E4A44;
}

.keeperstrip-rose::before {
  transform: rotate(26deg);
}

.keeperstrip-rose::after {
  transform: rotate(-26deg);
}

.keeperstrip-text {
  font-size: 1.06rem;
  margin: 0;
  color: #FBF9F2;
  max-width: 78ch;
}

.keeperstrip-text strong {
  letter-spacing: 0.06em;
}

/* ==========================================================================
   SUPPORTING SECTIONS
   ========================================================================== */

.contentsection {
  padding: 60px 0;
}

.contentsection.section-vellum {
  background-color: #FBF9F2;
  border-top: 1px solid #DCD3BE;
  border-bottom: 1px solid #DCD3BE;
}

.contentsection.section-linen {
  background-color: #F4F0E6;
}

.contentsection-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.section-lede {
  max-width: 72ch;
  margin-bottom: 30px;
}

.two-column {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column-main {
  flex: 1 1 58%;
  min-width: 300px;
}

.column-side {
  flex: 1 1 34%;
  min-width: 260px;
  background-color: #4A3B2C;
  color: #FBF9F2;
  border: 2px solid #33291F;
  border-radius: 3px;
  padding: 26px 26px 28px;
}

.column-side h3 {
  color: #FBF9F2;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.column-side p {
  color: #FBF9F2;
}

.column-side a {
  color: #DCD3BE;
  text-decoration: underline;
}

.column-side a:hover {
  color: #FBF9F2;
}

.heirloomtagstring {
  position: relative;
  background-color: #FBF9F2;
  color: #33291F;
  border: 1px solid #DCD3BE;
  border-radius: 2px;
  padding: 12px 14px 12px 38px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.heirloomtagstring::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border: 2px solid #9E4A44;
  border-radius: 50%;
}

.heirloomtagstring::after {
  content: "";
  position: absolute;
  left: 20px;
  top: -8px;
  width: 2px;
  height: 10px;
  background-color: #96866F;
}

.accentpanel {
  border-left: 5px solid #9E4A44;
  background-color: #FBF9F2;
  padding: 18px 22px;
  margin: 0 0 22px;
}

.accentpanel p {
  margin: 0;
}

.splitpromise {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.promiseledger {
  flex: 1 1 44%;
  min-width: 260px;
  border: 2px solid #DCD3BE;
  border-radius: 3px;
  background-color: #FBF9F2;
  padding: 20px 22px;
}

.promiseledger h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.promiseledger ul {
  margin: 0;
  padding-left: 20px;
}

.promiseledger li {
  margin-bottom: 8px;
}

.accordionlist {
  border: 1px solid #DCD3BE;
  border-radius: 3px;
  overflow: hidden;
}

.accordionitem {
  border-bottom: 1px solid #DCD3BE;
  background-color: #FBF9F2;
}

.accordionitem:last-child {
  border-bottom: none;
}

.accordiontrigger {
  width: 100%;
  text-align: left;
  background-color: #FBF9F2;
  color: #33291F;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 18px 16px 44px;
  cursor: pointer;
  position: relative;
}

.accordiontrigger::before {
  content: "+";
  position: absolute;
  left: 18px;
  top: 15px;
  color: #9E4A44;
  font-size: 1.1rem;
}

.accordionitem.open .accordiontrigger::before {
  content: "-";
}

.accordionpanel {
  max-height: 0;
  overflow: hidden;
  background-color: #F4F0E6;
}

.accordionitem.open .accordionpanel {
  max-height: 420px;
}

.accordionpanel-inner {
  padding: 16px 18px 18px 44px;
  color: #33291F;
}

.ctaband {
  background-color: #4A3B2C;
  color: #FBF9F2;
  border-top: 3px solid #9E4A44;
  border-bottom: 3px solid #9E4A44;
  padding: 48px 0;
}

.ctaband-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.ctaband h2 {
  color: #FBF9F2;
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.ctaband p {
  color: #FBF9F2;
  margin: 0;
  max-width: 60ch;
}

.ctaband-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.servicebloco {
  border: 2px solid #DCD3BE;
  border-radius: 3px;
  background-color: #FBF9F2;
  padding: 28px 30px;
  margin-bottom: 26px;
  position: relative;
}

.servicebloco:nth-child(even) {
  background-color: #F4F0E6;
}

.servicebloco-num {
  position: absolute;
  right: 24px;
  top: 20px;
  background-color: #4A3B2C;
  color: #FBF9F2;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 5px 10px;
  border-radius: 2px;
}

.servicebloco h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  padding-right: 110px;
}

.servicebloco .serviceflower {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #9E4A44;
  margin-right: 8px;
  vertical-align: middle;
}

.processsteps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.processstep {
  flex: 1 1 21%;
  min-width: 200px;
  background-color: #FBF9F2;
  border: 1px solid #DCD3BE;
  border-top: 4px solid #9E4A44;
  border-radius: 3px;
  padding: 18px 18px 20px;
}

.processstep-num {
  display: block;
  font-size: 1.5rem;
  color: #9E4A44;
  font-weight: 700;
  margin-bottom: 6px;
}

.processstep h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

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

.contactgrid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contactform-wrap {
  flex: 1 1 56%;
  min-width: 300px;
  background-color: #FBF9F2;
  border: 2px solid #DCD3BE;
  border-radius: 3px;
  padding: 28px 30px;
}

.contactdetails {
  flex: 1 1 36%;
  min-width: 280px;
  background-color: #4A3B2C;
  color: #FBF9F2;
  border: 2px solid #33291F;
  border-radius: 3px;
  padding: 26px 28px;
}

.contactdetails h3 {
  color: #FBF9F2;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contactdetails p,
.contactdetails li {
  color: #FBF9F2;
}

.contactdetails a {
  color: #DCD3BE;
  text-decoration: underline;
}

.contactdetails a:hover {
  color: #FBF9F2;
}

.detaillist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.detaillist li {
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid #96866F;
  position: relative;
}

.detaillist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 2px solid #FBF9F2;
}

.formfield {
  margin-bottom: 18px;
}

.formfield label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  color: #33291F;
}

.formfield input,
.formfield select,
.formfield textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: #33291F;
  background-color: #F4F0E6;
  border: 2px solid #96866F;
  border-radius: 2px;
  padding: 11px 12px;
}

.formfield textarea {
  min-height: 150px;
  resize: vertical;
}

.formfield input:focus,
.formfield select:focus,
.formfield textarea:focus {
  border-color: #9E4A44;
  outline: 2px solid #9E4A44;
}

.formsubmit {
  background-color: #9E4A44;
  color: #FBF9F2;
  border: 2px solid #33291F;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
}

.formsubmit:hover,
.formsubmit:focus {
  background-color: #4A3B2C;
  color: #FBF9F2;
}

.formnote {
  font-size: 0.84rem;
  color: #33291F;
  margin-top: 12px;
}

.hourslist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.hourslist li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #96866F;
  padding: 8px 0;
}

.faqblock {
  margin-top: 20px;
}

/* ==========================================================================
   ALBUM BACK COVER — footer
   ========================================================================== */

.backcover {
  position: relative;
  background-color: #4A3B2C;
  color: #FBF9F2;
  border-top: 3px solid #4A3B2C;
  padding: 40px 0 0;
}

.backcover-endpaper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #DCD3BE;
}

.backcover-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px 0;
}

.backcover-frames {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.backcover-frame {
  flex: 1 1 26%;
  min-width: 220px;
  background-color: #FBF9F2;
  color: #33291F;
  border: 2px solid #33291F;
  border-radius: 3px;
  padding: 20px 22px;
}

.backcover-frame h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.backcover-frame ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.backcover-frame li {
  margin-bottom: 8px;
}

.backcover-frame a {
  color: #33291F;
  border-bottom: 1px solid #DCD3BE;
}

.backcover-frame a:hover,
.backcover-frame a:focus {
  color: #9E4A44;
  border-bottom-color: #9E4A44;
}

.copperplate {
  background-color: #FBF9F2;
  color: #33291F;
  border: 2px solid #33291F;
  border-radius: 3px;
  padding: 18px 22px;
  margin-bottom: 26px;
}

.copperplate h3 {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.copperplate p {
  margin: 0;
}

.backcover-base {
  border-top: 1px solid #96866F;
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footercontact {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
}

.footercontact a {
  color: #DCD3BE;
  text-decoration: underline;
}

.footercontact a:hover {
  color: #FBF9F2;
}

.footerrose {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #9E4A44;
  border: 2px solid #DCD3BE;
  position: relative;
  flex: 0 0 auto;
}

.footerrose::before,
.footerrose::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  width: 2px;
  height: 13px;
  margin-left: -1px;
  background-color: #DCD3BE;
}

.footerrose::before {
  transform: rotate(26deg);
}

.footerrose::after {
  transform: rotate(-26deg);
}

.footercopy {
  font-size: 0.84rem;
  color: #DCD3BE;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 980px) {
  .treebay-inner {
    flex-wrap: wrap;
  }

  .treebay-copy,
  .treebay-plate {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .treebay-headline {
    font-size: 2.5rem;
  }

  .genrail {
    display: none;
  }

  .genband {
    margin-left: 0;
    flex-direction: column;
  }

  .genbranchline,
  .gennode {
    display: none;
  }

  .generationblock {
    flex: 1 1 auto;
    border-right: none;
    border-bottom: 3px solid #33291F;
  }
}

@media (max-width: 760px) {
  .navtoggle {
    display: inline-block;
    margin-top: 20px;
  }

  .picturerail {
    display: none;
    width: 100%;
    justify-content: flex-start;
    padding-top: 34px;
  }

  .portraitrail.nav-open .picturerail {
    display: flex;
  }

  .treebay-headline {
    font-size: 2rem;
  }

  .ctaband-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gentitle-block {
    padding-right: 0;
  }
}
