/* =========================================================================
   COGNOVA HEAT TREATMENT — STYLESHEET
   Design system grounded in temper colors: the real sequence of oxide
   colors steel passes through as it's heated (straw -> bronze -> blue).
   Used as the site's recurring signature (see --temper-bar).
   ========================================================================= */

:root {
  /* Steel neutrals */
  --ink-950: #14171a;
  --ink-800: #1e2226;
  --iron-700: #383d44;
  --iron-500: #666c74;
  --steel-200: #cfd3d8;
  --ivory-50: #f6f3eb;
  --ivory-100: #efeade;
  --white: #ffffff;

  /* Temper colors (heat sequence, ~230C -> 550C) */
  --temper-straw: #e4b04a;
  --temper-bronze: #c8621e;
  --temper-blue: #3e6e86;

  /* Signature gradient */
  --temper-bar: linear-gradient(90deg, var(--temper-straw) 0%, var(--temper-bronze) 52%, var(--temper-blue) 100%);

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  /* Layout */
  --container: 1200px;
  --radius: 10px;
  --nav-height: 76px;
  --shadow-card: 0 10px 30px rgba(20, 23, 26, 0.10);
  --shadow-lift: 0 16px 40px rgba(20, 23, 26, 0.16);
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                           */
/* ---------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory-50);
  color: var(--ink-950);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--ink-950);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--temper-bronze);
  margin-bottom: 10px;
}

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

:focus-visible {
  outline: 3px solid var(--temper-blue);
  outline-offset: 2px;
}

/* Signature divider: the temper bar */
.temper-bar {
  height: 4px;
  width: 92px;
  background: var(--temper-bar);
  border-radius: 2px;
  border: none;
}
.temper-bar.center { margin: 0 auto; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                */
/* ---------------------------------------------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 30px;
  background-color: var(--temper-bronze);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
  border-radius: 4px;
  border: 1px solid var(--temper-bronze);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.cta-button.ghost {
  background: transparent;
  color: var(--ink-950);
  border-color: var(--ink-950);
}
.cta-button.ghost:hover {
  background: var(--ink-950);
  color: var(--white);
}

/* ---------------------------------------------------------------------- */
/* Navbar                                                                 */
/* ---------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink-950);
  padding: 0 30px;
  height: var(--nav-height);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.logo img {
  height: 52px;
  border-radius: 6px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--ivory-50);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--temper-bar);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--temper-straw);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 24px;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--ivory-50);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink-950);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a::after { display: none; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                   */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 26, 0.55) 0%, rgba(20, 23, 26, 0.55) 40%, rgba(20, 23, 26, 0.92) 100%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: var(--temper-straw);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 14px;
  max-width: 620px;
  color: var(--ivory-100);
  font-weight: 300;
}

.hero .temper-bar {
  margin-top: 26px;
}

/* ---------------------------------------------------------------------- */
/* About section                                                          */
/* ---------------------------------------------------------------------- */
.about-section {
  padding: 90px 8%;
  background: var(--ivory-50);
}

.about-container {
  max-width: var(--container);
  margin: auto;
}

.about-content {
  text-align: center;
}

.about-title h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
}

.about-content > p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--iron-500);
  font-size: 1.08rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
}

.feature {
  width: 260px;
  padding: 30px 24px;
  background: var(--white);
  border-top: 3px solid transparent;
  border-image: var(--temper-bar) 1;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.icon-circle {
  width: 58px;
  height: 58px;
  background-color: var(--ivory-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  overflow: hidden;
}

.icon-circle img {
  width: 55%;
  height: auto;
  object-fit: contain;
}

.feature h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.94rem;
  color: var(--iron-500);
}

/* ---------------------------------------------------------------------- */
/* Vision / Mission / Values                                              */
/* ---------------------------------------------------------------------- */
.values-section {
  background: var(--ink-950);
  padding: 90px 8%;
  text-align: center;
}

.values-section .eyebrow { color: var(--temper-straw); }
.values-section .about-title h2 { color: var(--white); }
.values-section .section-lede {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--steel-200);
}

.values-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 56px auto 0;
  align-items: stretch;
}

.value-item {
  flex: 1 1 260px;
  max-width: 340px;
  text-align: center;
  color: var(--white);
  background: var(--iron-700);
  border-radius: 8px;
  padding: 40px 26px;
}

.value-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.value-icon img {
  width: 44px;
}

.value-item h3 {
  margin-top: 20px;
  color: var(--temper-straw);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.value-item p {
  font-size: 0.98rem;
  color: var(--steel-200);
  margin-top: 12px;
  font-style: italic;
}

.value-item ul {
  margin-top: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.value-item ul li {
  font-size: 0.95rem;
  color: var(--steel-200);
  padding-left: 18px;
  position: relative;
}

.value-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--temper-straw);
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                 */
/* ---------------------------------------------------------------------- */
.footer {
  background: var(--ink-800);
  color: var(--steel-200);
  padding: 56px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 1.3fr;
  gap: 30px;
  max-width: var(--container);
  margin: auto;
  padding: 0 8% 40px;
  text-align: left;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  border-radius: 6px;
}

.footer-logo p {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-container h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--temper-straw);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-social a {
  color: var(--steel-200);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover, .footer-social a:hover {
  color: var(--temper-straw);
}

.footer-contact p, .footer-address p {
  margin: 0 0 8px 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-contact a {
  text-decoration: none;
  color: var(--steel-200);
}
.footer-contact a:hover { color: var(--temper-straw); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 10px;
  padding: 18px 8%;
  text-align: center;
  font-size: 0.85rem;
}

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

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo { align-items: center; }
  .value-item ul { align-items: flex-start; }
}

/* ---------------------------------------------------------------------- */
/* Services page — intro cards                                            */
/* ---------------------------------------------------------------------- */
.services-section {
  background: linear-gradient(180deg, rgba(20,23,26,0.55), rgba(20,23,26,0.86)), url('../photos/services1bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 110px 8%;
  color: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-container {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 100%;
  max-width: var(--container);
}

.service-box {
  background: rgba(20, 23, 26, 0.82);
  border-top: 3px solid transparent;
  border-image: var(--temper-bar) 1;
  padding: 38px;
  border-radius: 8px;
  width: 100%;
  max-width: 62%;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:first-child { align-self: flex-start; }
.service-box:last-child { align-self: flex-end; }

.service-box h2 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--white);
}

.service-box p, .service-box li {
  font-size: 1.05rem;
  color: var(--ivory-100);
  line-height: 1.65;
}

.service-box ul { display: flex; flex-direction: column; gap: 12px; }

.service-box .highlight {
  font-family: var(--font-display);
  color: var(--temper-straw);
  font-size: 1.3rem;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

@media (max-width: 768px) {
  .service-box { max-width: 100%; align-self: center !important; text-align: center; }
  .service-box ul { text-align: left; }
}

/* Services grid */
.services {
  text-align: center;
  padding: 100px 8%;
  background: var(--ivory-50);
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--iron-500);
  margin: 14px auto 50px;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: var(--container);
  margin: auto;
  text-align: left;
}

.service-square {
  background: var(--white);
  border-top: 3px solid var(--temper-bronze);
  padding: 26px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-square:nth-child(3n+2) { border-top-color: var(--temper-straw); }
.service-square:nth-child(3n+3) { border-top-color: var(--temper-blue); }

.service-square:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.service-square h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-square p {
  font-size: 0.96rem;
  color: var(--iron-500);
}

/* Core values banner */
.core-values-banner {
  padding: 70px 8% 100px;
  background: var(--ivory-50);
  text-align: center;
}

.core-values-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

/* ---------------------------------------------------------------------- */
/* Infrastructure page                                                    */
/* ---------------------------------------------------------------------- */
.page-intro {
  padding: 70px 8% 20px;
  text-align: center;
  background: var(--ivory-50);
}

.page-intro h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
}

.page-intro p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--iron-500);
}

.infra-section {
  background: var(--ivory-50);
  padding: 60px 8% 90px;
}

.infra-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--container);
  margin: auto;
}

.infra-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: var(--ink-950);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infra-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.reverse { flex-direction: row-reverse; }

.infra-image {
  width: 46%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  position: relative;
}

.infra-content {
  width: 54%;
  padding: 44px;
  color: var(--white);
  text-align: left;
}

.infra-heading {
  font-size: 1.7rem;
  color: var(--temper-straw);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.infra-content ul { display: flex; flex-direction: column; }

.infra-content li {
  font-size: 1.02rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.infra-content li strong {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel-200);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .infra-box, .reverse { flex-direction: column; }
  .infra-image, .infra-content { width: 100%; }
  .infra-image { min-height: 230px; }
  .infra-content { padding: 30px; }
}

@media (max-width: 768px) {
  .infra-heading { font-size: 1.4rem; }
  .infra-content li { font-size: 0.95rem; flex-direction: column; gap: 2px; }
}

/* Sealed Quench / Continuous Isothermal furnace detail sections */
.sealed-quench-furnace,
.continuous-isothermal-furnace {
  background: var(--white);
  padding: 90px 8%;
}

.continuous-isothermal-furnace { background: var(--ivory-50); }

.sqf-container, .cif-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: var(--container);
  margin: auto;
}

.sqf-text, .cif-text { flex: 1; max-width: 50%; }

.sqf-text h2, .cif-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink-950);
  text-transform: uppercase;
}

.sqf-line, .cif-line {
  width: 90px;
  height: 4px;
  background: var(--temper-bar);
  border: none;
  border-radius: 2px;
  margin: 16px 0 22px;
}

.sqf-text ul, .cif-text ul { display: flex; flex-direction: column; gap: 12px; }

.sqf-text ul li, .cif-text ul li {
  font-size: 1.02rem;
  color: var(--iron-500);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.sqf-text ul li::before, .cif-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--temper-bronze);
}

.sqf-text ul li strong, .cif-text ul li strong {
  font-family: var(--font-mono);
  color: var(--ink-950);
}

.sqf-image, .cif-image {
  flex: 1;
  position: relative;
  max-width: 50%;
}

.sqf-image img, .cif-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: grayscale(45%) contrast(1.05);
}

.sqf-overlay, .cif-overlay {
  position: absolute;
  top: 8%;
  left: 8%;
  width: 84%;
  height: 84%;
  border: 3px solid var(--temper-straw);
  border-radius: 4px;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .sqf-container, .cif-container { flex-direction: column; text-align: center; }
  .sqf-text, .cif-text, .sqf-image, .cif-image { max-width: 100%; }
  .sqf-text ul li, .cif-text ul li { text-align: left; }
  .sqf-overlay, .cif-overlay { display: none; }
}

/* Measurement section */
.measurement-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: var(--white);
  padding: 90px 8%;
  max-width: var(--container);
  margin: 0 auto 90px;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.measurement-section .content { width: 58%; }

.measurement-section .content h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--ink-950);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.title-underline {
  width: 90px;
  height: 4px;
  background: var(--temper-bar);
  border: none;
  border-radius: 2px;
  margin-bottom: 22px;
}

.measurement-section .content ul { display: flex; flex-direction: column; gap: 12px; }

.measurement-section .content ul li {
  font-size: 1.02rem;
  color: var(--iron-500);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}

.measurement-section .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--temper-blue);
}

.measurement-section .images {
  width: 38%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.measurement-section .images img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--steel-200);
}

@media (max-width: 768px) {
  .measurement-section { flex-direction: column; text-align: center; padding: 50px 6%; }
  .measurement-section .content, .measurement-section .images { width: 100%; }
  .measurement-section .content ul li { text-align: left; }
  .measurement-section .images img { max-width: 80%; margin: 0 auto; }
}

/* ---------------------------------------------------------------------- */
/* Contact page                                                           */
/* ---------------------------------------------------------------------- */
.contact-hero {
  background: var(--ink-950);
  color: var(--white);
  text-align: center;
  padding: 80px 8% 60px;
}

.contact-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); text-transform: uppercase; color: var(--white); }
.contact-hero p { color: var(--steel-200); max-width: 560px; margin: 16px auto 0; }

.container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
  padding: 60px 8%;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: auto;
}

.contact-item {
  text-align: center;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  padding: 36px 26px;
  background: var(--white);
  border-top: 3px solid var(--temper-bronze);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  color: var(--ink-950);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-item:nth-child(2) { border-top-color: var(--temper-straw); }
.contact-item:nth-child(3) { border-top-color: var(--temper-blue); }

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.contact-item img {
  width: 42px;
  margin: 0 auto 16px;
}

.contact-item h3 {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.contact-item p, .contact-item a {
  font-size: 0.98rem;
  color: var(--iron-500);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover { color: var(--temper-bronze); }

.map {
  width: 100%;
  max-width: var(--container);
  height: 400px;
  margin: 10px auto 90px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 768px) {
  .container { flex-direction: column; align-items: center; }
  .contact-item { width: 100%; }
  .map { height: 300px; }
}
