/* Galada */
@font-face {
  font-family: "Galada";
  src: url("/fonts/galada-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Merriweather – regular */
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/merriweather-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Merriweather – italic */
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/merriweather-latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Merriweather – bold */
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/merriweather-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Merriweather – bold italic */
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/merriweather-latin-700italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root{
  /* Base colors */
  --bg: #fdfdfb;
  --text: #555555;
  --muted: #9f9f9f;

  /* Accent colors */
  --accent-main: #ff00cc; /* h1, h2, hover */
  --accent-sub:  #5b2fbf; /* h3, links */

  /* Layout */
  --content-max: 900px;
  --pad: clamp(20px, 3vw, 30px);
  --mar: clamp(10px, 2vw, 20px);

  /* Fonts */
  --font-main: "Merriweather", serif;
  --font-display: "Galada", cursive;

  /* Responsive type */
  --h1:    clamp(40px, 5vw, 56px);
  --h2:    clamp(24px, 3vw, 32px);
  --h3:    clamp(18px, 2.2vw, 22px);
  --p:     clamp(16px, 2vw, 20px);
  --small: clamp(10px, 1vw, 12px);

}

*{
  box-sizing: border-box;
}

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

/* Layout */
.wrap{
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--pad);
}

/* Header & Footer */
header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  padding-top: 0;
  margin-bottom: 0;
  }

footer{
  margin-top: 0;
  text-align: right;
}

/* Links & Navigation */

a{
  text-decoration: none;
  color: var(--accent-sub);
  font-size: var(--p);
  font-weight: 700;
}

nav ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--pad);
  flex-wrap: wrap;
  justify-content: flex-end;
}

a:hover,
nav a[aria-current="page"]{
  color: var(--accent-main);
}

a.privacy {
  text-decoration: underline;
  font-size: var(--small);
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

/* Typography */
h1{
  font-family: var(--font-display);
  font-size: var(--h1);
  line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  margin-bottom: var(--mar);
  color: var(--accent-main);
}

h2{
  font-family: var(--font-main);
  font-size: var(--h2);
  line-height: 1.2;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--mar);
  margin-bottom: var(--mar);
  color: var(--accent-main);
}

h3{
  font-family: var(--font-main);
  font-size: var(--h3);
  font-weight: 700;
  line-height: 1.4;
  font-style: italic;
  margin-top: var(--mar);
  margin-bottom: 0;
  color: var(--accent-sub);
}

p{
  font-family: var(--font-main);
  font-size: var(--p);
  margin-top: 0;
  margin-bottom: var(--mar);
}

strong { font-weight: 700; }
em { font-style: italic; }

small{
  font-size: var(--small);
  color: var(--muted);
}

/* Images */
img.content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: var(--mar) auto;
}

/* Contact form */

form {
  max-width: var(--content-max);
  margin: 0 auto;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--mar);
}

label{
  font-family: var(--font-main);
  font-size: var(--h3);
  line-height: 1.4;
  margin-top: var(--mar);
  margin-bottom: 0;
}

input,
textarea {
  font-family: inherit;
  font-size: 1.4rem;
  padding: 0.8rem 0.8rem;
  border: 1px solid var(--muted);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-main);
}

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

button {
  margin-top: var(--mar);
  padding: 0.8rem 0.8rem;
  font-size: 1.4rem;
  font-family: inherit;
  background: var(--accent-sub);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: var(--accent-main);
}

/* --- Honeypot --- */
.hidden {
  display: none;
}


