/* =============================================
   NICHOLSON CATERING — STYLES
   ============================================= */

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

:root {
  --green-deep: #1a3c34;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --gold: #c9a84c;
  --gold-light: #e8c87a;
  --cream: #faf8f3;
  --cream-dark: #f0ebe0;
  --brown-warm: #5c4033;
  --text: #1f2937;
  --text-muted: #6b7280;
  --white: #ffffff;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-nav {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover {
  background: var(--gold-light);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION HEADS ---- */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 12px 0 16px; color: var(--green-deep); }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.3);
}

/* ========================
   HEADER / NAV
   ======================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 60, 52, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-deep) 0%, #0f2a24 50%, #1e4a3c 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(82,183,136,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================
   TRUST BAR
   ======================== */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 28px 0;
}

.trust-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ========================
   SERVICES
   ======================== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  background: var(--white);
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card--featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}
.service-card--featured h3, .service-card--featured p {
  color: var(--white);
}
.service-card--featured p { opacity: 0.8; }
.service-card--featured .service-icon { background: rgba(255,255,255,0.1); }
.service-card--featured .service-icon svg { color: var(--gold-light); }

.service-icon {
  width: 64px; height: 64px;
  background: rgba(45,106,79,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { color: var(--green-mid); }

.service-card h3 {
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ========================
   FOOD HIGHLIGHT
   ======================== */
.food-highlight {
  background: var(--cream);
  padding: 96px 0;
}

.food-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.food-highlight-text .section-tag { margin-bottom: 16px; }
.food-highlight-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-deep);
  margin-bottom: 20px;
}
.food-highlight-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}
.feature-list li svg { color: var(--green-mid); flex-shrink: 0; }

.food-highlight-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 12px;
}

.visual-card {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.visual-card--1 {
  grid-column: 1 / -1;
  grid-row: 1;
  background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-deep) 100%);
}
.visual-card--2 {
  background: linear-gradient(145deg, var(--gold) 0%, #a07830 100%);
}
.visual-card--3 {
  background: linear-gradient(145deg, #4a7c59 0%, #2d5a3d 100%);
}

.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E");
}

.visual-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}
.visual-card--2 .visual-label { color: var(--green-deep); }

/* ========================
   ABOUT
   ======================== */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image-block {
  position: relative;
  width: 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-deep) 0%, #0f2a24 100%);
  overflow: visible;
}

.about-image-accent {
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: -16px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  z-index: -1;
}

.about-stat {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
  line-height: 1.3;
}

.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--green-deep);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.about-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
a.about-contact-item:hover { color: var(--green-mid); }
.about-contact-item svg { color: var(--green-mid); flex-shrink: 0; }

/* ========================
   WHY US
   ======================== */
.why-us {
  background: var(--green-deep);
}
.why-us .section-head h2 { color: var(--white); }
.why-us .section-head p { color: rgba(255,255,255,0.65); }
.why-us .section-tag { background: rgba(201,168,76,0.2); border-color: rgba(201,168,76,0.4); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s;
}
.why-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
}

.why-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
  line-height: 1;
}

.why-item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ========================
   CTA BAND
   ======================== */
.cta-band {
  background: var(--gold);
  padding: 60px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--green-deep);
  margin-bottom: 8px;
}
.cta-band-text p {
  color: rgba(26,60,52,0.75);
  font-size: 1.05rem;
}

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

.cta-band .btn-primary {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.cta-band .btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  box-shadow: 0 6px 20px rgba(26,60,52,0.3);
}
.cta-band .btn-outline-light {
  color: var(--green-deep);
  border-color: rgba(26,60,52,0.4);
}
.cta-band .btn-outline-light:hover {
  background: rgba(26,60,52,0.08);
  border-color: var(--green-deep);
}

/* ========================
   CONTACT
   ======================== */
.contact {
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--green-deep);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.contact-detail div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-detail strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.contact-detail a, .contact-detail span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--green-mid); }

/* FORM */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 500;
}
.form-success svg { flex-shrink: 0; }
.form-success[hidden] { display: none; }

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--green-deep);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { font-size: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-social {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact a, .footer-contact address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  font-style: normal;
  line-height: 1.6;
  transition: color 0.2s;
  margin-bottom: 16px;
}
.footer-contact a { align-items: center; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact a svg { flex-shrink: 0; color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  text-align: center;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .food-highlight-inner { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--green-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .btn-nav { margin-top: 8px; text-align: center; justify-content: center; }

  .nav-toggle { display: flex; }

  .hero-content h1 { font-size: 3rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .food-highlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .food-highlight-visual { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .form-row { grid-template-columns: 1fr; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .trust-grid { gap: 24px; }
  .trust-item { font-size: 0.88rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.5rem; }
  .contact-form { padding: 28px 20px; }
}
