/*
Theme Name: Stadio Âme
Theme URI: https://stadio-ame.com
Author: Stadio Âme
Description: プール付きハウススタジオ Stadio Âme 公式サイト
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Text Domain: stadio-ame
*/

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --white:       #FFFFFF;
  --cream:       #FAF8F4;
  --beige:       #F0EAE0;
  --beige-dark:  #DDD4C2;
  --sand:        #C5B49A;
  --sage:        #8FA896;
  --sage-dark:   #5C7A65;
  --text:        #2D2926;
  --text-sub:    #857C74;
  --text-muted:  #B0A8A0;

  --serif:  'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  --sans:   'Jost', 'Noto Sans JP', sans-serif;

  --max: 1160px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --radius: 2px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.6s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.en {
  font-family: var(--serif);
  font-style: italic;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(5rem, 12vw, 9rem);
}

.section--beige { background: var(--beige); }
.section--cream { background: var(--cream); }
.section--sage  { background: var(--sage); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-head {
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.section-head .label { margin-bottom: 1rem; display: block; }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--text);
}
.section-head p {
  margin-top: 1.25rem;
  color: var(--text-sub);
  max-width: 48ch;
  font-size: 0.9375rem;
  line-height: 2;
}
.section-head.text-center p { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn::after {
  content: '→';
  transition: transform var(--dur) var(--ease);
}
.btn:hover::after { transform: translateX(6px); }

.btn-dark {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}
.btn-dark:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.site-header.scrolled .site-logo { color: var(--text); }

.site-nav { display: flex; align-items: center; gap: 2.5rem; }
.site-nav a {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.site-header.scrolled .site-nav a { color: var(--text-sub); }
.site-nav a:hover { color: var(--sage-dark); }
.site-header.scrolled .site-nav a:hover { color: var(--sage-dark); }

.nav-cta {
  font-size: 0.6875rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white) !important;
  transition: background var(--dur) var(--ease) !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.15) !important; }
.site-header.scrolled .nav-cta {
  border-color: var(--text) !important;
  color: var(--text) !important;
}
.site-header.scrolled .nav-cta:hover { background: var(--text) !important; color: var(--white) !important; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.site-header.scrolled .nav-toggle span { background: var(--text); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { color: var(--text-sub); font-size: 0.875rem; }
  .site-header.scrolled .site-nav a { color: var(--text-sub); }
  .nav-cta { border-color: var(--text) !important; color: var(--text) !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #8FA896 0%,
    #6B8B7A 30%,
    #4A6B5A 60%,
    #2D2926 100%
  );
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45,41,38,0.75) 0%,
    rgba(45,41,38,0.1) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.hero-content .label { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; display: block; }
.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero-content h1 em {
  display: block;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.hero-content p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255,255,255,0.8);
  max-width: 40ch;
  margin-bottom: 2.5rem;
  line-height: 2;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 0.3; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   INTRO / CONCEPT
   ============================================================ */
.intro {
  padding-block: clamp(5rem, 12vw, 9rem);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.intro-text .label { display: block; margin-bottom: 1.5rem; }
.intro-text h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.intro-text p {
  color: var(--text-sub);
  line-height: 2.2;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}
.intro-text .btn { margin-top: 2.5rem; }
.intro-img {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--beige);
  overflow: hidden;
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-img::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--beige-dark);
  pointer-events: none;
}

@media (max-width: 860px) {
  .intro-inner { grid-template-columns: 1fr; }
  .intro-img { order: -1; aspect-ratio: 4/3; }
  .intro-img::after { display: none; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--beige-dark);
  border-left: 1px solid var(--beige-dark);
}
.feature-item {
  border-bottom: 1px solid var(--beige-dark);
  border-right: 1px solid var(--beige-dark);
  padding: clamp(2rem, 4vw, 3rem);
  transition: background var(--dur) var(--ease);
}
.feature-item:hover { background: var(--cream); }
.feature-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.feature-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.9;
}

@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   USAGE SCENARIOS
   ============================================================ */
.usage-list { display: flex; flex-direction: column; gap: 1px; background: var(--beige-dark); }
.usage-item {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: var(--white);
  transition: background var(--dur) var(--ease);
}
.usage-item:hover { background: var(--cream); }
.usage-img {
  aspect-ratio: 4/3;
  background: var(--beige);
  overflow: hidden;
}
.usage-img img { width: 100%; height: 100%; object-fit: cover; }
.usage-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}
.usage-body .label { display: block; margin-bottom: 1rem; }
.usage-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}
.usage-body p { font-size: 0.9rem; color: var(--text-sub); line-height: 2; margin-bottom: 2rem; }

@media (max-width: 760px) {
  .usage-item { grid-template-columns: 1fr; }
}

/* ============================================================
   POOL HIGHLIGHT
   ============================================================ */
.pool-highlight {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pool-highlight-bg {
  position: absolute;
  inset: 0;
  background: var(--sage);
}
.pool-highlight-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.pool-highlight-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(92,122,101,0.65);
}
.pool-highlight-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 640px;
}
.pool-highlight-content .label { color: rgba(255,255,255,0.7); display: block; margin-bottom: 1.5rem; }
.pool-highlight-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.pool-highlight-content p { color: rgba(255,255,255,0.85); font-size: 0.9375rem; line-height: 2.2; margin-bottom: 2.5rem; }

/* ============================================================
   PRICING PREVIEW
   ============================================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  border: 1px solid var(--beige-dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pricing-card:hover {
  border-color: var(--sage);
  box-shadow: 0 8px 40px rgba(143,168,150,0.15);
}
.pricing-card.featured {
  border-color: var(--sage-dark);
  background: var(--cream);
}
.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -1px; right: 2rem;
  padding: 0.25rem 0.875rem;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.pricing-card .label { display: block; margin-bottom: 1rem; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--text);
  margin-block: 1.5rem;
}
.pricing-price small {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}
.pricing-features { margin-block: 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.625rem; }
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-sub);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

@media (max-width: 860px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-strip-item {
  background: var(--beige);
  overflow: hidden;
}
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-strip-item:hover img { transform: scale(1.04); }
.gallery-strip-item:first-child { grid-row: span 2; aspect-ratio: 4/5; }
.gallery-strip-item:not(:first-child) { aspect-ratio: 1; }

@media (max-width: 640px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip-item:first-child { grid-row: auto; aspect-ratio: 1; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
  background: var(--text);
  color: var(--white);
}
.cta-band .label { color: var(--sand); display: block; margin-bottom: 1.5rem; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.25rem; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 46ch; margin-inline: auto; margin-bottom: 3rem; font-size: 0.9375rem; line-height: 2; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FACILITIES LIST
   ============================================================ */
.facilities-table {
  width: 100%;
  border-collapse: collapse;
}
.facilities-table th,
.facilities-table td {
  padding: 1.125rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--beige-dark);
  font-size: 0.9rem;
}
.facilities-table th {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  width: 220px;
  color: var(--text);
  vertical-align: top;
}
.facilities-table td { color: var(--text-sub); line-height: 1.9; }
.facilities-table tr:first-child th,
.facilities-table tr:first-child td { border-top: 1px solid var(--beige-dark); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap {
  max-width: 680px;
  margin-inline: auto;
}
.form-row { margin-bottom: 1.5rem; }
.form-row label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--beige-dark);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease);
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-row textarea { resize: vertical; min-height: 160px; }
.form-row .form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }

.wpcf7 .wpcf7-form-control-wrap input,
.wpcf7 .wpcf7-form-control-wrap select,
.wpcf7 .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--beige-dark);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease);
}
.wpcf7 .wpcf7-form-control-wrap input:focus,
.wpcf7 .wpcf7-form-control-wrap select:focus,
.wpcf7 .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.5rem;
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.wpcf7 input[type="submit"]:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

/* ============================================================
   ACCESS
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.access-map iframe, .access-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.access-info dl { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.access-info dt {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.25rem;
}
.access-info dd { font-size: 0.9rem; color: var(--text-sub); line-height: 1.9; }

@media (max-width: 760px) {
  .access-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 140px;
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: var(--cream);
}
.page-hero .label { display: block; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero p { margin-top: 1.25rem; color: var(--text-sub); max-width: 44ch; font-size: 0.9375rem; line-height: 2; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .site-logo-footer {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.8125rem; line-height: 2; }
.footer-nav h4 {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--sand); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MISC
   ============================================================ */
.divider {
  width: 40px;
  height: 1px;
  background: var(--sage);
  margin-block: 1.5rem;
}
.divider.center { margin-inline: auto; }

.tag {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border: 1px solid var(--beige-dark);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-sub);
}
