:root {
  --sage: #c7b09d;
  --sage-dark: #4b3e35;
  --cream: #f4eee7;
  --white: #fbf8f4;
  --text: #4f4841;
  --muted: #766d65;
  --accent: #b99a82;
  --line: #e7dcd1;
  --shadow: 0 18px 48px rgba(91, 68, 52, .11);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  font-family: Georgia, "DM Serif Display", Lora, serif;
  color: var(--sage-dark);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.45rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.35rem; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section.soft { background: var(--cream); }
.eyebrow {
  color: var(--sage-dark);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .7rem;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 720px; }
.grid { display: grid; gap: 24px; }
.two { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.page-hero {
  padding: 150px 0 76px;
  background: linear-gradient(120deg, rgba(245,241,234,.92), rgba(252,251,248,.86)), url("../images/hero-floral.jpeg") center/cover;
}
.page-hero .lead { max-width: 760px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--sage-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(252, 251, 248, .84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,221,210,.5);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(41,68,58,.08); background: rgba(252,251,248,.96); }
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sage-dark);
  font-weight: 800;
  font-size: 1.08rem;
}
.brand-logo {
  width: min(280px, 54vw);
  height: 54px;
  object-fit: contain;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  font-family: Georgia, serif;
}
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  color: var(--sage-dark);
  font-weight: 700;
  font-size: .94rem;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #6f866f; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  color: var(--sage-dark);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--sage-dark); color: #fff; }
.btn.secondary { border-color: var(--sage); color: var(--sage-dark); background: rgba(252,251,248,.78); }
.btn.light { background: var(--white); color: var(--sage-dark); }
.btn.full { width: 100%; }
.link-arrow { color: var(--sage-dark); font-weight: 800; }

.hero {
  min-height: 94vh;
  padding: 138px 0 74px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(252,251,248,.98) 0%, rgba(252,251,248,.88) 48%, rgba(245,241,234,.35) 100%), url("../images/hero-floral.jpeg") center/cover;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 18px; }
.trust { color: var(--sage-dark); font-weight: 700; }
.hero-card {
  background: rgba(252,251,248,.86);
  border: 1px solid rgba(229,221,210,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  width: min(430px, 100%);
  justify-self: end;
}
.hero-card img { height: 430px; width: 100%; object-fit: cover; object-position: center 24%; border-radius: var(--radius); margin-bottom: 18px; }
.hero-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; }
.hero-card dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 800; }
.hero-card dd { margin: 0; color: var(--sage-dark); font-weight: 800; }

.about-photo {
  margin: 0;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photo figcaption {
  margin-top: 12px;
  color: var(--sage-dark);
  font-weight: 800;
}

.card, .service-card, .team-card, .blog-card, .testimonial, .booking-box, .contact-panel, .legal-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(41,68,58,.06);
}
.card, .service-card, .testimonial, .booking-box, .contact-panel, .legal-box { padding: 24px; }
.card:hover, .service-card:hover, .team-card:hover, .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card, .service-card, .team-card, .blog-card { transition: transform .2s ease, box-shadow .2s ease; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(143,169,154,.18);
  color: var(--sage-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
}
.service-card p, .card p, .team-card p, .blog-card p { color: var(--muted); }
.service-card h2, .card h2, .team-card h2, .blog-card h2 { font-size: 1.35rem; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-head .lead { margin-bottom: 0; }

.timeline { counter-reset: steps; }
.step {
  position: relative;
  padding-left: 72px;
}
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-dark);
  color: #fff;
  font-weight: 900;
}
.team-card { overflow: hidden; }
.team-card img, .blog-card img { width: 100%; height: 270px; object-fit: cover; }
.team-card img { object-position: center 20%; }
.team-body, .blog-body { padding: 22px; }
.meta { color: var(--sage-dark); font-size: .9rem; font-weight: 800; }
.needs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.need {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--sage-dark);
  font-weight: 800;
}
.cta-band {
  background: var(--sage-dark);
  color: #fff;
  padding: 56px 0;
}
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.78); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }

.testimonial { display: none; min-height: 210px; }
.testimonial.active { display: block; }
.testimonial-controls { display: flex; gap: 10px; margin-top: 18px; }
.circle-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-dark);
  cursor: pointer;
}
.compare { align-items: stretch; }
.compare .card { display: flex; flex-direction: column; }
.compare ul, .footer ul, .legal-box ul { padding-left: 1.1rem; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-button {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--sage-dark);
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
}
.faq-button::after { content: "+"; font-size: 1.4rem; }
.faq-button[aria-expanded="true"]::after { content: "-"; }
.faq-panel { display: none; padding: 0 0 20px; color: var(--muted); }
.faq-panel.open { display: block; }

.blog-tools {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.search-input, input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
}
.search-input { max-width: 380px; }
textarea { min-height: 132px; resize: vertical; }
label { display: block; color: var(--sage-dark); font-weight: 800; margin-bottom: 7px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.form-grid .wide { grid-column: 1 / -1; }
.error { min-height: 20px; color: #9c3d2f; font-size: .88rem; margin-top: 4px; }
.success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(143,169,154,.18);
  color: var(--sage-dark);
  font-weight: 800;
}
.success.show { display: block; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.notice {
  border-left: 4px solid var(--accent);
  background: rgba(201,169,141,.14);
  padding: 16px;
  border-radius: var(--radius);
}
.map {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(.8);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.legal-index {
  position: sticky;
  top: 106px;
}
.legal-index h2,
.legal-content h2 {
  font-size: 1.45rem;
}
.legal-index ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.legal-index li {
  margin-bottom: 10px;
}
.legal-content > * + h2 {
  margin-top: 34px;
}
.table-wrap {
  overflow-x: auto;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: var(--cream);
  color: var(--sage-dark);
}
.legal-table code {
  white-space: nowrap;
}

.article-hero {
  background:
    linear-gradient(120deg, rgba(244,238,231,.95), rgba(251,248,244,.9)),
    url("../images/hero-floral.jpeg") center/cover;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.article-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 106px;
}
.article-sidebar nav {
  display: grid;
  gap: 10px;
}
.article-sidebar a {
  color: var(--sage-dark);
  font-weight: 700;
}
.article-content section + section {
  margin-top: 34px;
}
.article-content h2,
.article-sidebar h2,
.article-cta h2 {
  font-size: 1.5rem;
}
.article-content p {
  font-size: 1.05rem;
  color: var(--text);
}
.article-cta {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-cta .btn {
  margin: 8px 10px 0 0;
}

.footer {
  background: #21372f;
  color: rgba(255,255,255,.78);
  padding: 64px 0 26px;
}
.footer h2, .footer h3, .footer .brand { color: #fff; }
.footer .brand-logo {
  width: min(320px, 70vw);
  height: auto;
  max-height: 72px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer a:hover { color: #fff; }
.footer ul { margin: 0; padding-left: 0; list-style: none; }
.footer li { margin-bottom: 9px; }
.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.whatsapp-float, .back-top {
  position: fixed;
  z-index: 90;
  right: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.whatsapp-float {
  bottom: 84px;
  width: 56px;
  height: 56px;
  background: transparent;
  color: #fff;
  font-weight: 900;
}
.whatsapp-float img {
  width: 56px;
  height: 56px;
}
.back-top {
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--sage-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.back-top.visible { opacity: 1; pointer-events: auto; }

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner.show { display: flex; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  place-items: center;
  background: rgba(33,55,47,.46);
  padding: 20px;
}
.modal.show { display: grid; }
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  width: min(560px, 100%);
  padding: 26px;
  box-shadow: var(--shadow);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid rgba(201,169,141,.9); outline-offset: 3px; }

@media (max-width: 980px) {
  .hero-layout, .two, .footer-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-index { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .three, .four, .needs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card { justify-self: start; }
  .section-head, .cta-inner { align-items: start; flex-direction: column; }
  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .hero { padding-top: 118px; }
  .hero-actions, .cookie-banner, .cookie-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .three, .four, .needs, .form-grid { grid-template-columns: 1fr; }
  .hero-card img { height: 330px; }
  .hero-card dl { grid-template-columns: 1fr; }
  .team-card img, .blog-card img { height: 230px; }
  .brand { font-size: .98rem; }
  .brand-logo { width: min(220px, 58vw); height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Ana Ramos home design */
.home-design {
  --sage-dark: #4b3e35;
  --cream: #f4eee7;
  --white: #fbf8f4;
  --text: #4f4841;
  --muted: #766d65;
  --accent: #b99a82;
  --line: #e7dcd1;
  background: #fbf7f1;
}
.home-design h1,
.home-design h2,
.home-design h3 {
  font-family: Lora, Georgia, serif;
}
.ar-header {
  background: rgba(244, 238, 231, .86);
  border-bottom: 0;
  backdrop-filter: blur(10px);
}
.ar-header.scrolled {
  background: rgba(251, 248, 244, .96);
}
.home-design .nav-wrap {
  min-height: 78px;
}
.home-design .brand-logo {
  width: min(240px, 48vw);
  height: 48px;
}
.home-design .main-nav a {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 600;
}
.ar-hero {
  min-height: 610px;
  padding: 116px 0 64px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244,238,231,.98) 0%, rgba(244,238,231,.94) 46%, rgba(244,238,231,.28) 68%),
    url("../images/hero-floral.jpeg") right center / auto 100% no-repeat;
}
.ar-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 610px) 1fr;
}
.ar-hero-copy h1 {
  color: #39312c;
  font-size: clamp(2.8rem, 5.8vw, 5.1rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 18px;
}
.ar-hero-copy h1 span {
  color: var(--accent);
}
.ar-hero-copy .lead {
  max-width: 520px;
  color: #514941;
  font-size: 1.08rem;
  margin-bottom: 28px;
}
.ar-divider {
  width: min(430px, 100%);
  height: 20px;
  display: flex;
  align-items: center;
  margin: 8px 0 24px;
}
.ar-divider::before,
.ar-divider::after {
  content: "";
  height: 1px;
  background: #cbb9aa;
  flex: 1;
}
.ar-divider span {
  width: 28px;
  text-align: center;
}
.ar-divider span::before {
  content: "♥";
  color: #c0a591;
  font-size: .78rem;
}
.home-design .btn.primary {
  background: #b99a82;
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-inline: 28px;
}
.home-design .btn.primary:hover {
  background: #a88971;
}
.ar-values {
  background: rgba(251,248,244,.9);
  border-top: 1px solid #efe5dc;
  border-bottom: 1px solid #efe5dc;
  padding: 34px 0;
}
.ar-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.ar-value {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 4px 24px;
  border-right: 1px solid #e0d3c8;
}
.ar-value:last-child {
  border-right: 0;
}
.ar-line-icon,
.ar-card-icon {
  color: #b99a82;
  font-family: Lora, Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}
.ar-value h2,
.ar-help-card h3 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.ar-value p {
  margin: 0;
  font-size: .93rem;
  color: #635a52;
}
.ar-title {
  text-align: center;
  margin-bottom: 34px;
}
.ar-title h2 {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}
.ar-title span {
  color: #b99a82;
  font-size: 1.2rem;
}
.ar-title-left {
  text-align: left;
  margin-bottom: 20px;
}
.ar-help {
  background: linear-gradient(180deg, #fbf8f4 0%, #f8f2eb 100%);
}
.ar-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.ar-help-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: start;
  background: rgba(255,255,255,.55);
  border: 1px solid #eaded3;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(91, 68, 52, .05);
  padding: 26px;
}
.ar-help-card h3,
.ar-help-card ul {
  grid-column: 2;
}
.ar-help-card .ar-card-icon {
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3eae2;
  font-size: 2rem;
}
.ar-help-card ul {
  margin: 0;
  padding-left: 18px;
  color: #5d554e;
}
.ar-about-band {
  background: #f0e6de;
  padding: 58px 0;
}
.ar-about-grid {
  display: grid;
  grid-template-columns: .85fr 1.2fr 1.05fr .85fr;
  gap: 34px;
  align-items: center;
}
.ar-soft-image {
  margin: 0;
}
.ar-soft-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 48% 48% 8px 8px;
  box-shadow: 0 20px 44px rgba(91, 68, 52, .08);
}
.ar-chair img {
  object-position: center 20%;
}
.ar-about-copy p {
  color: #5d554e;
}
.ar-work-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 17px;
}
.ar-work-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #5d554e;
}
.ar-work-list li span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #d9c9bc;
  border-radius: 50%;
  color: #b99a82;
}
.ar-quote {
  background: linear-gradient(90deg, #fbf8f4 0%, #f7f0e9 50%, #fbf8f4 100%);
  border-top: 1px solid #eee4dc;
  border-bottom: 1px solid #eee4dc;
  padding: 56px 0;
  text-align: center;
}
.ar-quote blockquote {
  margin: 0;
  color: #4b3e35;
  font-family: Lora, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}
.ar-quote blockquote > span {
  color: #cdb6a4;
  font-size: 3rem;
  line-height: 1;
}
.ar-quote p {
  margin-bottom: 8px;
}
.ar-quote small {
  color: #b99a82;
}
.ar-contact-strip {
  background: #f6eee8;
  padding: 36px 0 42px;
  text-align: center;
}
.ar-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.ar-contact-row a:not(.btn) {
  color: #5d554e;
  font-weight: 600;
}
.ar-mini-footer {
  background: #b99a82;
  color: rgba(255,255,255,.92);
  text-align: center;
  padding: 18px 16px;
  display: grid;
  gap: 8px;
}
.ar-mini-footer p {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-style: italic;
}
.ar-mini-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .9rem;
}

@media (max-width: 980px) {
  .ar-hero {
    background:
      linear-gradient(180deg, rgba(244,238,231,.96), rgba(244,238,231,.82)),
      url("../images/hero-floral.jpeg") right bottom / auto 68% no-repeat;
    min-height: 720px;
    align-items: start;
  }
  .ar-hero-inner {
    grid-template-columns: 1fr;
  }
  .ar-values-grid,
  .ar-help-grid,
  .ar-about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ar-value:nth-child(2) {
    border-right: 0;
  }
  .ar-about-copy,
  .ar-work-list {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .ar-hero {
    min-height: 690px;
    padding-top: 108px;
    background:
      linear-gradient(180deg, rgba(244,238,231,.98) 0%, rgba(244,238,231,.9) 56%, rgba(244,238,231,.5) 100%),
      url("../images/hero-floral.jpeg") right bottom / auto 48% no-repeat;
  }
  .ar-hero-copy h1 {
    font-size: 2.75rem;
  }
  .ar-values-grid,
  .ar-help-grid,
  .ar-about-grid {
    grid-template-columns: 1fr;
  }
  .ar-value {
    border-right: 0;
    border-bottom: 1px solid #e0d3c8;
    padding: 20px 0;
  }
  .ar-value:last-child {
    border-bottom: 0;
  }
  .ar-help-card {
    grid-template-columns: 62px 1fr;
    padding: 22px;
  }
  .ar-soft-image img {
    max-height: 360px;
  }
  .ar-contact-row {
    align-items: stretch;
    flex-direction: column;
  }
}
