/* REED & CO — light flex redesign */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Oswald:wght@500;600;700&display=swap");

:root {
  --ink: #14141c;
  --ink-soft: #3a3a48;
  --paper: #ffffff;
  --mist: #f2f4f6;
  --line: #d8dde3;
  --red: #d61f26;
  --cyan: #1ec8e0;
  --sage: #3d6b5a;
  --max: 1080px;
  --header-h: 72px;
  --font: "Raleway", sans-serif;
  --display: "Oswald", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ink);
}

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--red);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-list a.nav-external {
  color: var(--cyan);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink) center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 28, 0.25) 0%,
    rgba(20, 20, 28, 0.55) 45%,
    rgba(20, 20, 28, 0.88) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
  animation: rise 0.8s ease both;
}

.hero-brand {
  height: clamp(56px, 10vw, 88px);
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 14ch;
}

.hero p {
  margin: 0 0 1.5rem;
  max-width: 36ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.btn-primary:hover {
  background: #b8181e;
  border-color: #b8181e;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-solid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-solid:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--mist);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.hours-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 1.05rem;
}

.hours-block strong {
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.plant-banner {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--sage);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.gallery figure {
  margin: 0;
  flex: 1 1 calc(25% - 0.65rem);
  min-width: 140px;
  overflow: hidden;
  background: var(--mist);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
}

/* Page header */
.page-hero {
  padding: 3rem 0 2rem;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
}

.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 42rem;
}

.page-header {
  margin-bottom: 1.5rem;
}

.page-header h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Menu */
.menu-note {
  margin-bottom: 2rem;
  padding: 1rem 1.15rem;
  background: var(--mist);
  border-left: 4px solid var(--cyan);
  color: var(--ink-soft);
}

.menu-section {
  margin-bottom: 2.75rem;
}

.menu-section h2 {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item-body {
  flex: 1;
}

.menu-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.menu-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.menu-price {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.02em;
}

.menu-meta {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--sage);
}

/* Cleanse */
.cleanse-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.cleanse-card {
  flex: 1 1 280px;
  padding: 1.5rem;
  background: var(--mist);
  border-top: 4px solid var(--red);
}

.cleanse-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cleanse-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.cleanse-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.callout {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem;
  background: #fff4f4;
  border-left: 4px solid var(--red);
}

.benefit {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 2rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.benefit-media {
  flex: 0 0 200px;
}

.benefit-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.benefit-body {
  flex: 1 1 280px;
}

.benefit-body h2 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.benefit-body .tagline {
  margin: 0 0 0.85rem;
  color: var(--sage);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.schedule {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule li {
  display: flex;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}

.schedule time {
  flex: 0 0 5.5rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--display);
  letter-spacing: 0.03em;
}

/* Blog list (from r-template_blog) */
.blog-container {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 3rem;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 6px 20px rgba(20, 20, 28, 0.06);
}

.blog-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.blog-title a {
  color: var(--ink);
}

.blog-title a:hover {
  color: var(--red);
}

.blog-preview {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.blog-preview p {
  margin: 0;
}

/* Article / romlicontainer extras live in template; layout shell here */
.article-shell {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 3.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.75rem 0 1.5rem;
  margin-top: auto;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: brightness(1.05);
}

.footer-col h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col p,
.footer-col a {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.sitewide-wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 1.5rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .gallery figure {
    flex: 1 1 calc(50% - 0.65rem);
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .gallery figure {
    flex: 1 1 100%;
  }
}
