@import url("https://fonts.googleapis.com/css2?family=Artifika&family=Cormorant+Garamond:wght@300;400;500&family=Forum&family=Inika:wght@400;700&family=Licorice&family=League+Spartan:wght@300;400&display=swap");

/* =========================
   TEEMA (värvid, varjud)
   ========================= */
:root {
  --bg: #FCF2EB;
  --text: #2F2F2F;
  --heading: #544346;
  --gold: #C0B571;

  --surface: #f4eee8;
  --surface-2: #cfc2b6;

  --border: rgba(84, 67, 70, 0.12);
  --border-strong: rgba(84, 67, 70, 0.22);

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 22px 55px rgba(0, 0, 0, 0.10);

  --btn-bg: rgba(217, 197, 184, 0.9);
  --btn-text: #FCF2EB;
}

* {
  box-sizing: border-box;
}

body {
  margin: auto;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.page {
  max-width: 1980px;
  margin: 0 auto;
  padding: 0;
}

/* =========================
   HEADER
   ========================= */
header {
  height: 80px;
  padding: 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 1;
}

.logo {
  font-family: "Artifika", serif;
  font-size: 28px;
  line-height: 34px;
  color: var(--gold);
  text-decoration: none;
}

.menu {
  margin-right: 40vw;
  display: flex;
  z-index: 1;
  gap: 24px;
}

.menu a {
  font-family: "Inika", serif;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: .04em;
  color: #000;
  text-decoration: none;
  font-weight: 400;
}

.menu a.active {
  font-weight: 900;
  transform: rotate(5deg);
}

/* =========================
   HERO
   ========================= */
.hero {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 625px;
  padding-left: 16%;
  z-index: 1;
}

.hero-pealkiri h1 {
  margin-top: 80px;
  transform: translateY(-64px);
  width: 650px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 58px;
  text-align: start;
  letter-spacing: .10em;
  color: var(--heading);
}

.hero-tekst {
  transform: translateY(-120px);
  padding-bottom: 40px;
  width: 450px;
  font-family: "Forum", serif;
  font-size: 20px;
  line-height: 150%;
  color: var(--text);
}

.hero-btn {
  display: inline-block;
  transform: translateY(-140px);
  margin-top: 44px;
  margin-left: 140px;
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--btn-bg);
  color: var(--btn-text);
  text-decoration: none;
  font-family: "Inika", serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
}

.hero-script {
  display: inline-block;
  transform: translateY(-135px);
  width: 400px;
  font-family: "Licorice", cursive;
  font-size: 32px;
  line-height: 40px;
  color: #d7d7d7;
}

.hero-img {
  position: relative;
  object-fit: cover;
  display: block;
  margin-top: -140px;
  height: auto;
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 650px;
  height: 350px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--bg) 100%);
  pointer-events: none;
}

/* =========================
   MINUST
   ========================= */
.minust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.minust-pealkiri {
  max-width: 650px;
  z-index: 1;
}

.minust-pealkiri h2 {
  margin: 0 0 60px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: .06em;
  color: var(--heading);
}

.minust-tekst {
  margin: 0;
  font-family: "Forum", serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  max-width: 600px;
}

/* pilt */
.minust-img {
  margin-left: 20%;
  height: auto;
  overflow: visible;
  z-index: 0;
}

.minust-img img {
  display: block;
  object-fit: contain;
  width: 100%;
  max-height: 625px;
}

/* =========================
   SERVICES
   ========================= */
.services {
  padding: 160px;
  background: var(--bg);
}

.services-title {
  margin: 0 0 36px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: .08em;
  color: var(--heading);
}

.services-grid {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  margin: 0 auto;
  gap: 30px;
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Kaart */
.service-card {
  position: relative;
  height: var(--h);
  border-radius: 26px;
  padding: 42px 46px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);

  background: rgba(245, 235, 224, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(252, 242, 235, 0) 0%,
      rgba(252, 242, 235, 1) 100%);
  opacity: .18;
  pointer-events: none;
}

.service-card h3 {
  margin: 0 0 18px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: .06em;
  color: var(--heading);
  position: relative;
  z-index: 1;
}

.service-card p {
  margin: 0;
  text-align: center;
  font-family: "Forum", serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(47, 47, 47, 0.85);
  position: relative;
  z-index: 1;
}

.price {
  margin-top: auto;
  text-align: center;
  font-family: "Inika", serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(84, 67, 70, 0.35);
  position: relative;
  z-index: 1;
}

/* Sinu soovitud kõrgused (ühtselt --h abil) */
.card-a {
  --h: 300px;
}

.card-b {
  --h: 375px;
}

.card-c {
  --h: 375px;
}

.card-d {
  --h: 300px;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}

.card-a::before {
  left: -68px;
  top: -60px;
  background-image: url(img/Kellu.png);
}

.card-b::before {
  right: -55px;
  top: -40px;
  transform: rotate(80deg);
  background-image: url(img/tapeet.png);
}

.card-c::before {
  left: -60px;
  bottom: -34px;
  background-image: url(img/Pahtlilabidas.png);
}

.card-d::before {
  right: -40px;
  bottom: -34px;
  background-image: url(img/värvirull.png);
}

/* All olev tekst */
.services-foot {
  max-width: 920px;
  margin: 46px auto 0;
  font-family: "Forum", serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(47, 47, 47, 0.8);
  text-align: left;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  background: var(--bg);
  padding: clamp(40px, 6vw, 80px) 24px;
}

.t-wrap {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.t-card {
  margin: 0;
  text-align: center;
}

.t-card blockquote {
  margin: 0;
  position: relative;

  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--gold);

  padding: 0 44px;
  display: inline-block;
  max-width: 430px;
}

.t-card blockquote::before,
.t-card blockquote::after {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 140px;
  line-height: 1;
  color: #000;
  opacity: 1;
}

.t-card blockquote::before {
  content: "“";
  left: -20px;
  top: -36px;
}

.t-card figcaption {
  margin-top: 18px;
  font-family: "Licorice", cursive;
  font-size: clamp(34px, 3.2vw, 52px);
  color: var(--heading);
}

/* alumine tsitaat keskele ja veidi madalamale */
.t-card--center {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: clamp(0px, 1.5vw, 10px);
}

/* =========================
   TEHTUD TÖÖD (PARANDATUD + ÜHTLUSTATUD)
   ========================= */
.tood {
  padding: 120px 0;
  background: var(--bg);
}

.tood h2 {
  text-align: center;
  margin: 0 0 36px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: .08em;
  color: var(--heading);
}

/* Grid – hoiab su “areas” paigutuse */
.tood-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 16px;

  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(3, 375px);
  grid-template-areas:
    "a a b"
    "c q q"
    "e e f";
}

/* Ühine kast */
.box {
  border-radius: 18px;
  overflow: hidden;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* pildid täidavad kasti */
.box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* paigutus */
.a {
  grid-area: a;
}

.b {
  grid-area: b;
}

.c {
  grid-area: c;
}

.e {
  grid-area: e;
}

.f {
  grid-area: f;
}

/* Quote kast – sama “kaart”, aga ilma hoverita */
.quote {
  grid-area: q;
  background: var(--surface-2);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  text-align: center;
}

/* Quote tekstid ühtlaseks sinu ülejäänud stiiliga */
.qtitle {
  margin: 0;
  font-family: "Inika", serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--heading);
}

.qtext {
  margin: 0;
  font-family: "Forum", serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(47, 47, 47, 0.85);
}

.qbtn {
  margin-top: 6px;
  align-self: center;
  text-decoration: none;
  background: rgba(0, 0, 0, .85);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: "Inika", serif;
  font-size: 13px;
  font-weight: 700;
}

/* Hover AINULT pildiboksidele (mitte .quote tekstikastile) */
.box:not(.quote) {
  position: relative;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

/* overlay (et hover oleks nähtav) */
.box:not(.quote)::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.box:not(.quote) img {
  transition: transform 260ms ease;
  transform: scale(1);
}

.box:not(.quote):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.box:not(.quote):hover::after {
  opacity: 1;
}

.box:not(.quote):hover img {
  transform: scale(1.04);
}

/* kui .box on link (a.box) – fookus ainult pildiboksile */
a.box:not(.quote):focus-visible {
  outline: 3px solid rgba(84, 67, 70, 0.35);
  outline-offset: 4px;
  border-radius: 18px;
}

/* =========================
   CONTACT (ÜHTLUSTATUD)
   ========================= */
.contact {
  background: var(--bg);
  padding: 120px 20px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: 0.08em;
  color: var(--heading);
}

.section-sub {
  margin: 0 auto;
  max-width: 520px;
  font-family: "Forum", serif;
  color: rgba(47, 47, 47, 0.8);
  line-height: 1.8;
  font-size: 16px;
}

.contact-card {
  background: rgba(245, 235, 224, 0.55);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 26px;
  padding: clamp(18px, 2.8vw, 34px);

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  font-family: "Inika", serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(84, 67, 70, 0.85);
}

input,
textarea {
  border: 1px solid rgba(84, 67, 70, 0.18);
  background: rgba(252, 242, 235, 0.70);
  border-radius: 16px;
  padding: 12px 14px;
  font-family: "Forum", serif;
  font-size: 16px;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(84, 67, 70, 0.35);
}

.btn {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 16px;
  padding: 12px 16px;
  cursor: pointer;

  background: var(--btn-bg);
  color: var(--btn-text);
  letter-spacing: 0.04em;
  font-family: "Inika", serif;
  font-weight: 700;
}

.btn:hover {
  filter: brightness(0.98);
}

/* Parempoolne info */
.contact-info {
  padding: 8px 0;
  font-family: "Forum", serif;
  color: var(--text);
}

.ci-title {
  margin: 0 0 12px;
  font-family: "Inika", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--heading);
}

.ci-line {
  margin: 0 0 10px;
  line-height: 1.6;
  color: rgba(47, 47, 47, 0.85);
}

.ci-note {
  margin: 14px 0 0;
  color: rgba(47, 47, 47, 0.75);
  line-height: 1.8;
  font-size: 14px;
}

/* honeypot peida */
.hp {
  position: absolute;
  left: -9999px;
}


/* =========================
   MOBIIL / RESPONSIVE
   Pane see CSS-i kõige lõppu
   ========================= */

/* 1200px ja alla – üldine tihendamine */
@media (max-width: 1200px) {
  header {
    padding: 28px 20px 0;
    gap: 18px;
  }

  .menu {
    margin-right: 0;
    /* oluline: ära lükka menüüd ära */
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .hero {
    padding-left: 6%;
    grid-template-columns: 1fr 520px;
  }

  .services {
    padding: 110px 24px;
  }
}

/* 980px ja alla – layout üheks veeruks */
@media (max-width: 980px) {

  /* HEADER */
  header {
    height: auto;
    padding: 22px 16px 0;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .menu a {
    font-size: 18px;
  }

  /* HERO -> 1 veerg, eemaldame “õhus” translateY’d */
  .hero {
    grid-template-columns: 1fr;
    padding: 0 16px;
    justify-items: center;
    text-align: center;
  }

  .hero-pealkiri h1 {
    width: auto;
    margin-top: 40px;
    transform: none;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
  }

  .hero-tekst {
    width: min(520px, 100%);
    transform: none;
    padding-bottom: 16px;
    font-size: 18px;
  }

  .hero-btn {
    transform: none;
    margin: 18px 0 0;
  }

  .hero-script {
    transform: none;
    width: auto;
    margin-top: 14px;
    text-align: center;
  }

  .hero-img {
    margin-top: 18px;
    /* ära tõmba üles */
    width: min(560px, 100%);
  }

  .hero-img::after {
    width: 100%;
    height: 220px;
  }

  /* MINUST -> 1 veerg */
  .minust {
    grid-template-columns: 1fr;
    padding: 60px 16px 0;
    gap: 22px;
    text-align: center;
  }

  .minust-pealkiri {
    max-width: 720px;
    margin: 0 auto;
  }

  .minust-pealkiri h2 {
    margin: 0 0 22px;
    font-size: 36px;
  }

  .minust-tekst {
    margin: 0 auto;
  }

  .minust-img {
    margin-left: 0;
    width: min(560px, 100%);
    margin: 0 auto;
  }

  /* SERVICES -> 1 veerg + väiksem padding */
  .services {
    padding: 90px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-col {
    gap: 20px;
  }

  /* TESTIMONIALS -> 1 veerg */
  .t-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .t-card--center {
    grid-column: auto;
    justify-self: auto;
    margin-top: 0;
  }

  /* TEHTUD TÖÖD -> 2 veergu, areas ümber */
  .tood {
    padding: 90px 0;
  }

  .tood-grid {
    width: min(980px, calc(100% - 32px));
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "a a"
      "b c"
      "q q"
      "e e"
      "f f";
  }

  /* pildiboksid: anna kõrgus aspect-ratio abil */
  .tood-grid .box:not(.quote) {
    aspect-ratio: 4 / 3;
  }

  /* quote jääb loetavaks */
  .tood-grid .quote {
    min-height: 260px;
  }

  /* CONTACT -> 1 veerg */
  .contact {
    padding: 90px 16px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

/* 600px ja alla – telefon */
@media (max-width: 600px) {
  .logo {
    font-size: 24px;
  }

  .menu a {
    font-size: 16px;
  }

  .hero-pealkiri h1 {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: .06em;
  }

  .hero-script {
    font-size: 28px;
    line-height: 34px;
  }

  .services-title,
  .tood h2 {
    font-size: 34px;
  }

  /* TEHTUD TÖÖD -> 1 veerg */
  .tood-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "q"
      "e"
      "f";
  }

  .tood-grid .box:not(.quote) {
    aspect-ratio: 16 / 10;
    /* veidi “laiem” telefoni jaoks */
  }

  .qtext {
    font-size: 15px;
  }
}

/* =========================
   MOBIIL / RESPONSIVE
   (pane CSS-i kõige lõppu)
   ========================= */

/* 1200px ja alla – tihendame üldmuljet */
@media (max-width: 1200px) {
  header {
    padding: 28px 20px 0;
    gap: 18px;
    height: auto;
  }

  .menu {
    margin-right: 0;
    /* ära lükka menüüd 40vw-ga ära */
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  .hero {
    padding-left: 6%;
    grid-template-columns: 1fr 520px;
    gap: 24px;
  }

  .hero-pealkiri h1 {
    width: auto;
  }

  .services {
    padding: 110px 24px;
  }
}

/* 980px ja alla – üks veerg, eemaldame “õhus” nihked */
@media (max-width: 980px) {

  /* HEADER */
  header {
    padding: 22px 16px 0;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .menu a {
    font-size: 18px;
  }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    padding: 0 16px;
    justify-items: center;
    text-align: center;
  }

  .hero-pealkiri h1 {
    margin-top: 40px;
    transform: none;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
  }

  .hero-tekst {
    width: min(560px, 100%);
    transform: none;
    padding-bottom: 16px;
    font-size: 18px;
  }

  .hero-btn {
    transform: none;
    margin: 18px 0 0;
  }

  .hero-script {
    transform: none;
    width: auto;
    margin-top: 12px;
    text-align: center;
  }

  .hero-img {
    margin-top: 18px;
    width: min(560px, 100%);
  }

  .hero-img::after {
    width: 100%;
    height: 220px;
  }

  /* MINUST */
  .minust {
    grid-template-columns: 1fr;
    padding: 60px 16px 0;
    gap: 22px;
    text-align: center;
  }

  .minust-pealkiri {
    max-width: 720px;
    margin: 0 auto;
  }

  .minust-pealkiri h2 {
    margin: 0 0 22px;
    font-size: 36px;
  }

  .minust-tekst {
    margin: 0 auto;
  }

  .minust-img {
    margin: 0 auto;
    width: min(560px, 100%);
  }

  /* SERVICES */
  .services {
    padding: 90px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-col {
    gap: 20px;
  }

  /* kaardid: mobiilis automaatne kõrgus (et ei jääks “tühja” ruumi) */
  .service-card {
    height: auto;
    padding: 34px 26px 28px;
  }

  /* dekoratsioonid veidi tagasihoidlikumaks */
  .service-card::before {
    width: 110px;
    height: 110px;
    opacity: 0.95;
  }

  .card-a::before {
    left: -40px;
    top: -44px;
  }

  .card-b::before {
    right: -36px;
    top: -36px;
  }

  .card-c::before {
    left: -36px;
    bottom: -28px;
  }

  .card-d::before {
    right: -28px;
    bottom: -28px;
  }

  /* TESTIMONIALS */
  .t-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .t-card--center {
    grid-column: auto;
    justify-self: auto;
    margin-top: 0;
  }

  /* TEHTUD TÖÖD – 2 veergu, “areas” ümber */
  .tood {
    padding: 90px 0;
  }

  .tood-grid {
    width: min(980px, calc(100% - 32px));
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "a a"
      "b c"
      "q q"
      "e e"
      "f f";
  }

  .tood-grid .box:not(.quote) {
    aspect-ratio: 4 / 3;
  }

  .tood-grid .quote {
    min-height: 240px;
  }

  /* CONTACT */
  .contact {
    padding: 90px 16px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

/* 600px ja alla – telefon (peenem tüpograafia ja üks veerg) */
@media (max-width: 600px) {
  header {
    padding: 18px 14px 0;
  }

  .logo {
    font-size: 24px;
  }

  .menu {
    gap: 10px 14px;
  }

  .menu a {
    font-size: 16px;
  }

  .hero-pealkiri h1 {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: .06em;
  }

  .hero-script {
    font-size: 28px;
    line-height: 34px;
  }

  .services-title,
  .tood h2 {
    font-size: 34px;
  }

  /* Testimonials: jutumärgid väiksemaks et ei “lõhuks” */
  .t-card blockquote {
    padding: 0 28px;
  }

  .t-card blockquote::before,
  .t-card blockquote::after {
    font-size: 110px;
  }

  .t-card blockquote::before {
    left: -10px;
    top: -28px;
  }

  /* TEHTUD TÖÖD – 1 veerg */
  .tood-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "q"
      "e"
      "f";
  }

  .tood-grid .box:not(.quote) {
    aspect-ratio: 16 / 10;
  }

  .qtext {
    font-size: 15px;
  }

  /* services dekoratsioonid vajadusel pehmemaks, et ei läheks liiga “välja” */
  .service-card::before {
    opacity: 0.85;
  }
}

/* 420px ja alla – väga väike ekraan (lisatihedus) */
@media (max-width: 420px) {
  .hero-pealkiri h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-tekst {
    font-size: 17px;
  }

  input,
  textarea {
    font-size: 15px;
  }
}