/*
Theme Name: FoodVerrse
Theme URI: https://www.foodverrse.online
Author: FoodVerrse
Author URI: https://www.foodverrse.online
Description: Premium recipe WordPress theme with Home, About, Service, and Contact sections. English language, Unsplash imagery.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: foodverrse
Tags: one-page, custom-menu, featured-images, translation-ready, food-and-drink
*/

:root {
  --cream: #fdf6ee;
  --cream-dark: #f5ebe0;
  --white: #ffffff;
  --tomato: #c0392b;
  --tomato-light: #e74c3c;
  --sage: #5d7a62;
  --sage-light: #8aab8f;
  --saffron: #e8a838;
  --saffron-light: #f5c563;
  --chocolate: #2c1810;
  --chocolate-soft: #4a3228;
  --text: #2c1810;
  --text-soft: #6b5347;
  --muted: #9a8578;
  --line: rgba(44, 24, 16, 0.1);
  --shadow: 0 24px 60px rgba(44, 24, 16, 0.16);
  --shadow-soft: 0 10px 30px rgba(44, 24, 16, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --header-h: 76px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(232, 168, 56, 0.18);
  color: var(--chocolate-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag::before {
  content: "●";
  color: var(--saffron);
  font-size: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border: none;
  background: var(--tomato);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
}

.btn:hover {
  background: var(--tomato-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.btn-outline:hover {
  background: #fff;
  color: var(--chocolate);
  border-color: #fff;
}

.btn-sage {
  background: var(--sage);
  box-shadow: 0 6px 20px rgba(93, 122, 98, 0.35);
}

.btn-sage:hover {
  background: var(--sage-light);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* Header — split bar with accent stripe */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(253, 246, 238, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--tomato), var(--saffron));
}

.site-header.is-scrolled {
  background: rgba(44, 24, 16, 0.97);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding-left: 8px;
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--chocolate);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--tomato);
  font-style: italic;
}

.site-header.is-scrolled .logo {
  color: #fff;
}

.site-header.is-scrolled .logo-accent {
  color: var(--saffron);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--chocolate);
  border-radius: 2px;
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle::before {
  top: 13px;
}

.nav-toggle::after {
  bottom: 13px;
}

.primary-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  background: var(--cream-dark);
  color: var(--tomato);
}

.site-header.is-scrolled .primary-nav a {
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--saffron-light);
}

.header-cta {
  min-height: 42px;
  padding: 0 22px;
  font-size: 13px;
}

/* Hero — asymmetric split */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 100vh;
  padding-top: var(--header-h);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 80px 40px;
  position: relative;
}

.hero-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tomato), var(--saffron), transparent);
  border-radius: 3px;
}

.hero-text h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  margin: 20px 0 22px;
  color: var(--chocolate);
}

.hero-text h1 em {
  font-style: italic;
  color: var(--tomato);
}

.hero-text > p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-soft);
  margin: 0 0 32px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--tomato);
  line-height: 1;
}

.hero-stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.hero-float {
  position: absolute;
  bottom: 40px;
  left: -30px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.hero-float img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-float strong {
  display: block;
  font-size: 14px;
  color: var(--chocolate);
}

.hero-float span {
  font-size: 12px;
  color: var(--muted);
}

.hero-badge {
  position: absolute;
  top: 100px;
  right: 32px;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: var(--saffron);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.3;
  box-shadow: var(--shadow-soft);
  transform: rotate(12deg);
}

/* Recipe grid — home section */
.recipes {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.recipes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 50px);
  margin: 14px 0 12px;
  color: var(--chocolate);
}

.section-head p {
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 16px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.recipe-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.recipe-card.featured {
  grid-column: span 5;
  grid-row: span 2;
}

.recipe-card:nth-child(2) { grid-column: span 4; }
.recipe-card:nth-child(3) { grid-column: span 3; }
.recipe-card:nth-child(4) { grid-column: span 3; }
.recipe-card:nth-child(5) { grid-column: span 4; }
.recipe-card:nth-child(6) { grid-column: span 5; }

.recipe-media {
  position: relative;
  overflow: hidden;
}

.recipe-card.featured .recipe-media {
  height: 300px;
}

.recipe-card:not(.featured) .recipe-media {
  height: 160px;
}

.recipe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-media img {
  transform: scale(1.08);
}

.recipe-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  background: var(--white);
  color: var(--tomato);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recipe-time {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 12px;
  background: rgba(44, 24, 16, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.recipe-body {
  padding: 20px 22px 24px;
}

.recipe-body h3 {
  font-size: 21px;
  margin: 0 0 8px;
  color: var(--chocolate);
}

.recipe-body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.recipe-meta {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
}

/* About — overlapping panels */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 480px;
}

.about-images img:first-child {
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-images img:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-soft);
}

.about-images .about-badge {
  position: absolute;
  top: 20px;
  right: 10%;
  background: var(--tomato);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.about-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 16px 0 18px;
  color: var(--chocolate);
}

.about-content > p {
  color: var(--text-soft);
  margin: 0 0 28px;
  font-size: 15px;
}

.about-features {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(232, 168, 56, 0.15);
  border-radius: 12px;
  font-size: 22px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--chocolate);
}

.about-feature p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Services — staggered cards with images */
.services {
  padding: 100px 0;
  background: var(--chocolate);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.services .section-head h2 {
  color: #fff;
}

.services .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.services .tag {
  background: rgba(232, 168, 56, 0.2);
  color: var(--saffron-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px 26px 28px;
}

.service-card-body h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--saffron-light);
}

.service-card-body p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease;
}

.service-strip img:hover {
  transform: scale(1.04);
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 16px;
  color: var(--chocolate);
}

.contact-info > p {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 15px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease;
}

.contact-card:hover {
  border-color: var(--saffron);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--tomato);
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-card strong,
.contact-card a {
  font-size: 15px;
  font-weight: 600;
  color: var(--chocolate);
}

.contact-card a:hover {
  color: var(--tomato);
}

.contact-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--line);
}

.contact-form h3 {
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--chocolate);
}

.form-lead {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(93, 122, 98, 0.12);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  min-height: 20px;
  font-size: 13px;
  color: var(--tomato);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--chocolate);
  color: rgba(255, 255, 255, 0.72);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  font-size: 30px;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--saffron);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  margin: 0 0 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--saffron-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-item span:first-child {
  color: var(--saffron);
  flex-shrink: 0;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bar a {
  color: var(--saffron-light);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--chocolate);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  z-index: 60;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--saffron);
}

.toast.is-visible {
  transform: translateY(0);
}

/* Inner pages */
.section {
  padding: calc(var(--header-h) + 48px) 0 80px;
}

.entry-content {
  color: var(--text-soft);
  font-size: 16px;
}

.entry-content h2,
.entry-content h3 {
  color: var(--chocolate);
  margin-top: 1.5em;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 360px;
  }

  .hero-visual img {
    min-height: 360px;
  }

  .hero-text {
    padding: 40px 24px 60px;
  }

  .hero-float {
    left: 20px;
    bottom: 20px;
  }

  .recipe-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recipe-card,
  .recipe-card.featured,
  .recipe-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .recipe-card.featured .recipe-media,
  .recipe-card:not(.featured) .recipe-media {
    height: 180px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: 360px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px;
    display: none;
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .site-header.is-scrolled .primary-nav {
    background: var(--chocolate-soft);
  }

  .header-cta {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .about-images img:first-child {
    width: 100%;
    height: 280px;
  }

  .about-images img:last-child {
    position: relative;
    width: 100%;
    height: 200px;
    margin-top: 16px;
    border: none;
  }

  .about-images {
    min-height: auto;
  }

  .about-badge {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin: 16px 0;
    display: inline-block;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
}
